:root {
    --cream: #efe0c7;
    --dark: #2f1b10;
    --dark-alt: #1a0f09;
    --brown: #4c3a20;
    --amber: #df9b33;
    --orange: #c25b13;
    --green: #25462c;
    --green-light: #3a6b44;
    --white-soft: #fff8ef;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 80px; /* Offset for sticky header */
    overflow-x: hidden; /* Prevent horizontal scroll globally */
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    background-image: 
        linear-gradient(rgba(0,0,0,0.03), rgba(0,0,0,0.03)),
        url('https://www.transparenttextures.com/patterns/natural-paper.png');
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-attachment: fixed;
}



.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    scroll-snap-align: center;
}

header, section, footer {
    scroll-snap-align: center;
}

/* Utilities */
.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-16 {
    gap: 4rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.text-center {
    text-align: center;
}

/* Paper Texture System */
.bg-paper {
    background-color: var(--cream);
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
}

.bg-paper-fibers {
    background-color: #f7ecd8;
    background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
}

.card-rustic {
    background: #fff8ef;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    border: 1px solid rgba(76, 58, 32, 0.1);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.05);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card-rustic:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.1);
    border-color: rgba(194, 91, 19, 0.3);
}

.card-rustic::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(194, 91, 19, 0.1), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.glass-card {
    background: rgba(47, 27, 16, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Typography Utilities */
.text-uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.1em; }
.tracking-widest { letter-spacing: 0.2em; }
.font-black { font-weight: 900; }
.font-serif { font-family: var(--font-heading); font-weight: 700; }

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-16 {
    margin-top: 4rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.border-y {
    border-top: 1px solid rgba(47, 27, 16, 0.15);
    border-bottom: 1px solid rgba(47, 27, 16, 0.15);
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-green {
    color: var(--green);
}

.text-orange {
    color: var(--orange);
}

.text-white {
    color: white;
}

.text-amber {
    color: var(--amber);
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .md\:text-5xl {
        font-size: 3rem;
    }

    .md\:text-6xl {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    position: sticky;
    top: 0;
    background-color: rgba(239, 224, 199, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: none;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px; /* Wider to accommodate 3 balanced groups */
}

.nav-links {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.lang-selector {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(47, 27, 16, 0.2);
}

.nav-btn {
    flex: 0 0 auto;
}

.nav-links li a {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--dark);
}

.nav-links li a:hover {
    color: var(--orange);
}

.nav-logo img {
    height: 3rem;
    transition: var(--transition);
}

.rounded-logo {
    border-radius: 50%;
    border: 2px solid var(--brown);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--cream);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 3px solid var(--brown);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-btn {
        display: none;
    }
}

/* Ribbon Component */
.ribbon-banner {
    background: #a67c37;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),
        url('https://www.transparenttextures.com/patterns/natural-paper.png');
    color: #fffaf0;
    padding: 1.25rem 5rem;
    display: inline-block;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    text-transform: uppercase;
    position: relative;
    clip-path: polygon(0% 15%, 5% 0%, 95% 0%, 100% 15%,
            98% 50%, 100% 85%, 95% 100%, 5% 100%, 0% 85%, 2% 50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
    margin: 2rem 0;
    transform: rotate(0.5deg);
}

@media (max-width: 768px) {
    .ribbon-banner {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
        max-width: 90vw;
        white-space: normal;
        word-wrap: break-word;
    }
}

/* Hero Section */
.hero {
    background-image: 
        linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
        url('assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    min-height: 700px; /* Minimum height to avoid squishing content */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 10rem;
    border-bottom: none;
    position: relative;
    overflow: hidden;
    scroll-snap-align: center; /* Sync hero snapping */
}

.hero-glass-card {
    background: rgba(47, 27, 16, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 4rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.logo-wrapper {
    width: 400px;
    margin: 0 auto;
    position: relative;
    left: 0; /* Centered for new logo */
    display: block;
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.logo-wrapper:hover {
    transform: scale(1.05);
}

.hero-main-logo {
    width: 100%;
    height: auto;
    display: block;
}

.hero-brand-title {
    font-size: clamp(3rem, 10vw, 5.5rem);
    line-height: 0.9;
    color: var(--dark);
    text-shadow: 2px 2px 0 var(--cream), 4px 4px 0 rgba(0, 0, 0, 0.1);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.hero-text-content {
    margin-top: 1rem; /* Balanced spacing instead of overlap */
    position: relative;
    z-index: 2;
}

.hero-brand-subtitle {
    margin-top: 0;
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
}

/* Hero Ribbon (Rustic Style) */
.hero-ribbon-wrapper {
    margin-top: -8rem; /* Significant upward shift (~5cm) */
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 5;
}

.hero-ribbon {
    background: #a67c37;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),
        url('https://www.transparenttextures.com/patterns/natural-paper.png');
    color: #fffaf0;
    padding: 0.6rem 2.5rem;
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    /* More irregular torn ribbon shape */
    clip-path: polygon(0% 15%, 5% 0%, 95% 0%, 100% 15%,
            98% 50%, 100% 85%, 95% 100%, 5% 100%, 0% 85%, 2% 50%);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 0 15px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5), -1px -1px 0 rgba(255, 255, 255, 0.1);
    font-family: var(--font-heading);
    transform: rotate(-0.5deg);
    /* Subtle tilt for vintage feel */
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    max-width: 100%;
}

@media (max-width: 768px) {
    .hero-ribbon {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        max-width: 95vw;
        white-space: normal;
        word-wrap: break-word;
        letter-spacing: 0.05em;
    }
}

.hero-text-content p:last-child {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-top: 1rem;
}

/* Pricing Grid (Optimized Geometry) */
/* Pricing Grid (Horizontal Wide Layout) */
/* Pricing Grid (Optimized Stacked for Snap) */
.pricing-poster-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Compacted for snap fit */
    max-width: 1000px;
    margin: 2rem auto 0;
    position: relative;
    padding: 0 1rem;
}

.price-box {
    background: #f7e9d3;
    background-image: 
        radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.03) 100%),
        url('https://www.transparenttextures.com/patterns/natural-paper.png');
    padding: 1.5rem 3rem;
    border: 2px solid var(--brown);
    position: relative;
    transition: var(--transition);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    text-align: left;
}

/* Featured Card (Hierarchical Emphasis) */
.price-box.featured {
    transform: scale(1.02);
    z-index: 2;
    border-color: var(--orange);
    border-width: 3px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Featured Card Button Alignment */
.price-box.featured .package-header .btn {
    /* Normalized */
}

.price-box:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--orange);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.price-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.package-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: baseline; /* Align by text baseline for perfect horizontal feel */
    gap: 1.5rem;
    margin-top: 15px; /* Baja 4mm aprox */
    margin-bottom: 0.5rem;
}

.package-header .btn {
    border-radius: 50px; /* Capsule shape */
    padding: 0.6rem 1.8rem;
    white-space: nowrap;
    margin-right: -11px; /* Shifting ~3mm right */
}

.price-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 0; /* Removed for header flow */
    position: relative;
    padding-bottom: 0.25rem;
}

.price-box h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--orange);
}

.product-image-wrapper {
    flex: 0 0 320px; /* Increased further from 280px to 320px */
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.price-box img {
    max-height: 100%;
    width: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
    transition: var(--transition);
    mix-blend-mode: multiply;
}

.price-box:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.4));
}

.feature-list {
    margin: 1rem 0;
    text-align: left;
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: column; /* Vertical flow first */
    grid-template-rows: repeat(3, auto); /* Max 3 rows for alignment */
    gap: 0.5rem 2.5rem;
    width: 100%;
}

.feature-list li {
    font-size: 0.95rem; /* Slightly smaller to fit 2 cols */
    color: var(--brown);
    margin-bottom: 0.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    line-height: 1.3;
}

.feature-list li::before {
    content: "✓";
    color: var(--orange);
    font-weight: 900;
}

.starburst-price {
    background: #b31919;
    background-image: 
        radial-gradient(circle at 35% 35%, rgba(255,255,255,0.4) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0,0,0,0.3) 0%, transparent 60%);
    color: var(--white-soft);
    width: 125px;
    height: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    font-weight: 900;
    margin: 0;
    border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%;
    transform: rotate(5deg);
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.6),
        inset -8px -8px 20px rgba(0,0,0,0.5),
        inset 8px 8px 20px rgba(255,255,255,0.25);
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 5;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Pressed Depth Ring */
.starburst-price::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78%;
    height: 78%;
    border-radius: 50%;
    border: 4px solid rgba(0,0,0,0.25);
    box-shadow: 
        inset 6px 6px 15px rgba(0,0,0,0.6),
        3px 3px 10px rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.08);
    z-index: -1;
}

.starburst-price .text-sm {
    font-size: 0.85rem; 
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 950;
    opacity: 1;
    margin-bottom: -2px;
    color: var(--white-soft);
}

.price-box .btn {
    width: auto;
    padding: 0.7rem 2rem;
    font-size: 0.8rem;
    margin-top: 1rem;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 127, 43, 0.1); /* Very light orange background */
    color: var(--orange);
    border: 1px solid var(--orange);
    padding: 0.35rem 1.5rem; /* Longer (1.5rem) and narrow (0.35rem) */
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
    white-space: nowrap;
}

@media (max-width: 850px) {
    .price-box {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 3rem 2rem;
    }
    
    .price-content {
        align-items: center;
    }
    
    .feature-list {
        text-align: center;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-list li {
        justify-content: center;
    }
    
    .package-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .price-box h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .price-box.featured {
        transform: scale(1);
    }
    
    .starburst-price {
        top: -20px;
        right: 10px;
        width: 105px;
        height: 105px;
        font-size: 2.1rem;
    }
}
/* Buttons */
.badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 3px solid var(--brown);
    background: #f5ead5;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border: 3px solid var(--brown);
    background-color: var(--orange);
    background-image: 
        linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.1)),
        url('https://www.transparenttextures.com/patterns/natural-paper.png');
    color: var(--white-soft);
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

.btn-green {
    background: var(--green);
    border-color: var(--white-soft);
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    border-width: 3px;
}

.btn-xl {
    padding: 1.25rem 3.5rem;
    font-size: 1.1rem;
    border-width: 5px;
}

/* Features & Content */
section {
    position: relative;
    scroll-margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: center;
    padding: 2.5rem 0; /* Compacted padding for better screen fit */
}

.section-ribbon {
    margin-top: -1.4rem; /* Global 2cm upward shift for section titles */
    margin-bottom: 4rem;
}

/* Features Section Redesign */
.features {
    background: transparent;
    min-height: 100vh;
}

.feature-item {
    background: rgba(255, 248, 239, 0.85);
    background-image: 
        linear-gradient(rgba(0,0,0,0.02), rgba(0,0,0,0.02)),
        url('https://www.transparenttextures.com/patterns/paper-fibers.png');
    padding: 2rem;
    border: 1px solid rgba(76, 58, 32, 0.15);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.15);
    border-color: var(--orange);
    background-color: #fff8ef;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.85;
}

@media (max-width: 640px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Logistics Section Redesign */
.logistics {
    background: transparent;
}

.logistics-card {
    background: rgba(47, 27, 16, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0; /* Poster style: sharp corners */
    padding: 3.5rem;
    height: 100%;
    color: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.logistics-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.logistics-card.light {
    background: #f7e9d3;
    background-image: 
        radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.05) 100%),
        url('https://www.transparenttextures.com/patterns/natural-paper.png');
    border: 2px solid var(--brown);
    border-radius: 0;
    color: var(--dark);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.logistics-card.light:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--orange);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.2);
    background-color: #f7e9d3;
}

.logistics-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.35rem;
    display: inline-block;
}

.logistics-card h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--orange);
}

.logistics-card p {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 1.1rem;
}

.logistics-card.light h3 {
    color: var(--dark);
}

/* FAQ Section Redesign */
.faq {
    background: transparent;
}

/* FAQ Specific Spacing (Monumental Air - Adjusted Phase 5) */
.faq .section-ribbon {
    margin-top: -1.4rem; /* Consistent with global shift */
    margin-bottom: 3.7rem; 
}

@media (max-width: 768px) {
    .faq .section-ribbon {
        margin-bottom: 5rem; /* Reduced for mobile usability */
    }
}

.faq-item {
    background: #f7e9d3;
    background-image: 
        radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.05) 100%),
        url('https://www.transparenttextures.com/patterns/natural-paper.png');
    border: 2px solid var(--brown);
    border-radius: 0;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: var(--orange);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.faq-item summary {
    padding: 1.5rem 2rem;
    cursor: pointer;
    list-style: none; /* Hide default arrow */
    outline: none;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--dark);
    text-transform: uppercase;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(47, 27, 16, 0.1);
}

.faq-item summary::-webkit-details-marker {
    display: none; /* Hide Safari default arrow */
}

.faq-item summary::after {
    content: "↓";
    font-family: var(--font-body);
    font-weight: 900;
    color: var(--orange);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item summary::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 2rem;
    width: 60px;
    height: 3px;
    background: var(--orange);
}

.faq-content {
    padding: 0 2rem 2rem;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--dark);
    margin-top: 1rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white-soft);
    padding: 6rem 0;
    text-align: center;
}


/* Master Heritage Footer Style */
.footer-heritage {
    min-height: 40vh; /* Reduced from 60vh */
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: end;
    background-color: var(--orange);
    background-image: 
        linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.1)), /* Matched exact button gradient */
        url('https://www.transparenttextures.com/patterns/natural-paper.png');
    color: var(--white-soft);
    padding: 2.5rem 0 1.5rem; /* Slimmer padding */
    position: relative;
    border-top: 4px solid var(--brown);
    box-shadow: inset 0 20px 40px rgba(0,0,0,0.2);
}

.footer-heritage::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 20px;
    background-image: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
    background-color: var(--brown);
    border-radius: 50% 50% 0 0;
    opacity: 0.9;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 2rem; /* Reduced margin */
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--white-soft);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.footer-heritage .footer-logo {
    width: 100px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.75rem;
    opacity: 0.7;
    line-height: 1.5;
    max-width: 200px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.footer-links li a:hover {
    color: var(--dark);
}

.contact-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-link {
    color: var(--white-soft);
    transition: var(--transition);
    background: rgba(255,255,255,0.15);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
}

.social-link:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-5px) rotate(8deg);
    border-color: var(--dark);
}

.social-link svg {
    transition: var(--transition);
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* WhatsApp Heritage Button Styling */
.btn-whatsapp-heritage {
    background-color: var(--orange) !important;
    background-image: 
        linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.15)),
        url('https://www.transparenttextures.com/patterns/natural-paper.png') !important;
    color: var(--white-soft) !important;
    border: 2px solid var(--brown) !important;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.btn-whatsapp-heritage:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

/* Consolidated into previous definition */

.footer-heritage .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    opacity: 0.9;
    padding-top: 1rem; /* Smaller padding */
    margin-top: 2rem; /* Smaller margin */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.footer-heritage .legal-links {
    display: flex;
    gap: 1rem;
    font-size: 0.7rem;
}

.footer-heritage .legal-links a {
    color: inherit;
    transition: var(--transition);
}

.footer-heritage .legal-links a:hover {
    color: var(--orange);
}

.footer-heritage .copyright {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-col h4 {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-heritage .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-tagline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-heritage .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

.border-dark-opacity {
    border-color: rgba(47, 27, 16, 0.1);
}

/* Reveal Animations (Refined) */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Mucho más que cerveza (Experience Showcase) */
.feature-item-card {
    background: #f7e9d3; /* More aged cream */
    background-image: 
        radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.04) 100%),
        url('https://www.transparenttextures.com/patterns/natural-paper.png');
    padding: 2rem;
    border: 2px solid var(--brown);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.feature-item-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--orange);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 5;
}

.feature-seal {
    width: 80px;
    height: 80px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem; /* Larger icons */
    transition: var(--transition);
}

.feature-seal img {
    mix-blend-mode: multiply;
}

.feature-item-card:hover .feature-seal {
    transform: scale(1.2) rotate(5deg);
}

.feature-card-content {
    flex: 1;
    text-align: left;
}

.feature-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    position: relative;
    padding-bottom: 0.35rem;
    display: inline-block;
}

.feature-card-content h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--orange);
}

.feature-card-content p {
    font-size: 0.95rem;
    color: var(--brown);
    opacity: 0.9;
    line-height: 1.5;
}

/* Nav Link Active State (ScrollSpy) */
.nav-links li a.active {
    color: var(--orange);
}

/* Language Selector Styles */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1.5rem;
    border-left: 1px solid rgba(47, 27, 16, 0.2);
    border-right: 1px solid rgba(47, 27, 16, 0.2);
}

.flag-btn {
    background: none;
    border: 2px solid transparent;
    padding: 2px;
    cursor: pointer;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0.6;
    filter: grayscale(0.4);
}

.flag-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.flag-btn:hover {
    transform: scale(1.2);
    opacity: 1;
    filter: grayscale(0);
}

.flag-btn.active {
    opacity: 1;
    filter: grayscale(0);
    border-color: var(--orange);
    box-shadow: 0 0 10px rgba(212, 127, 43, 0.3);
}

/* Mobile adjustments for Lang Selector */
@media (max-width: 992px) {
    .navbar .container {
        gap: 1rem;
    }
    .lang-selector {
        padding: 0 0.5rem;
        gap: 0.4rem;
    }
    .flag-btn {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 768px) {
    .lang-selector {
        order: 2;
        border: none;
        padding: 0;
        flex-wrap: wrap;
        justify-content: flex-end;
        max-width: 150px;
    }
    .navbar {
        align-items: flex-start;
    }
    
    /* Visual Centering Correction requested by user */
    .hero-glass-card, 
    .hero-ribbon-wrapper {
        position: relative;
        left: -28px; /* Incremented shift to perfectly center hero visually */
    }
    
    .pricing-poster-grid,
    .section-ribbon,
    .section-subtitle {
        position: relative;
        left: -16px; /* Shift pricing section a bit more left */
    }
    .nav-btn {
        display: none; /* Hide button on mobile to save space, or move into menu */
    }
}

.nav-links li a.active::after {
    width: 100%;
}

@media (max-width: 850px) {
    .feature-item-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }
    
    .feature-seal {
        margin: 0 auto 1.5rem auto;
    }
    
    .feature-card-content {
        text-align: center;
    }

    .feature-card-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* --- TOP-TIER ENHANCEMENTS --- */

/* 1. Preloader Branded Animation */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-mug {
    width: 420px; /* EXTRA MEGA ENLARGED from 350px */
    height: 500px;
    position: relative;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: mugFloat 5s ease-in-out infinite; /* Added dynamic float */
}

@keyframes mugFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    75% { transform: translateY(5px) rotate(-1deg); }
}

.preloader-mug img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%); /* Center perfectly in container */
    object-fit: contain;
}

.mug-base {
    z-index: 1;
    opacity: 0.15; /* Subtly visible glass */
    filter: grayscale(1) brightness(2) contrast(0.5); /* Makes the full jar look like an empty crystalline glass */
}

.mug-fill {
    z-index: 2;
    clip-path: inset(100% 0 0 0);
    animation: fillMug 3s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards; /* Reduced to 3s */
}

@keyframes fillMug {
    0% { clip-path: inset(100% 0 0 0); }
    100% { clip-path: inset(0% 0 0 0); }
}

/* Removed legacy beer-fill div */

[data-i18n="loading_text"] {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--brown);
    letter-spacing: 2px;
}

/* 2. Heritage Countdown Timer Styles */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    perspective: 1000px;
}

.countdown-item {
    background: rgba(43, 24, 16, 0.85); /* Deep brown glass */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 163, 115, 0.3);
    padding: 1.2rem 0.8rem;
    min-width: 90px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: rotateX(5deg);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: rotateX(0deg) translateY(-5px);
    border-color: var(--orange);
}

.countdown-item span {
    display: block;
    font-size: 2.22rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}

.countdown-item small {
    display: block;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--white-soft);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .countdown-container {
        gap: 0.75rem;
    }
    .countdown-item {
        min-width: 70px;
        padding: 1rem 0.5rem;
    }
    .countdown-item span {
        font-size: 1.8rem;
    }
}

/* 3. Urgency Badges & Social Proof */
.price-box {
    position: relative;
}

.urgency-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #27ae60; /* Positive green */
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 5;
    animation: bounceSlow 3s infinite;
}

.urgency-badge.urgency-red {
    background: #e74c3c; /* Alert red */
}

@keyframes bounceSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* 4. Enhanced Scrollytelling (Rotate Reveal) */
[data-reveal].active {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1) !important;
}

.starburst-price[data-reveal] {
    transform: scale(0.5) rotate(-45deg);
}

.starburst-price[data-reveal].active {
    animation: sealPop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes sealPop {
    0% { transform: scale(0.5) rotate(-45deg); opacity: 0; }
    50% { transform: scale(1.1) rotate(10deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* --- MEGA PRO REFINEMENTS (Compact Version) --- */

/* 1. Grain Overlay (CSS Noise) */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 10000;
}

/* 3. Global Layout Protection */
html, body {
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.site-wrapper {
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

/* Wax Seal Separator */
.wax-seal-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
    position: relative;
}

.wax-seal-divider::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(47, 27, 16, 0.2), transparent);
}

.wax-seal {
    width: 65px;
    height: 65px;
    background: #b31919;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
    border: 3px solid rgba(128, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wax-seal::after {
    content: "A";
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    font-weight: 900;
}

/* --- PREMIUM TOP ENHANCEMENTS --- */
/* Mixed Typography */
.mix-heading {
    font-family: var(--font-body);
    font-weight: 900;
}
.mix-heading .italic-serif {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    color: var(--orange);
}

/* Glowing Shadows */
.glow-shadow {
    box-shadow: 0 0 30px rgba(194, 91, 19, 0.3);
    transition: var(--transition);
}
.glow-shadow:hover {
    box-shadow: 0 0 50px rgba(194, 91, 19, 0.5);
}

/* Glassmorphism Advanced */
.glass-advanced {
    background: rgba(255, 248, 239, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(194, 91, 19, 0.15);
}

/* Magnetic Button */
.nav-btn, .btn {
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s, background 0.3s;
    will-change: transform;
}

/* 3D Hover Cards */
.feature-item-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
    transform-style: preserve-3d;
}
.feature-item-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(194, 91, 19, 0.15);
}

/* Hero Bubbles */
.hero-bubble {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
    border-radius: 50%;
    bottom: -50px;
    animation: rise infinite ease-in;
    pointer-events: none;
    z-index: 1;
}

@keyframes rise {
    0% { transform: translateY(0) scale(0.5); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
}

/* Text Reveal */
.text-reveal {
    overflow: hidden;
}
.text-reveal-inner {
    display: inline-block;
    transform: translateY(110%);
}

/* --- FESTIVE FOOTER ENHANCEMENTS --- */
.footer-festive {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding-bottom: 3rem;
}

.footer-marquee {
    background: var(--orange);
    color: var(--white-soft);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    padding: 1rem 0;
    white-space: nowrap;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    z-index: 20;
    transform: rotate(-1deg) scale(1.02);
    margin-top: -1rem;
    margin-bottom: 4rem;
}

.marquee-content {
    display: inline-block;
    animation: marqueeScroll 20s linear infinite;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.footer-festive-logo img {
    width: 250px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: transform 0.4s;
}
.footer-festive-logo img:hover {
    transform: scale(1.1) rotate(3deg);
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--orange);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-btn:hover {
    background: var(--orange);
    color: var(--white-soft);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(194, 91, 19, 0.4);
}

.footer-festive-links a {
    color: var(--cream);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s;
}

.footer-festive-links a:hover {
    color: var(--orange);
}

.footer-festive-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--orange);
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s;
}

.footer-festive-links a:hover::after {
    width: 100%;
}