/* 
 * Tino's Restaurant - Styles 
 * Basado en las especificaciones predefinidas más sistema i18n
 */

@font-face {
    font-family: 'Gravita GEO';
    src: url('../fonts/GravitaGEO-Light.otf') format('opentype');
    font-weight: 320;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gravita GEO';
    src: url('../fonts/GravitaGEO-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gravita GEO';
    src: url('../fonts/GravitaGEO-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gravita GEO';
    src: url('../fonts/GravitaGEO-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #FAFAFA;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ===== Header (Idéntico a Frame 1) ===== */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 60px; /* Alineado visualmente */
    position: absolute; 
    top: 0;
    left: 0;
    z-index: 100;
}

.main-header.header-solid-bg {
    background-color: #f4f3ed;
    /* Optional: Si queremos sombra o borde inferior */
    /* border-bottom: 2px solid #ccc; */
}

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

.logo-wrapper .logo {
    max-width: 130px; 
    height: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links > a {
    text-decoration: none;
    color: #E94C2E;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px; /* Espacio para el subrayado para que no parpadee al acercar el mouse */
}

/* Micro-animación de subrayado deslizante */
.nav-links > a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #E94C2E;
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-links > a:hover::after,
.nav-links > a.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-btn-img {
    max-height: 22px; /* Ajuste para mantener proporción visual */
    width: auto;
    transition: transform 0.2s ease;
    display: block;
}

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

/* Language Switcher integrado al Navbar */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.lang-switch a {
    text-decoration: none;
    color: #888;
    transition: color 0.2s;
}

.lang-switch a:hover {
    color: #333;
}

.lang-switch a.active {
    color: #E94C2E;
}

.lang-switch .sep {
    color: #ccc;
    font-weight: 400;
}


/* ===== Home / Main Body ===== */
.home-main {
    flex: 1;
    width: 100%;
    background-image: url('../../public/images/hotdog_hero.png');
    background-size: 1300px;
    background-position: center bottom;
    background-repeat: no-repeat;
    
    padding-top: 194px; 
    padding-left: 36px;
    position: relative;
    overflow: hidden;
}

.hero-left {
    position: absolute;
    top: 25%;
    left: 60px; /* Alineado visualmente */
    z-index: 20;
}

.hero-text {
    font-family: "Gravita GEO", 'Inter', sans-serif; 
    color: #E94C2E;
    font-size: 50px;
    font-weight: 400;
    line-height: 0.86; 
    letter-spacing: -0.07em; 
    text-transform: uppercase;
    max-width: 441px;
    background: #ffffffa8;
    border-radius: 20px;
}

/* ===== Centerpiece & Clickable Stickers ===== */
.hero-center-art {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65vw; 
    max-width: 900px;
    height: 35vw;
    max-height: 500px;
    z-index: 10;
    pointer-events: none;
}

.center-hotdog {
    display: none; 
}

.sticker {
    position: absolute;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    z-index: 30; /* Elevado para superponer hero-left y hero-right-bottom */
    pointer-events: auto; 
}

.sticker:hover {
    transform: scale(1.1) rotate(-5deg);
}

.sticker img {
    width: 100%;
    height: auto;
    display: block;
}

.sticker:hover img {
    animation-play-state: paused;
}

/* Original Layout Group adapted to Purple Boxes */

/* 1. Top Center Box */
.sticker-mouth {
    top: -25%;
    left: 45%;
    width: clamp(120px, 18vw, 250px);
}
.sticker-mouth img {
    animation: sticker-twitch 6.5s infinite;
    animation-delay: 0.5s;
}

/* 3. Middle Right Box */
.sticker-cursor {
    top: 45%;
    right: 40%;
    width: clamp(130px, 20vw, 280px);
}
.sticker-cursor img {
    animation: sticker-twitch 7.2s infinite;
    animation-delay: 2.1s;
}

/* 2. Top Right Box */
.sticker-hotdamn {
    top: -5%;
    right: -20%;
    width: clamp(100px, 14vw, 200px);
}
.sticker-hotdamn img {
    animation: sticker-twitch 5.8s infinite;
    animation-delay: 3.7s;
}

/* 5. Bottom Center Box */
.sticker-char {
    bottom: -5%;
    left: 0%;
    width: clamp(90px, 12vw, 180px);
}
.sticker-char img {
    animation: sticker-twitch 6.8s infinite;
    animation-delay: 1.2s;
}

/* 4. Bottom Left Box */
.sticker-pin {
    bottom: 10%;
    left: -30%;
    width: clamp(140px, 20vw, 300px);
}
.sticker-pin img {
    animation: sticker-twitch 8.1s infinite;
    animation-delay: 4.5s;
}

/* ===== Micro-animación de Stickers ===== */
@keyframes sticker-twitch {
  0%, 100% { transform: rotate(0deg) scale(1); }
  2% { transform: rotate(-4deg) scale(1.03); }
  4% { transform: rotate(4deg) scale(0.97); }
  6% { transform: rotate(-4deg) scale(1.03); }
  8% { transform: rotate(0deg) scale(1); }
}

/* Global sticker animations for consistent random wobbling across the site */
.floating-sticker,
.floating-icon,
img.sticker,
.sticker {
    /* Base animation */
    animation: sticker-twitch 8s infinite;
}

/* Pseudo-randomization based on DOM position */
.floating-sticker:nth-child(odd),
.floating-icon:nth-child(odd),
.sticker:nth-child(odd) {
    animation-duration: 7.4s;
    animation-delay: 1.2s;
}

.floating-sticker:nth-child(even),
.floating-icon:nth-child(even),
.sticker:nth-child(even) {
    animation-duration: 9.3s;
    animation-delay: 2.8s;
}


/* ===== "Humble Format" Typography Block ===== */
.hero-right-bottom {
    position: absolute;
    bottom: 50px;
    right: 60px;
    z-index: 20;
    text-align: right;
    width: 800px;
}

.humble-format-text {
    font-family: "Gravita GEO", 'Inter', sans-serif;
    font-weight: 900; 
    font-size: 93px;
    line-height: 0.86; 
    letter-spacing: -0.07em; 
    text-transform: uppercase;
    margin: 0;
}

.humble-format-text .orange {
    color: #E94C2E;
}

.humble-format-text .dark {
    /* Un azul oscuro intenso que parezca negro, o gris muy oscuro */
    color: #1c2833; 
}

@media (max-width: 900px) {
    .home-main {
        padding-top: 140px;
        padding-left: 10px;
        padding-right: 10px;
        background-position: 90% 55%;
        background-size: 200%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        min-height: auto;
    }

    .hero-left {
        position: relative;
        top: 0;
        left: 0;
        text-align: center;
        z-index: 20;
        max-width: 90%;
    }

    .hero-text {
        font-size: clamp(36px, 8vw, 44px);
        line-height: 0.9;
        text-align: center;
    }

    .hero-center-art {
        position: static;
        width: 100%;
        height: 0;
        transform: none;
    }

    .sticker-mouth {
        top: 23%;
        left: auto;
        right: -3%;
        width: 110px;
        z-index: 21;
    }
    
    .sticker-cursor {
        top: 42%;
        right: -2%;
        width: 130px;
        z-index: 22;
    }

    .sticker-char {
        top: 50%;
        bottom: auto;
        left: 6%;
        width: 120px;
        z-index: 21;
    }

    .hero-right-bottom {
        position: relative;
        bottom: 0;
        right: 0;
        text-align: center;
        margin-top: 360px; /* Space to clear the background hotdog */
        margin-bottom: 120px; /* Reduced from 220px to shrink view height, while leaving room for stickers */
        z-index: 20;
        width: 100%;
    }

    .humble-format-text {
        font-size: clamp(55px, 12vw, 75px);
        line-height: 0.9;
        max-width: 100%;
        margin: 0 auto;
        text-align: right;
    }

    .sticker-pin {
        top: auto;
        bottom: 50px;
        left: 5%;
        width: 160px;
    }

    .sticker-hotdamn {
        top: auto;
        bottom: 30px;
        right: 15%;
        width: 100px;
    }
}

/* ===== Footer ===== */
.main-footer {
    background-color: #F8F8F8; /* Light gray from image */
    padding: 20px 40px 10px 40px;
    color: #E94C2E;
    font-family: "Gravita GEO", 'Inter', sans-serif; /* Fuentes de diseño original implementada y compartida para el traductor glocal */
}

.footer-grid {
    display: grid;
    /* Simplificamos el grid base a 4 columnas porque el contenido ahora es internamente multi-columna */
    grid-template-columns: 0.8fr 2.5fr 2fr 2.5fr; 
    gap: 20px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Dog drawing col */
.footer-logo-img {
    width: 60px; /* Achicado sustancialmente */
    height: auto;
    margin-top: 5px;
}

/* Links col */
.links-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    column-gap: 20px;
    row-gap: 2px;
}

.links-col a {
    color: #E94C2E;
    text-decoration: none;
    font-size: 12px;
    font-weight: 320;
    line-height: 1.4;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.links-col a:hover {
    text-decoration: underline;
}

/* Hours & Apps col */
.hours-col {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.hours-col h4, .social-col h4 {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
    line-height: 1px;
}

.hours-text p {
    font-size: 12px;
    font-weight: 320;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-apps {
    display: flex;
    gap: 8px;
    /* margin-top removido o ajustado para alineación */
    margin-top: 5px; 
}

/* Ajuste específico de Mockup de Google Maps & UEats */
.app-img {
    height: 18px; /* Tamaño rebajado considerablemente */
    width: auto;
}

/* Social & Address col */
.social-col {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.social-icons {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.social-link {
    display: inline-block;
    transition: transform 0.2s;
}

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

.social-img {
    height: 12px; /* Mucho más pequeño */
    width: auto;
}

.address-text {
    font-size: 12px;
    font-weight: 320;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    max-width: 180px; 
}

/* Bottom copyright */
.footer-bottom {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.copyright {
    font-size: 11px;
    font-weight: 320;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .main-footer {
        padding: 40px 30px 20px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .links-col {
        grid-template-columns: 1fr;
        grid-auto-flow: row;
        row-gap: 12px;
    }

    .hours-col, .social-col {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

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

    .social-left, .address-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .address-text {
        max-width: none;
    }

    .footer-bottom {
        justify-content: center;
        margin-top: 30px;
    }
}

/* ===== Menu Page ===== */
.menu-main {
    flex: 1;
    width: 100%;
    background-color: #f4f3ed;
    padding-top: 140px; 
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.menu-container {
    display: flex;
    width: 100%;
    padding: 0 60px;
    justify-content: space-between;
    align-items: flex-start; 
}

/* --- Left Column --- */
.menu-left-col {
    position: relative;
    width: 65%;
    display: flex;
    flex-direction: column;
}

.menu-header {
    display: flex;
    align-items: flex-end; /* Align bottom to baseline */
    gap: 30px;
    margin-bottom: -120px; /* Text floats over slider image */
    position: relative;
    z-index: 20; 
    pointer-events: none; /* Just to not block clicks on the slider area */
}

.menu-title {
    font-family: "Gravita GEO", 'Inter', sans-serif;
    color: #E94C2E;
    font-size: 160px;
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    margin: 0;
}

.menu-subtitle {
    font-family: 'Inter', sans-serif;
    color: #E94C2E;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 12px;
    max-width: 380px;
}

.menu-slider {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    width: 100%;
    margin-top: 100px;
}

.slider-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px;
    transition: transform 0.2s;
    z-index: 10;
}

.slider-btn:hover {
    transform: scale(1.1);
}

.slider-btn img {
    height: 45px;
    width: auto;
}

.slider-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hotdog-img {
    width: 100%;
    max-width: 950px;
    height: auto;
    z-index: 5;
    margin-top: 0px; 
}

.flag-icon {
    position: absolute;
    bottom: 100px;
    right: 0%;
    width: 160px;
    height: auto;
    z-index: 50;
    transform: rotate(5deg);
    transition: transform 0.2s ease, opacity 0.3s ease;
    opacity: 0;
}

.slider-item.active .flag-icon {
    opacity: 1;
    transition: opacity 0.6s ease-in-out 0.5s, transform 0.2s ease;
}

.flag-icon:hover {
    transform: scale(1.1) rotate(10deg);
}

.item-info {
    text-align: left;
    width: 100%;
    margin-top: -100px; 
    padding-left: 80px;
    position: relative;
    z-index: 10;
}

.item-title {
    font-family: "Gravita GEO", 'Inter', sans-serif;
    color: #E94C2E;
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: -0.04em;
}

.item-desc {
    font-family: 'Inter', sans-serif;
    color: #E94C2E;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.1;
    max-width: 430px;
}

/* Floating elements in left col */
.sticker-stamp {
    position: absolute;
    bottom: -15px;
    right: -20px;
    width: 220px;
    height: auto;
    z-index: 15;
    transition: transform 0.2s ease;
}
.sticker-stamp:hover { transform: scale(1.05) rotate(-5deg); }

.sticker-dog {
    position: absolute;
    top: -60px;
    left: -80px; 
    width: 250px;
    height: auto;
    z-index: 20;
    transition: transform 0.2s ease;
}
.sticker-dog:hover { transform: scale(1.05) rotate(5deg); }

/* --- Right Column --- */
.menu-right-col {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally in column */
    padding-top: 10px; /* Aligned higher */
}

.menu-preview-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center all contents */
    gap: 15px;
    position: relative; /* the sticker dog depends on this */
}

.physical-menu-link {
    display: block;
    width: 100%;
    max-width: 480px; /* Big enough to showcase the menu */
}

.physical-menu-img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* Keep a soft shadow but remove solid border */
}

.view-menu-action {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.pixel-arrow {
    height: 35px;
    width: auto;
}

.action-text {
    font-family: "Gravita GEO", 'Inter', sans-serif;
    font-weight: 900;
    font-size: 38px;
    color: #1c2833;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    margin-top: 5px;
}

.pickup-btn {
    display: block;
    margin-top: 15px;
    transition: transform 0.2s ease;
}

.pickup-btn:hover {
    transform: scale(1.05);
}

.pickup-btn img {
    height: 60px;
    width: auto;
}

@media (max-width: 900px) {
    .menu-main {
        padding-top: 100px;
        padding-bottom: 20px;
    }
    
    .menu-container {
        padding: 0;
        flex-direction: column;
        align-items: stretch;
    }
    
    .menu-left-col, .menu-right-col {
        width: 100%;
        padding: 0;
    }
    
    .menu-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 10px;
        padding: 0 15px;
        gap: 5px;
    }
    
    .menu-title {
        font-size: clamp(45px, 14vw, 80px); /* Reduce cabecera size */
        white-space: nowrap; /* Keeps THE BUILDS in one line */
    }
    .menu-title .desktop-br {
        display: none;
    }
    
    .menu-subtitle {
        font-size: 19px;
        max-width: 290px; /* Forces wrap on two lines */
    }
    
    .menu-slider {
        position: relative;
        padding-bottom: 70px; /* For arrows */
        display: block; 
        margin-top: 10px;
    }
    
    .slider-btn {
        position: absolute;
        bottom: 0px;
        padding: 15px;
    }
    
    .prev-btn {
        left: calc(50% - 55px);
    }
    
    .next-btn {
        right: calc(50% - 55px);
    }

    .hotdog-img {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }
    
    .item-info {
        padding: 0 40px;
        text-align: left; /* Left align for JOCHO and desc */
        margin-top: -50px;
        position: relative;
        z-index: 10;
    }
    
    .item-title {
        font-size: 32px;
    }

    .item-desc {
        max-width: 320px;
        font-size: 18px;
    }

    .flag-icon {
        width: 80px;
        top: 15px;
        bottom: auto;
        right: 40px;
    }

    .sticker-stamp {
        width: 110px;
        right: 10%;
        bottom: 140px;
        z-index: 20;
    }

    .menu-right-col {
        margin-top: 10px;
        padding-bottom: 50px;
        overflow: hidden; /* Contains absolute items safely */
    }
    
    .menu-preview-wrapper {
        position: relative;
        align-items: flex-start;
        padding-left: 20px;
        padding-right: 0px;
    }
    
    .physical-menu-link {
        width: 80%;
        display: inline-block;
        margin-top: 30px; 
    }
    
    .physical-menu-img {
        border-radius: 0;
    }

    .sticker-dog {
        width: 120px;
        left: -10px;
        top: 5px;
        z-index: 30;
    }

    /* Pickup button correctly overlaid right edge of menu */
    .pickup-btn {
        position: absolute;
        top: 25%;
        right: -10px;
        z-index: 20;
        margin: 0;
    }
    .pickup-btn img {
        height: 70px;
    }

    /* Arrow and View Full Menu placed effectively bottom right */
    .view-menu-action {
        position: absolute;
        bottom: 5px;
        right: 5px;
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin: 0;
    }
    .view-menu-action .pixel-arrow {
        transform: rotate(-90deg);
        height: 35px;
    }
    .view-menu-action .action-text {
        font-size: 24px;
        line-height: 0.9;
        text-align: center;
        max-width: 90px;
        margin: 5px 0 0 0;
    }
}

/* ===== Craft Page ===== */
.craft-main {
    flex: 1;
    width: 100%;
    background-color: #f4f3ed;
    padding-top: 140px; 
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.craft-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.craft-header {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.craft-title {
    font-family: "Gravita GEO", 'Inter', sans-serif;
    color: #E94C2E;
    font-size: 130px;
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    margin: 0;
}

.craft-subtitle {
    font-family: 'Inter', sans-serif;
    color: #E94C2E;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 12px; 
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
}

.craft-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.craft-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
    margin-bottom: 15px;
}

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

.craft-item-title {
    font-family: "Gravita GEO", 'Inter', sans-serif;
    color: #E94C2E;
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: -0.04em;
    line-height: 1;
}

.floating-icon {
    position: absolute;
    z-index: 10;
    transition: transform 0.3s ease;
}

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

.icon-hotdog {
    top: 20%;
    left: -40px;
    height: 150px;
}

.icon-sauce {
    bottom: 50px;
    right: -40px;
    height: 150px;
}

@media (max-width: 900px) {
    .craft-main {
        padding-top: 100px;
    }
    .craft-main .container {
        padding: 0 20px; 
    }
    .craft-header {
        flex-direction: column;
        align-items: center;
        gap: 0px;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    .craft-title {
        font-size: clamp(55px, 15vw, 100px);
        white-space: nowrap;
        text-align: center;
        line-height: 0.9;
    }
    .craft-subtitle {
        font-size: clamp(18px, 6vw, 35px);
        white-space: nowrap;
        text-align: center;
        margin-top: 5px;
    }
    .craft-subtitle .desktop-br {
        display: none;
    }

    .craft-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    .craft-item {
        display: block; /* Crucial: stops shrink-to-fit from align-items: flex-start */
        width: 100%;
        position: relative;
    }
    .craft-img-wrapper {
        aspect-ratio: unset;
        height: 200px;
        width: 100%;
        margin-bottom: 5px;
        overflow: hidden;
    }
    .craft-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .craft-item-title {
        text-align: left;
        font-size: 24px;
        margin-top: 5px;
        margin-bottom: 5px;
        line-height: 1;
        width: 100%;
    }

    /* Adjust floating icons */
    .icon-hotdog {
        top: auto;
        bottom: 35px; /* Push up past the title text */
        left: auto;
        right: -10px;
        height: 140px;
        z-index: 20;
    }
    .icon-sauce {
        top: auto;
        bottom: 40px; /* Push up past the title text */
        right: auto;
        left: -15px;
        height: 150px;
        z-index: 20;
    }
}

/* ===== Dachshund Club Page ===== */
.club-main {
    flex: 1;
    width: 100%;
    background-color: #f4f3ed;
    padding-top: 140px; 
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.club-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 60px; /* Aligned with the header padding */
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
}

.club-left {
    flex: 0 0 32%;
    position: relative;
}

.club-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 30px;
    min-width: 0;
    container-type: inline-size;
}

.club-right {
    flex: 0 0 26%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 0;
}

.club-img-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.club-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.club-title-dark {
    font-family: "Gravita GEO", 'Inter', sans-serif;
    color: #192a3d; /* Dark blue */
    /* Solución robusta y compatible en respuesta a colapso del flexbox */
    font-size: clamp(40px, 7.5vw, 160px); 
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    margin: 0;
    word-break: break-word; /* Prevents overflow */
}

.club-title-orange {
    font-family: "Gravita GEO", 'Inter', sans-serif;
    color: #E94C2E;
    font-size: clamp(40px, 7.5vw, 160px);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    margin: 0;
    word-break: break-word;
}

.club-stays-text {
    font-family: 'Inter', sans-serif;
    color: #E94C2E;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 10px 0 20px 0;
}

.red-text {
    color: #E94C2E;
    font-weight: 800;
}

.club-action-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.club-arrow {
    width: 35px;
    height: auto;
    margin-top: 5px;
}

.club-action-lines {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.club-call-text {
    font-family: "Gravita GEO", 'Inter', sans-serif;
    color: #192a3d;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.uber-eats-link {
    display: block;
    transition: transform 0.2s ease;
}

.uber-eats-link:hover {
    transform: scale(1.05);
}

.uber-logo {
    height: 25px;
    width: auto;
}

/* Floating Stickers for Club */
.floating-sticker {
    position: absolute;
    z-index: 10;
    transition: transform 0.3s ease;
}
.floating-sticker:hover {
    transform: scale(1.1) rotate(5deg);
}

.sticker-dog-couch {
    top: -60px;
    left: -40px;
    width: 250px;
    height: auto;
}

.club-right-top {
    position: relative;
}

.sticker-streetcar {
    top: -50px;
    left: -120px;
    width: 280px;
    height: auto;
    z-index: 20; 
}
.mobile-streetcar {
    display: none;
}

@media (max-width: 900px) {
    .desktop-streetcar { display: none !important; }
    .mobile-streetcar { display: block !important; }

    .club-main {
        padding-top: 100px;
        padding-bottom: 30px;
    }
    
    .club-container {
        flex-direction: column;
        padding: 0 15px;
        gap: 30px;
    }

    .club-center {
        order: 1; /* Titles on top */
        padding-top: 0;
        position: relative; /* For sticker */
        min-width: 0;
    }

    .club-left {
        order: 2; /* Main image */
    }

    .club-right {
        order: 3; /* Lower row */
        flex-direction: row; 
        gap: 15px;
        padding-top: 0;
    }

    .club-title-dark, .club-title-orange {
        font-size: clamp(45px, 15vw, 100px); /* Re-scaled to prevent wrapping blowouts */
        line-height: 0.85;
        text-align: left;
    }

    .club-title-orange .desktop-br {
        display: none;
    }

    .mobile-streetcar {
        top: -10px;
        left: auto; /* CRITICAL: Override the desktop left:-120px */
        right: -10px;
        width: 170px;
        z-index: 20;
    }

    /* Additional UI hidden on desktop showing only on mobile */
    .hide-on-desktop {
        display: block !important; /* Will activate if it's mobile only */
    }

    .stamp-toronto {
        right: -5px;
        top: 35%;
        width: 140px;
        z-index: 20;
    }

    .sticker-dog-couch {
        top: auto;
        bottom: -20px;
        left: -15px;
        width: 160px;
    }

    /* Right column restructuring */
    .club-right-top {
        flex: 1;
        display: flex; /* Helps image stretch vertically */
    }
    .club-right-top .hand-wrapper {
        width: 100%;
        height: auto;
        margin: 0; 
    }
    .club-img-wrapper {
        overflow: hidden;
        display: block; 
    }
    .club-img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .club-right-bottom {
        flex: 1.1; /* slightly wider to fit text safely */
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .club-stays-text {
        font-size: 22px;
        margin: 0 0 10px 0;
        line-height: 1.1;
    }

    .club-action-box {
        position: relative;
        display: block; /* Override flex */
    }

    .club-action-lines {
        align-items: flex-end; /* push text and logo to right */
        text-align: right;
        margin-right: 40px; /* give arrow space */
    }

    .club-call-text {
        font-size: 20px;
        display: block;
        text-align: right;
    }
    
    .uber-eats-link {
        margin-top: 5px;
        display: inline-block;
    }

    .club-arrow {
        position: absolute;
        right: 0;
        top: 0;
        width: 30px;
        margin: 0;
        transform: rotate(45deg); /* Arrow pointing down-right */
    }
}


/* ===== Global Utilities ===== */
.hide-on-desktop {
    display: none !important;
}

/* ===== Catering Page ===== */
.catering-main {
    flex: 1;
    width: 100%;
    background-color: #f4f3ed;
    padding-top: 140px; 
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.catering-container {
    flex: 1;
    width: 100%;
    max-width: 100%; /* Expand to full horizontal width */
    margin: 0 auto;
    padding: 0 40px; /* Slightly reduced padding to maximize space further */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Desktop Header */
.desktop-cat-header {
    position: relative;
    display: flex;
    align-items: center;
}

.cat-title-blue {
    font-family: "Gravita GEO", 'Inter', sans-serif;
    color: #192a3d;
    font-size: clamp(80px, 10vw, 126px); /* Reduced by 30% from 180px */
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin: 0;
}

.cat-desktop-leaf {
    position: absolute;
    top: 20%;
    left: min(55vw, 750px); /* Shifted right over the end of the text as requested */
    transform: translateY(-50%) rotate(10deg);
    width: 150px; /* Scaled down leaf */
    z-index: 10;
}

/* Desktop Body */
.cat-body {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* Center Image Column (Left on Desktop Body) */
.catering-center-col {
    flex: 1;
    position: relative;
    z-index: 10;
}

.catering-main-image {
    width: 100%;
    height: auto;
    display: block; /* Eliminate underlying whitespace commonly found below inline images */
    border-radius: 0; /* Keep it perfectly rectangular per the mockup */
}

/* Right Column */
.catering-right-col {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    position: relative;
    z-index: 20;
    align-self: flex-start; /* Fit the content height at the top! */
    padding-top: 10px; /* Slightly offset from absolute top of image */
}

.cat-txt5 {
    font-family: "Gravita GEO", 'Inter', sans-serif;
    color: #192a3d; /* Desktop default: Dark Blue */
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin: 0;
}

.cat-txt5 .red-text {
    color: #E94C2E; /* Desktop span: Orange */
    display: block;
}

.cat-txt6 {
    font-family: 'Inter', sans-serif;
    color: #E94C2E;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    max-width: 450px;
}

.cat-block-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    position: relative;
    z-index: 30; /* Keep click area above dog sticker */
}

.cat-arrow-wrap2 {
    margin-top: 5px;
}

.cat-btn {
    font-family: "Gravita GEO", 'Inter', sans-serif;
    color: #1c2833;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
}

/* Stickers overrides for Desktop */
.cat-sticker {
    position: absolute;
    transition: transform 0.3s ease;
    z-index: 15;
}

.cat-sticker:hover {
    transform: scale(1.1) rotate(5deg);
}

.cat-bird-sticker {
    bottom: -15%;
    left: -10%;
    width: 250px;
}

.desk-dog-sticker {
    bottom: 30%; 
    left: -350px; /* Increased negative margin to drag the sticker significantly deeper left into the image */
    right: auto;
    width: 250px;
}


.cat-btn:hover {
    color: #E94C2E;
}

@media (max-width: 900px) {
    .hide-on-desktop {
        display: block !important;
    }
    .desktop-only {
        display: none !important;
    }

    .catering-main {
        padding-top: 100px;
    }

    .catering-container {
        flex-direction: column;
        padding: 0; /* Full edge to edge for gallery image */
        gap: 0;
    }

    .mobile-cat-header {
        order: 3;
        position: relative;
        padding: 0 20px;
        margin-bottom: 60px;
        margin-top: 20px;
        display: block;
    }
    .cat-mob-leaf {
        position: absolute;
        bottom: -20px;
        left: 0px;
        width: 180px;
        z-index: 10;
        transform: rotate(-15deg);
    }
    .cat-mob-title {
        font-family: "Gravita GEO", 'Inter', sans-serif;
        color: #E94C2E;
        font-size: clamp(65px, 18vw, 120px);
        font-weight: 900;
        line-height: 0.85;
        letter-spacing: -0.04em;
        text-transform: uppercase;
        margin: 0;
        text-align: right;
    }

    .catering-center-col {
        order: 1;
        /* Image expands fully */
    }

    .cat-body {
        flex-direction: column;
        gap: 0;
    }

    .catering-right-col {
        order: 2;
        padding: 30px 20px;
        position: relative;
    }

    .cat-txt5 {
        color: #E94C2E; /* Orange text for main line */
        font-size: clamp(33px, 9vw, 60px);
        margin-bottom: 10px;
        position: relative;
        z-index: 2;
    }
    
    .cat-txt5 .red-text {
        color: #1c2833; /* Dark Blue for embedded span! Inverting default */
        display: block; /* Make it wrap explicitly */
    }

    .mobile-dog-sticker {
        position: absolute;
        bottom: 45%; 
        right: -125px;
        width: 185px;
        z-index: 10;
        transform: rotate(5deg);
    }

    .cat-txt6 {
        color: #E94C2E;
        font-weight: 400;
        font-size: 20px;
        max-width: 100%; /* Spans across screen */
        margin-bottom: 20px;
    }

    .cat-block-btn {
        margin-top: 10px;
        align-items: center; /* Arrow and text line up */
    }

    .cat-btn {
        font-size: 32px;
        color: #1c2833;
    }
    .cat-arrow-wrap2 {
        margin-top: 0;
    }
}

/* ===== Order Page ===== */
.order-main {
    flex: 1;
    width: 100%;
    background-image: url('../../public/images/order/group_3.png');
    background-size: cover;
    background-position: center center;
    padding-top: 140px; 
    padding-bottom: 0px; 
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.order-hero-title {
    font-family: "Gravita GEO", 'Inter', sans-serif;
    font-size: clamp(40px, 7.5vw, 150px); /* Reduced size to prevent overflow */
    font-weight: 900;
    line-height: 0.8;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    z-index: 20;
    white-space: nowrap;
    margin-top: 30px;
    letter-spacing: -0.05em;
}

.order-title-dark {
    color: #192a3d;
    text-shadow: 6px 6px 0px #f4f3ed;
}

.order-title-light {
    color: #f4f3ed;
    text-shadow: 6px 6px 0px #192a3d;
}

.order-sticker {
    position: absolute;
    z-index: 15;
    transition: transform 0.3s ease;
}

.order-sticker:hover {
    transform: scale(1.1) rotate(5deg);
}

.order-sticker-1 {
    top: 25%;
    left: 4%;
    width: clamp(100px, 15vw, 200px);
    animation: sticker-twitch 7s infinite;
}

.order-sticker-2 {
    top: 40%;
    right: 50%; /* Pushed further left so it doesn't overlap text */
    width: clamp(100px, 15vw, 210px);
    animation: sticker-twitch 6.5s infinite;
    animation-delay: 1.2s;
}

.order-sticker-3 {
    bottom: -5%;
    right: 15%;
    width: clamp(100px, 15vw, 200px);
    animation: sticker-twitch 8s infinite;
    animation-delay: 2.5s;
}

.order-container {
    flex: 1;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Snap dog to bottom */
    position: relative;
    z-index: 10;
}

.order-left {
    flex: 0 0 50%;
    display: flex;
    align-items: flex-end;
}

.order-dog-img {
    width: 100%;
    max-width: 750px;
    height: auto;
    display: block;
    margin-bottom: -15px; /* Touches bottom perfectly */
}

.order-right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 200px; /* Offset upwards to clear bottom naturally */
    gap: 15px;
}

.order-txt1 {
    font-family: "Gravita GEO", 'Inter', sans-serif;
    color: #f4f3ed;
    font-size: 32px;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5); /* Helps legibility on grid */
    max-width: 580px;
}

.order-form {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.order-inputs {
    background-color: #f4f3ed;
    border: 5px solid #192a3d;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 380px;
}

.input-line {
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 15px;
}

.input-line:first-child {
    border-bottom: 3px solid #192a3d;
}

.input-line label {
    font-family: 'Inter', sans-serif;
    color: #192a3d;
    font-size: 16px;
    font-weight: 600;
    width: 70px;
}

.input-line input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    color: #444;
    font-size: 14px;
    padding-left: 15px;
    border-left: 2px solid #ccc; 
    height: 35px;
}

.input-line input::placeholder {
    color: #aaa;
}

.order-submit {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-submit:hover {
    transform: scale(1.05);
}

.order-submit img {
    height: 100px;
    width: auto;
}

/* ===== Location Page ===== */
.location-main {
    flex: 1;
    width: 100%;
    background-color: #f4f3ed;
    padding-top: 194px; 
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-title {
    font-family: "Gravita GEO", 'Inter', sans-serif;
    color: #E94C2E;
    font-size: 80px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    margin-bottom: 60px;
    text-align: center;
}

.map-wrapper {
    position: relative;
    flex: 1.5;
    min-width: 400px;
    height: 500px;
    z-index: 10;
    margin-bottom: 50px;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 4px solid #E94C2E;
}

.location-sticker {
    position: absolute;
    z-index: 20;
    transition: transform 0.3s ease;
}

.location-sticker:hover {
    transform: scale(1.1) rotate(5deg);
}

.loc-sticker-1 {
    top: -50px;
    left: -80px;
    width: 200px;
    height: auto;
    animation: sticker-twitch 8.1s infinite;
}

.loc-sticker-2 {
    bottom: -40px;
    right: -60px;
    width: 160px;
    height: auto;
    animation: sticker-twitch 6.8s infinite;
    animation-delay: 1.5s;
}

.loc-sticker-3 {
    top: 40%;
    left: -100px;
    width: 150px;
    height: auto;
    animation: sticker-twitch 5.8s infinite;
    animation-delay: 2.1s;
}

/* ===== Location Info Content ===== */
.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    max-width: 1100px;
    align-items: center;
    justify-content: center;
}

.location-info-box {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 4px solid #1c2833;
    box-shadow: 6px 6px 0px #1c2833;
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 25;
}

.info-item h3 {
    font-family: "Gravita GEO", 'Inter', sans-serif;
    color: #E94C2E;
    font-size: 24px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 900;
}

.info-item p {
    font-family: 'Inter', sans-serif;
    color: #1c2833;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

.info-item a {
    color: #1c2833;
    text-decoration: none;
    transition: color 0.2s;
}

.info-item a:hover {
    color: #E94C2E;
}

.location-cta-btn {
    display: inline-block;
    background-color: #E94C2E;
    color: #ffffff;
    text-align: center;
    font-family: "Gravita GEO", 'Inter', sans-serif;
    font-weight: 900;
    font-size: 20px;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    text-transform: uppercase;
    border: 3px solid #1c2833;
    box-shadow: 4px 4px 0px #1c2833;
    transition: transform 0.1s, box-shadow 0.1s;
    margin-top: 10px;
}

.location-cta-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #1c2833;
}

/* Responsive adjust */
@media (max-width: 900px) {
    .location-title {
        font-size: clamp(35px, 10vw, 55px);
    }
    .location-content {
        flex-direction: column;
    }
    .map-wrapper {
        flex: none;
        width: 100%;
        min-width: 100%;
        height: 500px;
    }
}

/* ===== Catering Modal ===== */
.catering-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(25, 42, 61, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.catering-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.catering-modal-content {
    background-color: #f4f3ed;
    border: 5px solid #192a3d;
    padding: 40px;
    box-shadow: 10px 10px 0px #E94C2E;
    position: relative;
    max-width: 500px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.catering-modal-overlay.active .catering-modal-content {
    transform: translateY(0);
}

.catering-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    font-weight: 900;
    color: #192a3d;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: transform 0.2s ease, color 0.2s ease;
}

.catering-modal-close:hover {
    color: #E94C2E;
    transform: scale(1.1);
}

.cat-modal-txt {
    font-family: "Gravita GEO", 'Inter', sans-serif;
    color: #E94C2E;
    font-size: 36px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 5px;
}

.catering-modal-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cat-modal-inputs {
    width: 100%;
    max-width: 100%;
}

.cat-modal-inputs .input-line {
    border-bottom: 2px solid #ccc;
}
.cat-modal-inputs .input-line:last-child {
    border-bottom: none;
}
.cat-modal-inputs .input-line:first-child {
    border-bottom: 2px solid #ccc;
}

.cat-modal-submit {
    background-color: #E94C2E;
    color: #f4f3ed;
    border: 3px solid #192a3d;
    padding: 15px 30px;
    font-family: "Gravita GEO", 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 4px 4px 0px #192a3d;
    transition: transform 0.1s, box-shadow 0.1s;
    width: 100%;
}

.cat-modal-submit:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #192a3d;
}

/* Customize catering layout logos */
.cat-uber-logo {
    height: 28px;
    width: auto;
}

/* ===== FAQs Page ===== */
.faqs-main {
    flex: 1;
    width: 100%;
    background-color: #f4f3ed;
    padding-top: 194px; 
    padding-bottom: 80px;
    position: relative;
}

.faqs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
}

.faqs-left {
    flex: 0 0 35%;
    position: sticky;
    top: 194px; 
}

.faqs-title {
    font-family: "Gravita GEO", 'Inter', sans-serif;
    color: #E94C2E;
    font-size: 180px;
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    margin: 0;
    margin-top: -10px; 
}

.faqs-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.faqs-subtitle {
    font-family: 'Inter', sans-serif;
    color: #E94C2E;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    letter-spacing: -0.03em;
}

.faqs-accordion {
    width: 100%;
    border-top: 2px solid #555;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 2px solid #555;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    text-align: left;
}

.faq-q-text {
    font-family: 'Inter', sans-serif;
    color: #E94C2E;
    font-size: 18px;
    font-weight: 500;
    padding-right: 20px;
}

.faq-icon {
    font-family: 'Inter', sans-serif;
    color: #E94C2E;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    color: #E94C2E;
    font-size: 14px;
    font-weight: 400; 
    line-height: 1.4;
    padding-bottom: 18px;
    margin: 0;
    max-width: 95%;
}

@media (max-width: 900px) {
    .faqs-container {
        flex-direction: column;
        gap: 30px;
    }
    .faqs-left {
        position: static;
        flex: auto;
    }
    .faqs-title {
        font-size: 100px;
    }
    .faqs-subtitle {
        font-size: 26px;
    }

    /* ===== Dachshund Club (Order) Mobile Styles ===== */
    .order-main {
        padding-top: 100px;
        background-position: left center;
    }
    .order-hero-title {
        font-size: clamp(50px, 14vw, 80px);
        line-height: 0.9;
        text-align: left;
        white-space: normal;
        padding: 0 20px;
        margin-top: 20px;
        letter-spacing: -0.03em;
    }
    .order-hero-title span {
        display: block;
    }
    .order-container {
        flex-direction: column;
        padding: 0;
        gap: 0;
        margin-top: 20px;
    }
    .order-right {
        order: 1;
        width: 100%;
        flex: none;
        padding: 0 20px;
        padding-bottom: 20px;
        align-items: flex-start;
    }
    .order-left {
        order: 2;
        width: 100%;
        flex: none;
        justify-content: center;
        align-items: flex-end;
    }
    .order-txt1 {
        font-size: 22px;
        max-width: 100%;
        margin-bottom: 10px;
    }
    .order-form {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 15px;
    }
    .order-inputs {
        max-width: 100%;
        border: none;
    }
    .order-submit {
        align-self: flex-start;
    }
    .order-submit img {
        height: 70px;
    }
    
    .order-sticker-1 {
        display: none;
    }
    .order-sticker-2 {
        top: 28%;
        right: 0px;
        width: 120px;
        z-index: 20;
    }
    .order-sticker-3 {
        bottom: 80px;
        right: 10px;
        width: 120px;
    }
}

/* ===== Mobile Menu Elements ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1001; /* Keep it above overlay */
}

.mobile-header-call {
    display: none;
}

/* On mobile show toggle, hide desktop */
@media (max-width: 900px) {
    .main-header {
        padding: 24px 25px; /* Push logo and hamburger towards edges */
    }
    .desktop-nav {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-actions-wrapper {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .mobile-header-call {
        display: block;
    }
    .mobile-header-call img {
        height: 28px;
        width: auto;
        display: block;
    }
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #E94C2E;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-close {
    position: absolute;
    top: 35px;
    right: 25px; /* Match the new header padding */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1002;
}

.mobile-menu-close span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #E94C2E;
    border-radius: 2px;
}

.mobile-menu-close span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-close span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-close span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

body.no-scroll {
    overflow: hidden;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #E94C2E;
    font-family: "Gravita GEO", 'Inter', sans-serif;
    font-size: clamp(24px, 6vw, 36px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-align: center;
    position: relative;
    display: inline-block;
}

.mobile-nav-links a:not(.mobile-call-btn):not(.mobile-uber-btn)::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: -6px;
    left: 0;
    background-color: #E94C2E;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-nav-links a:not(.mobile-call-btn):not(.mobile-uber-btn):hover::after,
.mobile-nav-links a.active:not(.mobile-call-btn):not(.mobile-uber-btn)::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.mobile-call-btn {
    border: 1px solid #E94C2E;
    border-radius: 50px;
    padding: 10px 25px;
    margin-top: 10px;
}

.mobile-uber-btn {
    margin-top: 10px;
}

.mobile-uber-logo {
    max-width: 130px;
    height: auto;
    display: block;
}


