/* Custom CSS for Barbacoa Tatemada El Vale */

:root {
    /* Colors based on requirements */
    --primary: #7A2E16;
    /* Fuego, barro, cálido */
    --primary-light: #A54425;
    --secondary: #D9822B;
    --accent: #F4C36A;
    --dark: #1F120B;
    --cream: #FFF4E0;
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(31, 18, 11, 0.08);
    --shadow-md: 0 8px 24px rgba(31, 18, 11, 0.12);
    --shadow-lg: 0 16px 32px rgba(31, 18, 11, 0.15);

    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Interactive Menu Variables */
    --component-inactive-color: rgba(31, 18, 11, 0.5);
    --component-bg: rgba(255, 255, 255, 0.85);
    --component-shadow: rgba(31, 18, 11, 0.1);
    --component-active-bg: var(--cream);
    --component-active-color: var(--primary);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.bg-cream {
    background-color: var(--cream);
}

.bg-dark {
    background-color: var(--dark);
}

.bg-white {
    background-color: var(--white);
}

.text-white {
    color: var(--white) !important;
}

.text-light {
    color: rgba(255, 255, 255, 0.8) !important;
}

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

.mt-sm {
    margin-top: var(--space-sm);
}

.mt-medium {
    margin-top: var(--space-md);
}

.mt-large {
    margin-top: var(--space-lg);
}

.mb-large {
    margin-bottom: var(--space-lg);
}

.section {
    padding: var(--space-xl) 0;
}

.section-header {
    margin-bottom: var(--space-lg);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    cursor: pointer;
    border: none;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--cream);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--dark);
}

.nav-link:hover {
    color: var(--primary);
}

.header-actions {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer;
}

.nav-backdrop {
    display: none;
}

.nav-icon,
.nav-chevron,
.mobile-nav-footer {
    display: none;
}

.desktop-nav-btn {
    display: inline-flex;
}


/* Hero Diced Section */
.hero-diced {
    background-color: var(--dark);
    padding: calc(80px + 4rem) 0 4rem;
    /* 80px header + padding */
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-diced-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-diced-content {
    color: var(--white);
}

.hero-diced-subtitle {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--cream);
}

.hero-diced-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.text-gradient {
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-diced-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-diced-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-diced-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
    max-width: 550px;
    margin: 0 auto;
}

.diced-img-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    /* Placeholder bg */
}

.diced-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Masks for the inner corners */
.pos-tl {
    -webkit-mask: radial-gradient(circle at 100% 100%, transparent 40px, black 41px);
    mask: radial-gradient(circle at 100% 100%, transparent 40px, black 41px);
}

.pos-tr {
    -webkit-mask: radial-gradient(circle at 0% 100%, transparent 40px, black 41px);
    mask: radial-gradient(circle at 0% 100%, transparent 40px, black 41px);
}

.pos-bl {
    -webkit-mask: radial-gradient(circle at 100% 0%, transparent 40px, black 41px);
    mask: radial-gradient(circle at 100% 0%, transparent 40px, black 41px);
}

.pos-br {
    -webkit-mask: radial-gradient(circle at 0% 0%, transparent 40px, black 41px);
    mask: radial-gradient(circle at 0% 0%, transparent 40px, black 41px);
}

@media (max-width: 992px) {
    .hero-diced-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-diced-actions {
        justify-content: center;
    }

    .hero-diced-text {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Trust Bar */
.trust-bar {
    background-color: var(--secondary);
    color: var(--white);
    padding: 1rem 0;
}

.trust-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards with Spotlight Effect */
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    --x: 0px;
    --y: 0px;
    --spotlight-color: rgba(217, 130, 43, 0.15);
    /* Secondary color with opacity */
    --spotlight-size: 300px;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: radial-gradient(var(--spotlight-size) circle at var(--x) var(--y),
            var(--spotlight-color),
            transparent 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-img-wrapper {
    position: relative;
    padding-top: 75%;
    /* 4:3 Aspect Ratio */
    overflow: hidden;
    z-index: 1;
}

.card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.card-price {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--secondary);
    font-size: 1.35rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0;
}

.card-text {
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--primary), #923C22);
    border-radius: var(--radius-md);
    padding: 2rem;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.promo-banner h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.promo-banner p {
    color: var(--white);
    max-width: 65ch;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Story Section */
.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content p {
    max-width: 65ch;
}

.feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 2rem;
}

.story-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(122, 46, 22, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Location */
.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.location-info {
    padding: 3rem;
}

.location-address {
    display: flex;
    gap: 1rem;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #444;
}

.schedule-card {
    position: relative;
    background: var(--cream);
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    border-radius: var(--radius-sm);
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary);
    border-top-left-radius: var(--radius-sm);
    border-bottom-left-radius: var(--radius-sm);
}

.schedule-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-family: var(--font-heading);
    font-size: 1.15rem;
}

.schedule-list li.closed {
    color: var(--primary);
    font-weight: 600;
}

.location-map {
    width: 100%;
    min-height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(31, 18, 11, 0.8), rgba(31, 18, 11, 0.9)), url('../assets/images/sopes_barbacoa.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.cta-section .section-title {
    color: var(--white);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.delivery-apps {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Design Upgrade */
.footer {
    padding: var(--space-xl) 0 var(--space-md);
    background-color: transparent;
}

.footer-card {
    background: var(--white);
    border-radius: 32px;
    padding: 3.5rem 2.5rem;
    box-shadow: 0 20px 25px -5px rgba(31, 18, 11, 0.08), 0 10px 10px -5px rgba(31, 18, 11, 0.03);
    position: relative;
    margin-bottom: 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.footer-brand .logo-img {
    height: 50px;
    width: auto;
}

.footer-brand p {
    color: rgba(31, 18, 11, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 300px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: rgba(31, 18, 11, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.badge-soon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(31, 18, 11, 0.4);
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-soon span {
    background: var(--cream);
    color: var(--primary);
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 12px;
    text-transform: lowercase;
    transform: rotate(-3deg);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    color: rgba(31, 18, 11, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: inherit;
    text-decoration: none;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.tape {
    position: absolute;
    color: var(--primary);
    opacity: 0.9;
    z-index: 2;
}

.tape-left {
    top: -15px;
    left: -25px;
}

.tape-right {
    top: -15px;
    right: -25px;
    transform: rotate(90deg);
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-wa svg {
    width: 35px;
    height: 35px;
}

.floating-wa:hover {
    transform: scale(1.1);
}

.review-card strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 400;
}

/* Responsive */
@media (max-width: 992px) {
    .story-container {
        grid-template-columns: 1fr;
    }

    .location-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Header mobile layout */
    .header {
        height: 68px;
    }

    .nav-container {
        height: 68px;
        padding: 0 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
    }

    .logo {
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }

    .logo-img {
        height: 48px;
        width: auto;
    }

    /* Header Actions (Pedir + Menú hamburger) */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .header-order-pill {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: linear-gradient(135deg, #7a2e16 0%, #a23e1f 100%);
        color: #ffffff;
        font-family: var(--font-body);
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        padding: 6px 12px;
        border-radius: 50px;
        text-decoration: none;
        box-shadow: 0 3px 10px rgba(122, 46, 22, 0.28);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        flex-shrink: 0;
    }

    .header-order-pill:active {
        transform: scale(0.96);
    }

    .header-order-pill svg {
        flex-shrink: 0;
    }

    /* Modern Hamburger Button */
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        background: rgba(122, 46, 22, 0.07);
        border: 1px solid rgba(122, 46, 22, 0.16);
        border-radius: 50px;
        padding: 6px 11px;
        cursor: pointer;
        color: var(--dark);
        font-family: var(--font-heading);
        font-size: 0.88rem;
        font-weight: 600;
        transition: all 0.25s ease;
        -webkit-tap-highlight-color: transparent;
        flex-shrink: 0;
    }

    .mobile-menu-btn:active,
    .mobile-menu-btn.is-active {
        background: rgba(122, 46, 22, 0.14);
        border-color: var(--primary);
        color: var(--primary);
    }

    .hamburger-box {
        width: 17px;
        height: 13px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }

    .hamburger-line {
        display: block;
        width: 100%;
        height: 2px;
        background-color: currentColor;
        border-radius: 2px;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
    }

    .mobile-menu-btn.is-active .hamburger-line.top {
        transform: translateY(5.5px) rotate(45deg);
    }

    .mobile-menu-btn.is-active .hamburger-line.mid {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-menu-btn.is-active .hamburger-line.bot {
        transform: translateY(-5.5px) rotate(-45deg);
    }

    .mobile-menu-label {
        line-height: 1;
        letter-spacing: 0.02em;
    }

    /* Backdrop overlay */
    .nav-backdrop {
        display: block;
        position: fixed;
        top: 68px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 68px);
        background: rgba(15, 8, 4, 0.55);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 998;
    }

    .nav-backdrop.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* Modern Mobile Navigation Drawer (Top Dropdown) */
    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        max-height: calc(100dvh - 68px);
        overflow-y: auto;
        background: #ffffff;
        flex-direction: column;
        padding: 1.1rem 1rem 1.75rem;
        box-shadow: 0 16px 36px rgba(15, 8, 4, 0.16);
        border-bottom: 2px solid var(--primary);
        z-index: 999;
        transform: translateY(-115%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        gap: 0.45rem;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-link {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 11px 14px;
        border-radius: 12px;
        background: #faf8f5;
        border: 1px solid rgba(122, 46, 22, 0.06);
        text-decoration: none;
        color: var(--dark);
        transition: all 0.2s ease;
        font-family: var(--font-heading);
        font-size: 1.12rem;
        font-weight: 500;
    }

    .nav-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: rgba(122, 46, 22, 0.08);
        color: var(--primary);
        flex-shrink: 0;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-text {
        flex: 1;
        text-align: left;
        color: var(--dark);
        transition: color 0.2s ease;
    }

    .nav-chevron {
        display: inline-block;
        font-size: 1.25rem;
        color: rgba(31, 18, 11, 0.3);
        font-weight: 400;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .nav-link:hover,
    .nav-link:active,
    .nav-link.active {
        background: rgba(122, 46, 22, 0.09);
        border-color: rgba(122, 46, 22, 0.22);
    }

    .nav-link:hover .nav-icon,
    .nav-link:active .nav-icon,
    .nav-link.active .nav-icon {
        background: var(--primary);
        color: #ffffff;
    }

    .nav-link:hover .nav-text,
    .nav-link:active .nav-text,
    .nav-link.active .nav-text {
        color: var(--primary);
        font-weight: 700;
    }

    .nav-link:hover .nav-chevron,
    .nav-link:active .nav-chevron,
    .nav-link.active .nav-chevron {
        color: var(--primary);
        transform: translateX(3px);
    }

    /* Mobile Drawer Actions */
    .mobile-nav-footer {
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
        margin-top: 1.1rem;
        padding-top: 1.1rem;
        border-top: 1px solid rgba(122, 46, 22, 0.1);
        width: 100%;
    }

    .mobile-order-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 13px 18px;
        font-size: 1.02rem;
        font-weight: 700;
        border-radius: 12px;
        background: linear-gradient(135deg, #7a2e16 0%, #9e3d1f 100%);
        color: #ffffff;
        box-shadow: 0 4px 16px rgba(122, 46, 22, 0.3);
        text-decoration: none;
        border: none;
        transition: transform 0.2s ease;
    }

    .mobile-order-cta:active {
        transform: scale(0.98);
    }

    .mobile-wa-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 11px 18px;
        font-size: 0.95rem;
        font-weight: 600;
        border-radius: 12px;
        background: #25D366;
        color: #ffffff;
        text-decoration: none;
        transition: transform 0.2s ease;
    }

    .mobile-wa-cta:active {
        transform: scale(0.98);
    }

    .desktop-nav-btn {
        display: none !important;
    }


    .hero-actions {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

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

    .location-info {
        padding: 2rem;
    }
}

/* --- Modern Mobile Interactive Menu --- */
.interactive-menu {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    /* Only mobile */
    background: var(--component-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 8px 12px;
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 40px var(--component-shadow);
    z-index: 2000;
    border: 1px solid rgba(255, 255, 255, 0.4);
    width: calc(100% - 32px);
    max-width: 420px;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    padding: 8px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    color: var(--component-inactive-color);
    flex: 1;
    min-width: 0;
    gap: 4px;
}

.menu__item.active {
    color: var(--component-active-color);
}

.menu__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu__item.active .menu__icon {
    transform: translateY(-4px);
    animation: iconBounce 0.6s ease forwards;
}

.menu__icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}

.menu__text {
    font-size: 10px;
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: 0.02em;
    opacity: 0.6;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.menu__item.active .menu__text {
    opacity: 1;
    color: var(--component-active-color);
}

/* Active Indicator Line */
.menu__item::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--component-active-color);
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px rgba(122, 46, 22, 0.3);
}

.menu__item.active::after {
    width: var(--lineWidth, 24px);
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(-4px) scale(1);
    }

    30% {
        transform: translateY(-8px) scale(1.1);
    }

    50% {
        transform: translateY(-4px) scale(0.95);
    }

    80% {
        transform: translateY(-5px) scale(1.02);
    }
}

/* Responsive visibility */
@media (max-width: 768px) {
    .interactive-menu {
        display: none !important;
    }

    body {
        padding-bottom: 0;
    }

    /* General Centering */
    .hero-diced-content {
        text-align: center;
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-diced-title {
        font-size: 2.8rem;
    }

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

    /* Footer Responsive Fixes */
    .footer-card {
        padding: 3rem 1.5rem;
        text-align: center;
        overflow: hidden;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .tape {
        display: none;
        /* Hide tapes on mobile to avoid overlap */
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding-bottom: 2rem;
    }

    .footer-legal {
        justify-content: center;
        gap: 1.5rem;
    }

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

    /* Floating WhatsApp adjustment */
    .floating-wa {
        bottom: 24px;
        right: 18px;
        width: 52px;
        height: 52px;
    }

    .floating-wa svg {
        width: 28px;
        height: 28px;
    }

    /* Location Centering */
    .location-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem 1.5rem !important;
    }

    .location-address {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .schedule-card {
        width: 100%;
        max-width: 350px;
        margin: 2rem auto;
    }
}