@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Outfit:wght@300;400;600;700;900&display=swap');

:root {
    --bg-dark: #f2f2eb;
    --bg-accent: #e9e9df;
    --primary: #c54132;
    --accent-gold: #d4af37;
    --accent-red: #8b0000;
    --accent-olive: #718244;
    --text-white: #1a1a1a;
    --text-muted: #555555;
    --glass: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.08);
    --transition-smooth: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease, background 0.3s ease, border 0.3s ease, padding 0.3s ease;

    /* New Premium Palette */
    --premium-bg: #2e2b29;
    --premium-text: #f8f8f8;
    --premium-muted: #dbdbdb;
    --gold-glow: rgba(212, 175, 55, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo {
    font-family: 'Bricolage Grotesque', sans-serif;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-content {
    display: none;
}

.morph-container {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbital-ring {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 170px;
    height: 170px;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.ring-track {
    fill: none;
    stroke: #2D2926;
    stroke-width: 1;
    opacity: 0.05;
}

.ring-spinner {
    fill: none;
    stroke: var(--accent-gold);
    stroke-width: 1.5;
    stroke-dasharray: 200 150;
    stroke-linecap: round;
}

.brand-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.06));
}

.initials-overlay {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.initial {
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFFFFF;
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
}

.initial.active {
    opacity: 1;
    transform: scale(1);
}

.initial2 {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
}

.initial2.active {
    opacity: 1;
    transform: scale(1);
}

.initial3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #FFFFFF;
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
}

.initial3.active {
    opacity: 1;
    transform: scale(1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
    border-bottom: 1px solid transparent;
    /* Maintain height consistency */
}

.navbar.scrolled {
    background: #c54132;
    backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.main-logo-svg {
    transition: transform 0.3s ease;
}

.logo-house,
.logo-text {
    transition: fill 0.4s ease;
}

.logo-house {
    fill: #c14031;
}

.logo-text {
    fill: #ffffff;
}

.navbar.scrolled .logo-house,
.navbar.scrolled .logo-text {
    fill: #ffffff !important;
}

.logo:hover .main-logo-svg {
    transform: scale(1.05);
}

.nav-links a {
    color: #e9e9df;
    text-decoration: none;
    margin: 0 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1c1c1c;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}


.search-box {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 8px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    min-width: 340px;
    justify-content: space-between;

}

.search-box input {
    background: #dbdbdb00;
    border: none;
    color: #4f4f4f;
    outline: none;
    padding-left: 10px;
}

input::placeholder {
    color: #000000;
    opacity: 1;
    /* Necesario para Firefox, que reduce la opacidad por defecto */
}

.search-icon {
    width: 18px;
    height: 18px;
    fill: var(--text-muted);
}

/* Cart Shopping Styles */
.cart-container {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    /* Increased from 45px */
    height: 52px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    transition: var(--transition-smooth);
    margin-left: 10px;
}

.cart-container:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--accent-gold);
}

.cart-icon {
    width: 26px;
    /* Increased from 22px */
    height: 26px;
    fill: #ffffff;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #1a1a1a;
    /* Dark background for extreme contrast */
    color: var(--accent-gold);
    /* Gold text */
    font-size: 0.75rem;
    font-weight: 800;
    min-width: 22px;
    height: 22px;
    padding: 0 4px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--accent-gold);
    transform: scale(0);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cart-badge.active {
    transform: scale(1);
    opacity: 1;
}

/* Animations for "Add to Cart" Feedback */
.cart-bump {
    animation: cartBump 0.5s ease;
}

.badge-pop {
    animation: badgePop 0.5s ease;
}

@keyframes cartBump {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.3) rotate(-10deg);
    }

    50% {
        transform: scale(1.1) rotate(5deg);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes badgePop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.6);
    }

    100% {
        transform: scale(1);
    }
}

/* Cart Shopping Styles Removed Reference */

/* Top Marquee */
.top-marquee {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: #0a0a0a;
    z-index: 1100;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-item {
    padding: 0 40px;
    color: #e9e9df;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.marquee-item.attention {
    color: var(--primary);
    font-weight: 800;
    position: relative;
    animation: attention-glow 2s ease-in-out infinite;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes attention-glow {

    0%,
    100% {
        text-shadow: 0 0 0px transparent;
        filter: brightness(1);
    }

    50% {
        text-shadow: 0 0 10px rgba(197, 65, 50, 0.5);
        filter: brightness(1.3);
    }
}

/* Theme Toggle removed */

/* Cart Notification Alert */
.cart-notification {
    position: fixed;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    background: #c54132;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(197, 65, 50, 0.4);
    pointer-events: none;
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    white-space: nowrap;
}

.cart-notification.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cart-notification .total-amount {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 800;
}

/* Promo Popup Elegant Styles */
.promo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding: 20px;
}

.promo-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.promo-popup-container {
    position: relative;
    max-width: 550px;
    width: 100%;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.85) translateY(30px);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 80px;
}

.promo-popup-overlay.active .promo-popup-container {
    transform: scale(1) translateY(0);
}

.promo-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.promo-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.promo-close:hover {
    background: var(--primary);
    color: #fff;
    transform: rotate(90deg) scale(1.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 40px;
    background: url('img/hero-senderos.jpg') no-repeat center center/cover;
    background-position-x: 80% !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at right, transparent 0%, #131313 90%);
    z-index: 1;
}

/* Decorative Geo-Line Styles */
.hero-geo-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Above background, below hero-content (z-index 2) */
    pointer-events: none;
    overflow: hidden;
}

.hero-svg-line {
    width: 100%;
    height: 100%;
    opacity: 0.3;
    filter: drop-shadow(0 0 10px rgba(193, 64, 49, 0.3));
}

.geo-path {
    stroke: #c14031;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-tag {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: block;
}

.hero h1 {
    font-size: 6rem;
    font-weight: 800;
    /* Bricolage Grotesque looks great at 800 */
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: -2px;
    COLOR: WHITE;
}

.hero h1 .accent {
    color: transparent;
    -webkit-text-stroke: 1.5px #fff;
    text-shadow: none;
}

.hero-p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-5px);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Scroll indicator */
.hero-scroll-msg {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.mouse {
    width: 20px;
    height: 35px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

.main-logo {
    height: 45px;
    width: auto;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    /* Colorize to #c54132 (primary red) */
    filter: invert(31%) sepia(97%) saturate(4637%) hue-rotate(338deg) brightness(75%) contrast(100%);
}

/* Category Sections & Sliders */
.category-section {
    padding: 0 0 60px 0;
    position: relative;
}

/* Puntera de Góndola - Premium Header */
.gondola-header {
    width: calc(100% - 80px);
    margin: 60px auto 0 auto;
    height: 280px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.gondola-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 15s linear;
    z-index: 1;
}

.gondola-header:hover::before {
    transform: scale(1.15);
}

.gondola-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.gondola-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 30px 60px;
    background: rgba(255, 255, 255, 0.05);
    /* Ultra subtle white for glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.gondola-header:hover .gondola-header-content {
    transform: scale(1.05);
}

.gondola-header h2 {
    font-size: 3.2rem;
    color: #fff;
    margin: 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.gondola-header .section-tag {
    display: block;
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0px 30px;
}

.section-header h2 {
    font-size: 2.3rem;
}

.section-header span {
    display: none !important;
}

.slider-wrapper {
    position: relative;
    padding: 0 40px;
}

.slider-container {
    width: 100%;
    overflow-x: auto;
    padding: 10px 10px 50px 10px;
    display: flex;
    gap: 25px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

/* Scroll Arrows (Airbnb style) */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    color: #000;
}

.slider-arrow:hover {
    scale: 1.1;
    background: var(--primary);
}

.arrow-left {
    left: 15px;
}

.arrow-right {
    right: 15px;
}

/* Level God Product Card - Optimized for Conversion */
.product-card {
    min-width: 240px;
    /* Slightly smaller for better scanning */
    max-width: 240px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.card-img-wrapper {
    width: 100%;
    height: 190px;
    /* Adjusted height */
    overflow: hidden;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(197, 65, 50, 0.12);
    border-color: rgba(197, 65, 50, 0.3);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.card-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
    display: block;
    opacity: 0.7;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    height: 2.7rem;
    color: #1a1a1a;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary);
}

.btn-buy {
    width: 44px;
    height: 44px;
    background: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-buy:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-buy svg {
    width: 22px;
    height: 22px;
}

/* Floating Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.cta-inner {
    display: block;
    background: var(--primary);
    color: #000;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.cta-inner:hover {
    background: #fff;
    transform: translateY(-5px);
}

/* Footer Map */
.footer-map {
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
}

/* Why Choose Us Redesign */
.why-choose-us {
    padding: 120px 40px;
    background: var(--premium-bg);
    position: relative;
    overflow: hidden;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
}

#category-sections {
    padding-top: 96px;
}

.why-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-subtitle {
    color: var(--accent-olive);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

.why-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--premium-text);
}

.why-signature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.why-signature-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 20px;
}

.why-signature-item:hover {
    transform: translateX(10px);
    transition: transform 0.3s ease;
}

.why-signature-icon {
    font-size: 2.2rem;
    color: var(--accent-olive);
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: NONE;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.why-signature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #718244;
}

.why-signature-content p {
    color: var(--premium-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Hero background adjust for parallax */
.hero {
    background-size: 110%;
    /* Extra size for parallax movement */
    background-position: 50% 50%;
}

/* FAQ Section */
/* Góndola Exclusiva Section */
.gondola-section {
    padding: 60px 20px;
    background: var(--premium-bg);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 300px;
    margin: 50px auto;
    /* Reduced initial height */
}

.gondola-section.expanded {
    min-height: auto;
    padding: 50px 20px;
    /* Reduced from 80px */
}

.gondola-bg-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    filter: blur(2px);
    opacity: 0.3;
    /* Darker initial blur so it's less intrusive */
    transition: all 0.8s ease;
    padding: 0 10px;
    height: 230px;
    /* Constrain height while locked */
    overflow: hidden;
}

.gondola-bg-container.revealed {
    filter: blur(0);
    opacity: 1;
    height: auto;
    /* Expand full height */
    overflow: visible;
}

.gondola-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
}

.gondola-form input::placeholder {
    color: #7b7b7b;
}


@media (min-width: 768px) {
    .gondola-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }


}

@media (min-width: 1024px) {
    .gondola-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

.gondola-glass-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.02);
    z-index: 10;
    transition: all 0.5s ease;
}

.gondola-content {
    position: relative;
    z-index: 2;
}

.gondola-title {
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 10px;
    letter-spacing: 1px;
    line-height: 1.1;
}

.gondola-desc {
    color: var(--premium-text);
    font-size: 1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.gondola-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.gondola-form input {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 12px 20px;
    border-radius: 50px;
    color: var(--premium-text);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.gondola-form input:focus {
    border-color: var(--accent-gold);
}

.gondola-offers-title {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

/* Specific Offer Card adjustments */
.offer-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: white;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(193, 64, 49, 0.4);
}

@media (max-width: 768px) {
    .gondola-section {
        padding: 40px 0;
    }

    .gondola-form {
        flex-direction: column;
    }

    .gondola-form .btn {
        width: 100%;
    }

    .gondola-glass-card {
        padding: 30px 20px;
    }

    .gondola-header-content {
        padding: 10px 30px;
    }

    .slider-wrapper {
        padding: 0 !important;
        width: 100% !important;
    }

    .gondola-header {
        width: calc(100% - 40px) !important;
        margin: 0 auto !important;
    }
}

.faq-section {
    padding: 60px 40px;
    /* Reduced from 100px */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--glass);
}

.faq-question {
    width: 100%;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 25px 25px;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-icon {
    transition: transform 0.5s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Footer Improvements */
.footer-map iframe {
    filter: invert(90%) hue-rotate(180deg);
}

/* Premium Access Corner */
.premium-corner-container {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 2000;
    pointer-events: none;
}

.premium-trigger {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: auto;
    height: auto;
    background: #000;
    border: 1.5px solid var(--accent-gold);
    border-left: none;
    padding: 12px 25px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 10px 5px 30px rgba(0, 0, 0, 0.4);
    z-index: 2001;
    animation: borderPulse 3s infinite ease-in-out;
    transform: translateX(-150%);
    opacity: 0;
    pointer-events: none;
}

.premium-trigger.visible {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

@keyframes borderPulse {
    0% {
        border-color: var(--accent-gold);
        box-shadow: 10px 5px 30px rgba(0, 0, 0, 0.4);
    }

    50% {
        border-color: #fff;
        box-shadow: 10px 5px 35px var(--gold-glow);
    }

    100% {
        border-color: var(--accent-gold);
        box-shadow: 10px 5px 30px rgba(0, 0, 0, 0.4);
    }
}

.premium-trigger::after {
    display: none;
    /* Removed the diagonal line */
}

.premium-trigger:hover {
    padding-left: 35px;
    background: #0a0a0a;
    box-shadow: 15px 5px 40px rgba(212, 175, 55, 0.2);
}

.premium-trigger span {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
    white-space: nowrap;
}

/* Optional: Add a small crown or gift icon if needed, but keeping it clean for now */

/* Backdrop Overlay & Blur */
.premium-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.premium-overlay.active {
    opacity: 1;
    visibility: visible;
}

.content-wrapper {
    transition: filter 0.5s ease;
}

.content-wrapper.blurred {
    filter: blur(8px);
}

.premium-card {
    position: absolute;
    bottom: 108px;
    left: 40px;
    width: 320px;
    background: rgba(46, 43, 41, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    padding: 30px;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px var(--gold-glow);
}

.premium-card.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.premium-card h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.premium-card p {
    color: #dbdbdb;
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.premium-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 12px 20px;
    border-radius: 50px;
    color: #fff;
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s;
}

.premium-input:focus {
    border-color: var(--accent-gold);
}

.btn-premium {
    background: linear-gradient(90deg, #d4af37, #f1c40f, #d4af37);
    background-size: 200% auto;
    color: #2e2b29;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.5s;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--gold-glow);
}

.info-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.info-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.close-premium {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--accent-gold);
    cursor: pointer;
    font-size: 1.2rem;
}

/* Footer Section Restoration */
.footer {
    background: #f8f8f8;
    padding: 100px 40px;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 5;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 60px;
    align-items: flex-start;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-logo-svg {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo-svg:hover {
    transform: scale(1.05);
}

.footer-contact h4 {
    color: var(--primary);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-contact p {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Footer Logo Coloring for Light Background */
.footer-logo-svg .logo-text {
    fill: #1a1a1a !important;
}

.footer-logo-svg .logo-house {
    fill: #c14031 !important;
}

/* Responsive Footer Improvements */
@media (max-width: 480px) {
    .premium-trigger {
        padding: 10px 15px;
    }

    .premium-trigger span {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .premium-card {
        width: 280px;
        left: 10px;
    }
}


.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Reveal Animations */
.reveal-text {
    overflow: hidden;
}

/* Modal Base Styles (Desktop) */
.modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    background: var(--premium-bg);
    z-index: 3000;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.modal.active {
    transform: translateX(0);
}

.modal-content {
    padding: 30px;
    height: 100%;
    overflow-y: auto;
    position: relative;
    color: var(--premium-text);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: var(--accent-gold);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-modal:hover {
    transform: scale(1.1);
}

/* Mobile Elements Base (hidden on desktop) */
.mobile-bottom-nav {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

/* Mobile & Tablet Responsiveness */
/* Cart Modal Styles */
.modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    background: var(--premium-bg);
    z-index: 3000;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.modal.active {
    transform: translateX(0);
}

.modal-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    color: var(--premium-text);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: var(--accent-gold);
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.close-modal:hover {
    transform: scale(1.1);
}

#modal-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 30px;
}

.cart-header h2 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    padding-right: 5px;
}

.cart-items::-webkit-scrollbar {
    width: 5px;
}

.cart-items::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 5px;
}

.cart-item {
    display: grid;
    grid-template-columns: 45px 1fr auto;
    gap: 10px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cart-item-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cart-item-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--accent-gold);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Upsell Section inside Cart */
.cart-upsell-container {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(212, 175, 55, 0.3);
}

.upsell-heading {
    font-size: 0.8rem;
    color: var(--accent-gold);
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.upsell-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.upsell-card {
    display: grid;
    grid-template-columns: 50px 1fr 34px;
    gap: 10px;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.upsell-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.upsell-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.upsell-title {
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.upsell-price {
    font-size: 0.85rem;
    color: var(--accent-gold);
}

.btn-upsell-add {
    width: 34px;
    height: 34px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-upsell-add svg {
    width: 16px;
    height: 16px;
}

.qty-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s ease;
}

.qty-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.cart-item-qty {
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 15px;
    text-align: center;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}


/* Weight Selector UI */
.weight-selector-container {
    margin-top: 10px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.02);
}

.weight-label {
    display: block;
    font-size: 0.70rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 700;
}

.weight-select-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.weight-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.9rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    padding: 4px 25px 4px 0;
}

.weight-select option {
    background: #fff;
    color: #1a1a1a;
}

.select-icon {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    pointer-events: none;
    font-size: 0.8rem;
}

/* Mobile Elements Base (hidden on desktop) */
.mobile-bottom-nav {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none !important;
    }

    .nav-container {
        justify-content: center;
    }

    .hero h1 {
        font-size: 4.5rem !important;
        line-height: 0.9 !important;
        margin-bottom: 20px !important;
    }

    .hero-tag {
        font-size: 0.6rem !important;
    }

    .hero-cta {
        flex-direction: column !important;
        width: 100% !important;
        gap: 15px !important;
    }

    .hero-cta .btn {
        width: 100% !important;
        justify-content: center !important;
    }

    .hero {
        height: auto;
        min-height: 80vh;
        padding-top: 130px;
        padding-bottom: 90px;
        background-position: center;
        background-size: cover;
    }

    .category-section {
        padding: 10px 0;
    }

    .section-header {
        margin-bottom: 15px;
        padding: 0 20px;
    }

    .arrow-left {
        display: none;
    }

    .arrow-right {
        display: none;
    }

    .gondola-header h2 {
        font-size: 1.8rem !important;
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: rgba(197, 65, 50, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 2500;
        justify-content: space-around;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: env(safe-area-inset-bottom);
        /* Hidden by default, appears on scroll */
        transform: translateY(100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .mobile-bottom-nav.visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu-btn,
    .mobile-store-btn {
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 10px;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-cart-btn {
        margin-left: 0;
        border-color: rgba(255, 255, 255, 0.3);
    }

    .mobile-menu-overlay {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--premium-bg);
        z-index: 2600;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .mobile-menu-overlay.active {
        transform: translateY(0);
    }

    .mobile-menu-footer {
        position: absolute;
        bottom: 70px;
        left: 50%;
        transform: translateX(-50%);
    }

    .close-mobile-menu {
        font-size: 2.5rem;
        color: var(--accent-gold);
        cursor: pointer;
    }

    .mobile-menu-links {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .mobile-link {
        color: white;
        font-size: 1.5rem;
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .mobile-link:active {
        color: var(--accent-gold);
    }

    .modal {
        top: auto;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 85vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    }

    .modal.active {
        transform: translateY(0);
    }

    .slider-container {
        display: grid;
        grid-template-rows: repeat(2, auto);
        grid-auto-flow: column;
        gap: 15px;
        padding: 20px 10px 40px 10px;
        scroll-padding: 0 10px;
    }

    .product-card {
        min-width: 160px;
        max-width: 160px;
    }

    .card-img-wrapper {
        height: 130px;
    }

    .card-content {
        padding: 10px;
    }

    .product-title {
        font-size: 0.9rem;
        height: 2.2rem;
        margin-bottom: 8px;
    }

    .product-price {
        font-size: 1rem;
    }

    .btn-buy {
        width: 32px;
        height: 32px;
    }

    .btn-buy svg {
        width: 18px;
        height: 18px;
    }

    .premium-corner-container {
        bottom: 80px;
    }

}

/* --- Premium Product Drawer (index.html) --- */

/* Hide old weight selector in index.html */
body:not(.level-god) .weight-selector-container {
    display: none !important;
}

.product-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: none;
    align-items: flex-end;
    overflow: hidden;
}

.product-drawer.active {
    display: flex;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(162 162 162 / 60%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-drawer.active .drawer-overlay {
    opacity: 1;
}

.drawer-content {
    position: relative;
    width: 100%;
    height: 92vh;
    background: #ffffff;
    border-radius: 30px 30px 0 0;
    padding: 25px;
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.15);
}

.product-drawer.active .drawer-content {
    transform: translateY(0);
}

.drawer-handle {
    width: 45px;
    height: 5px;
    background: #e5e5e5;
    border-radius: 10px;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.close-drawer {
    position: absolute;
    top: 20px;
    right: 25px;
    background: #f0f0f0;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    transition: all 0.3s ease;
    z-index: 5;
}

.close-drawer:hover {
    background: var(--primary);
    color: #fff;
}

.drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding-bottom: 14px;
}

.drawer-body::-webkit-scrollbar {
    display: none;
}

.drawer-product-header {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.drawer-img-container {
    width: 110px;
    height: 110px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.drawer-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drawer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.drawer-category {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.drawer-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
}

.drawer-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    background: #fcfcfc;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
}

.drawer-section-title {
    font-size: 1rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.drawer-variants {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 15px 0px;
}

.variant-btn {
    background: #f5f5f5;
    border: 2px solid transparent;
    padding: 15px 10px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.variant-card {
    background: #fcfcfc;
    border: 1.5px solid #eee;
    border-radius: 24px;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.variant-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 10px 30px rgba(197, 65, 50, 0.08);
}

.variant-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.variant-info .weight {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
}

.variant-info .price {
    font-size: 0.95rem;
    font-weight: 600;
    color: #888;
}

.btn-add-variant {
    background: var(--primary);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(197, 65, 50, 0.2);
}

.variant-card:hover .btn-add-variant {
    transform: rotate(90deg) scale(1.1);
}

.btn-add-variant svg {
    width: 24px;
    height: 24px;
}

.drawer-footer {
    display: none;
}


@media (min-width: 1024px) {
    .drawer-content {
        max-width: 540px;
        height: 100%;
        min-height: 600px;
        max-height: 99%;
        margin: 0 auto;
        border-radius: 30px 30px 0 0;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 100%);
        box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
    }

    .product-drawer.active .drawer-content {
        transform: translate(-52%, 1%);
    }

    .product-drawer {
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {

    /* Top Navbar Adjustments */
    .nav-links,
    .nav-actions {
        display: none !important;
    }

    .nav-container {
        justify-content: center;
        /* Center logo */
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    /* Hero Adjustments */
    .hero {
        height: auto;
        min-height: 85vh;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    /* Mobile Bottom Nav */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: rgba(197, 65, 50, 0.95);
        /* var(--primary) with opacity */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 2500;
        justify-content: space-around;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: env(safe-area-inset-bottom);
        /* Hidden by default, appears on scroll */
        transform: translateY(100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .mobile-bottom-nav.visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu-btn {
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 10px;
    }

    .mobile-cart-btn {
        margin-left: 0;
        border-color: rgba(255, 255, 255, 0.3);
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--premium-bg);
        z-index: 2600;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .mobile-menu-overlay.active {
        transform: translateY(0);
    }

    .mobile-menu-header {
        position: absolute;
        top: 20px;
        right: 25px;
    }

    .close-mobile-menu {
        font-size: 2.5rem;
        color: var(--accent-gold);
        cursor: pointer;
    }

    .mobile-menu-links {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .mobile-link {
        color: white;
        font-size: 1.5rem;
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .mobile-link:active {
        color: var(--accent-gold);
    }

    /* Cart Modal Adjustments (slide from bottom) */
    .modal {
        top: auto;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 85vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    }

    .modal.active {
        transform: translateY(0);
    }

    /* Product Cards Compact Mobile App Format */
    .product-card {
        min-width: 160px;
        max-width: 160px;
    }

    .card-img-wrapper {
        height: 130px;
    }

    .card-content {
        padding: 10px;
    }

    .product-title {
        font-size: 0.9rem;
        height: 2.2rem;
        margin-bottom: 8px;
    }

    .product-price {
        font-size: 1rem;
    }

    .btn-buy {
        width: 32px;
        height: 32px;
    }

    .btn-buy svg {
        width: 18px;
        height: 18px;
    }

    /* Move premium trigger so it isn't blocked by bottom nav */
    .premium-corner-container {
        bottom: 80px;
    }

    .premium-trigger {
        bottom: 0;
    }

    .premium-card {
        bottom: 80px;
    }
}

/* Premium Parrilla Section Styles */
.parrilla-section {
    padding: 0 0 60px 0;
    position: relative;
    border-bottom: none !important; /* Override standard category border */
}

.gondola-header {
    width: calc(100% - 80px);
    margin: 60px auto 0 auto;
    height: 280px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.gondola-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 15s linear;
    z-index: 1;
}

.gondola-header:hover::before {
    transform: scale(1.15);
}

.gondola-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.gondola-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 30px 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.gondola-header:hover .gondola-header-content {
    transform: scale(1.05);
}

.gondola-header h2 {
    font-size: 3.2rem;
    color: #fff;
    margin: 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.gondola-header .section-tag {
    display: block;
    color: #c54132; /* Primary red for consistency */
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Specific background for Parrilla */
#para-lucirse-parrilla .gondola-header::before {
    background-image: url('img/parrilla_lucirse_bg_1773750835529.png');
}

@media (max-width: 768px) {
    .gondola-header {
        width: calc(100% - 30px);
        height: 200px;
        margin: 30px auto 0 auto;
    }
    .gondola-header h2 {
        font-size: 2rem;
    }
    .gondola-header-content {
        padding: 20px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   CHECKOUT OVERLAY  (formulario blanco estilo Shopify)
   ═══════════════════════════════════════════════════════════════ */

.co-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 400px;   /* deja espacio al carrito (400px) */
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2998;
    display: none;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 40px 24px 60px;
    backdrop-filter: blur(2px);
}

.co-overlay.active {
    display: flex;
    animation: coFadeIn 0.3s ease;
}

@keyframes coFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.co-panel {
    background: #ffffff;
    border-radius: 14px;
    width: 100%;
    max-width: 520px;
    padding: 40px 36px 48px;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    animation: coPanelIn 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif;
}

@keyframes coPanelIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Botón cerrar */
.co-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 22px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s;
}
.co-close:hover { color: #1a1a1a; }

/* Títulos de sección */
.co-section-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 18px;
    letter-spacing: -0.2px;
}

/* Grid de campos */
.co-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Campo individual */
.co-field {
    position: relative;
    margin-bottom: 12px;
}

.co-field input,
.co-field select {
    width: 100%;
    padding: 14px 14px 14px 14px;
    border: 1.5px solid #d8d8d3;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #1a1a1a;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.co-field input::placeholder { color: #aaa; }

.co-field input:focus,
.co-field select:focus {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.08);
}

.co-field input.co-error,
.co-field select.co-error {
    border-color: #c54132;
}

/* Flecha select */
.co-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.co-float-label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #aaa;
    pointer-events: none;
    transition: all 0.18s ease;
    background: white;
    padding: 0 3px;
}

.co-field input:not(:placeholder-shown) ~ .co-float-label,
.co-field input:focus ~ .co-float-label {
    top: 0;
    font-size: 11px;
    color: #555;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.co-err {
    display: block;
    font-size: 12px;
    color: #c54132;
    margin-top: 4px;
    min-height: 16px;
}

/* Checkbox */
.co-check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #444;
    margin-bottom: 4px;
    user-select: none;
}
.co-check-row input[type="checkbox"] { display: none; }
.co-check-box {
    width: 18px;
    height: 18px;
    border: 1.5px solid #d8d8d3;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.18s;
}
.co-check-row input:checked + .co-check-box {
    background: #1a1a1a;
    border-color: #1a1a1a;
}
.co-check-row input:checked + .co-check-box::after {
    content: '';
    display: block;
    width: 9px;
    height: 5px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg) translateY(-1px);
}

/* Opciones de método de entrega */
.co-method-opts {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1.5px solid #d8d8d3;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.co-method-opt {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    cursor: pointer;
    background: white;
    transition: background 0.18s;
    border-bottom: 1px solid #d8d8d3;
    position: relative;
}
.co-method-opt:last-child { border-bottom: none; }
.co-method-opt:hover { background: #f8f8f5; }
.co-method-opt.selected { background: #f2f2eb; }

.co-method-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ccc;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.18s;
}
.co-method-opt.selected .co-method-radio { border-color: #1a1a1a; }
.co-method-opt.selected .co-method-radio::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #1a1a1a;
}

.co-method-ico {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #e9e9df;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #555;
    flex-shrink: 0;
    transition: all 0.18s;
}
.co-method-opt.selected .co-method-ico {
    background: rgba(197, 65, 50, 0.1);
    color: #c54132;
}

.co-method-txt {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.co-method-txt strong { font-size: 14px; font-weight: 700; color: #1a1a1a; }
.co-method-txt span   { font-size: 12px; color: #777; }

.co-method-badge {
    font-size: 11px;
    font-weight: 700;
    color: #718244;
    background: rgba(113, 130, 68, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Campos de dirección */
.co-horario-field { margin-bottom: 12px; }
.co-horario-label {
    font-size: 12px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.co-horario-opts {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.co-horario-opt {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1.5px solid #d8d8d3;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    transition: all 0.18s;
    user-select: none;
}
.co-horario-opt input[type="radio"] { display: none; }
.co-horario-opt:has(input:checked) {
    border-color: #1a1a1a;
    background: #f2f2eb;
    color: #1a1a1a;
}

/* Error de pago */
.co-pay-error {
    background: rgba(197, 65, 50, 0.06);
    border: 1px solid rgba(197, 65, 50, 0.2);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    color: #c54132;
    margin-bottom: 16px;
}

/* Botón pagar */
.co-btn-pay {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: #c54132;
    color: white;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    font-weight: 800;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    letter-spacing: 0.3px;
    margin-top: 24px;
}
.co-btn-pay:hover  { background: #a8362a; transform: translateY(-1px); }
.co-btn-pay:active { transform: translateY(0); }
.co-btn-pay:disabled { background: #ccc; cursor: not-allowed; transform: none; }

.co-pay-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #999;
    margin-top: 12px;
    text-align: center;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    /* En móvil el carrito cubre toda la pantalla desde abajo;
       el overlay ocupa todo */
    .co-overlay {
        right: 0;
        padding: 20px 16px 40px;
        align-items: flex-end;
    }
    .co-panel {
        padding: 28px 20px 36px;
        border-radius: 16px 16px 0 0;
        max-width: 100%;
        margin: 0;
    }
}

@media (max-width: 640px) {
    .co-row-2 { grid-template-columns: 1fr; }
    .co-section-title { font-size: 18px; }
    .co-horario-opts { flex-direction: column; }
}