:root {
    --bg-primary: #050505;
    --bg-secondary: #0f0f0f;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #ff9d00;
    --accent-hover: #ffb74d;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 500;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 157, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: #000;
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    padding: 0.8rem 2rem;
}

.btn-outline:hover {
    background-color: var(--text-primary);
    color: #000;
}

.btn-full {
    width: 100%;
}

/* Navigation - Ultra Premium */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 5%;
    /* Reduced padding so it takes less vertical space */
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    padding: 1.2rem 5%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    /* Subtle gold border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 4px;
    background: linear-gradient(to right, #BF953F, #FCF6BA, #AA771C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4rem;
    /* More breathing room */
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.75rem;
    /* Smaller editorial size */
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: color 0.4s ease;
    position: relative;
}

.nav-links a:hover {
    color: #D4AF37;
    /* Fade to gold */
}

/* Remove the old solid underline, replaced with glowing dot */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background-color: #D4AF37;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.nav-links a:hover::after {
    transform: translateX(-50%) scale(1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section - Ultra Premium */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Editorial Frame */
.hero::after {
    content: '';
    position: absolute;
    top: 2%;
    left: 2%;
    right: 2%;
    bottom: 2%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 5;
    animation: fadeIn 2s ease-out 1s forwards;
    opacity: 0;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Cinematic Slow Zoom */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: cinematicZoom 15s ease-out infinite alternate;
}

@keyframes cinematicZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(5, 5, 5, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 2rem;
    border-radius: 2px;
    background: transparent;
    border-top: 1px solid rgba(255, 215, 0, 0.4);
    border-bottom: 1px solid rgba(255, 215, 0, 0.4);
    color: #D4AF37;
    font-size: 0.75rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s 0.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6.5rem);
    /* Reduced to fit perfectly on laptops */
    line-height: 0.95;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
    font-weight: 400;
    text-transform: uppercase;
    animation: fadeInUp 1.2s 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.hero-title .text-gradient {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
    /* Ultra-Premium Metallic Gold Gradient */
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 500px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.8;
    text-transform: uppercase;
    animation: fadeInUp 1s 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-ctas {
    display: flex;
    gap: 2rem;
    justify-content: center;
    animation: fadeInUp 1s 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Ultra-Premium Buttons */
.btn {
    border-radius: 4px;
    /* Slight curve */
    letter-spacing: 2px;
    font-size: 0.65rem;
    /* Much smaller text size */
    font-weight: 400;
    padding: 0.6rem 1.8rem;
    /* Much smaller padding */
    border: 2px solid #D4AF37 !important;
    /* Thick Gold border */
}

.btn-glow {
    background: linear-gradient(to right, #BF953F, #AA771C);
    color: #000;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(170, 119, 28, 0.2);
    border-color: #BF953F;
    /* Match border to gradient */
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-20deg);
    transition: 0.7s;
    z-index: -1;
}

.btn-glow:hover::after {
    left: 150%;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(170, 119, 28, 0.4);
}

.btn-glass {
    background: transparent;
    color: #D4AF37;
    /* Gold text */
    position: relative;
    overflow: hidden;
}

.btn-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #D4AF37;
    /* Fill with gold on hover */
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-glass:hover {
    color: #000;
    /* Black text on gold background */
}

.btn-glass:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Minimalist Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    animation: fadeIn 2s 1.5s forwards;
}

.scroll-indicator p {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #D4AF37;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #D4AF37;
    animation: scrollDrop 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollDrop {
    0% {
        top: -100%;
    }

    50% {
        top: 100%;
    }

    100% {
        top: 100%;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Showcase Section */
.showcase {
    padding: 8rem 5%;
    background-color: var(--bg-primary);
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* Showcase Bottom CTA */
.showcase-cta {
    text-align: center;
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.showcase-cta-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.flavor-grid {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    /* Wide editorial spacing */
}

/* Hide flavors 5 to 10 by default */
.flavor-grid:not(.expanded) .flavor-card:nth-child(n+5) {
    display: none;
}

.flavor-card {
    display: flex;
    align-items: center;
    background: transparent;
    gap: 5rem;
    transition: none;
    box-shadow: none;
    position: relative;
}

.flavor-card:hover {
    transform: none;
    box-shadow: none;
}

/* Alternate sides for premium editorial look */
.flavor-card:nth-child(even) {
    flex-direction: row-reverse;
}

.flavor-media {
    flex: 0.8;
    /* Video is now visibly smaller than the content card */
    height: 450px;
    /* Reduced height further */
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.flavor-media::after {
    content: '';
    position: absolute;
    top: 2%;
    left: 2%;
    right: 2%;
    bottom: 2%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
    z-index: 2;
}

.flavor-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.flavor-info {
    flex: 1.2;
    /* Content card is now larger */
    padding: 4rem;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    text-align: left;
    position: relative;
    z-index: 5;
}

.flavor-info h3 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    background: linear-gradient(to right, #BF953F, #FCF6BA, #AA771C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.flavor-info p.flavor-desc {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.flavor-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    padding-left: 1.5rem;
}

.flavor-card:nth-child(even) .flavor-details {
    border-left: none;
    border-right: 1px solid rgba(212, 175, 55, 0.3);
    padding-left: 0;
    padding-right: 1.5rem;
}

.detail-item {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.detail-item strong {
    color: #D4AF37;
    margin-right: 0.5rem;
    font-weight: 500;
}

.mobile-only {
    display: none;
}

/* Features Section */
.features {
    padding: 6rem 5%;
    background-color: var(--bg-secondary);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-secondary);
}

/* Visual Story Section */
.visual-story {
    padding: 8rem 5%;
    background-color: var(--bg-primary);
    overflow: hidden;
}

.story-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 5rem;
}

.story-content {
    flex: 1;
    width: 50%;
}

.story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #BF953F, #FCF6BA, #AA771C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-family: var(--font-heading);
}

.story-video-overlay {
    display: none;
}

.story-content p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.story-media {
    flex: 1;
    width: 50%;
    height: 600px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

/* Contact Section */
.contact {
    padding: 8rem 5%;
    background-color: var(--bg-secondary);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.social-links a {
    color: var(--text-primary);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-5px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

footer {
    text-align: center;
    padding: 2rem;
    background: #000;
    color: var(--text-secondary);
}

/* ==========================================
   ALL FLAVORS MODAL - Premium Overlay
   ========================================== */
.all-flavors-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.all-flavors-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    z-index: 1;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9);
    width: 95%;
    max-width: 1300px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 4rem;
    transform: translateY(40px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.3) transparent;
}

.all-flavors-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #D4AF37;
    color: #000;
}

.modal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.modal-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    font-style: italic;
    font-family: var(--font-heading);
    background: linear-gradient(to right, #BF953F, #FCF6BA, #AA771C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.modal-flavor-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.modal-flavor-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.modal-video-wrap {
    height: 200px;
    overflow: hidden;
}

.modal-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.modal-flavor-card:hover .modal-video-wrap video {
    transform: scale(1.05);
}

.modal-flavor-info {
    padding: 1.2rem;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.modal-flavor-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.3rem;
}

.modal-flavor-info p {
    font-size: 0.7rem;
    color: rgba(212, 175, 55, 0.7);
    letter-spacing: 2px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Optimizations (max-width: 1024px) */
@media (max-width: 1024px) {
    .nav-links {
        gap: 2rem;
    }

    .features-container {
        gap: 2rem;
    }

    .story-media {
        height: 500px;
        /* Just slightly shorter on tablet/laptop, but keep side-by-side */
    }

    .contact-container {
        gap: 3rem;
    }
}

/* Mobile Optimizations (max-width: 768px) */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .navbar {
        padding: 0.8rem 5%;
    }

    .logo {
        font-size: 1.2rem;
        /* Much smaller for mobile */
        letter-spacing: 2px;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden off-screen */
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(25px);
        padding: 5rem 2.5rem 2.5rem 2.5rem;
        text-align: left;
        /* Premium editorial alignment */
        gap: 1.5rem;
        transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 999;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        /* Subtle gold left border */
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    }

    .mobile-menu-btn {
        display: block;
        color: #D4AF37;
        font-size: 1.1rem;
        /* Smaller icon */
        position: relative;
        z-index: 1001;
        /* Keep above sidebar so it can be closed */
    }

    /* Mobile Menu Active State - Premium Slide-in */
    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 0.85rem;
        /* Smaller font size for links */
        letter-spacing: 2px;
        /* Adjusted tracking */
        color: #fff;
        display: inline-block;
    }

    .nav-links a::after {
        display: none;
        /* Hide hover effect on mobile */
    }

    .hero-content {
        padding: 1.5rem;
        padding-top: 5rem;
        /* Added space to prevent touching the header */
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        letter-spacing: -1px;
        line-height: 1.1;
    }

    .badge {
        font-size: 0.6rem;
        letter-spacing: 3px;
        padding: 0.3rem 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }

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

    .btn {
        width: 100%;
        max-width: 140px;
        margin: 0 auto;
        padding: 0.5rem 0.8rem;
        font-size: 0.55rem;
        letter-spacing: 1.5px;
        border: 1.5px solid #D4AF37 !important;
        /* Gold border */
        border-radius: 4px;
        /* Slight curve */
    }

    .features {
        padding: 2rem 5%;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .visual-story {
        padding: 0;
        background: #050505;
    }

    .story-wrapper {
        flex-direction: column;
        gap: 0;
    }

    /* Cinematic full-width video */
    .story-media {
        display: block;
        width: 100%;
        height: 75vw;
        position: relative;
        overflow: hidden;
        flex: none;
    }

    .story-media::after {
        display: none;
    }

    .story-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Title overlaid on video */
    .story-video-overlay {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 2rem 6% 1.5rem;
        background: linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.4) 70%, transparent 100%);
        z-index: 5;
    }

    .story-label {
        display: block;
        font-size: 0.5rem;
        letter-spacing: 6px;
        text-transform: uppercase;
        color: #D4AF37;
        margin-bottom: 0.5rem;
        font-family: var(--font-body);
    }

    .story-video-overlay h2 {
        font-size: 2rem;
        font-weight: 400;
        line-height: 1.1;
        color: #fff;
        font-family: var(--font-heading);
        background: none;
        -webkit-text-fill-color: #fff;
    }

    .story-video-overlay h2 em {
        background: linear-gradient(to right, #BF953F, #FCF6BA, #AA771C);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        font-style: italic;
    }

    /* Clean editorial text below */
    .story-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 7% 3rem;
        background: #050505;
        gap: 0;
        border: none;
        width: 100%;
    }

    .story-content::before {
        display: none;
    }

    .story-content h2 {
        display: none;
    }

    .story-content p {
        font-size: 0.82rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.6);
        letter-spacing: 0.3px;
        background: none;
        border: none;
        padding: 0;
        margin-top: 0;
        max-width: 95%;
    }

    .story-divider {
        width: 30px;
        height: 1px;
        background: rgba(212, 175, 55, 0.45);
        margin: 1.2rem auto;
    }


    .section-header {
        margin-bottom: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .section-header p {
        font-size: 0.75rem;
    }

    .feature-icon {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }

    .feature-item h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .feature-item p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .contact {
        padding: 2.5rem 5%;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .contact-info p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .social-links a {
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.2rem;
    }

    .form-group input {
        padding: 0.6rem;
        font-size: 0.75rem;
    }

    .contact-form .btn {
        padding: 0.6rem 1rem;
        font-size: 0.65rem;
    }

    .flavor-grid {
        gap: 1.5rem;
        /* Tighter list */
    }

    .showcase-cta {
        margin-top: 3rem;
        gap: 1rem;
    }

    .flavor-card,
    .flavor-card:nth-child(even) {
        flex-direction: row;
        /* Horizontal layout */
        align-items: stretch;
        gap: 0;
        background: rgba(15, 15, 15, 0.6);
        border: 1px solid rgba(212, 175, 55, 0.2);
        border-radius: 6px;
        overflow: hidden;
        margin: 0;
        height: auto;
        /* Fixed cut-off by allowing natural growth */
        min-height: 160px;
    }

    .flavor-media {
        width: 130px;
        /* Adjusted square width */
        height: auto;
        /* Stretches to match text height automatically */
        flex: none;
        border-radius: 0;
        box-shadow: none;
    }

    .flavor-media::after {
        display: none;
    }

    .flavor-info {
        width: calc(100% - 130px);
        margin: 0;
        padding: 1.2rem;
        text-align: left;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .flavor-card:nth-child(even) .flavor-info {
        text-align: left;
        border: none;
        margin: 0;
    }

    .flavor-info h3 {
        font-size: 1.2rem;
        /* Slightly larger title */
        margin-bottom: 0.4rem;
    }

    .flavor-info p.flavor-desc {
        display: none;
        /* Hide long description on mobile to save space */
    }

    .flavor-details {
        border: none;
        padding: 0;
        margin-bottom: 0.8rem;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .flavor-card:nth-child(even) .flavor-details {
        border: none;
        padding: 0;
    }

    .detail-item {
        font-size: 0.7rem;
        /* Readable detail size */
    }

    .flavor-info .btn-outline {
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
        align-self: flex-start;
        margin-top: auto;
    }

    /* Make the explore/close buttons even smaller on mobile */
    #view-all-flavors-btn,
    #close-flavors-btn {
        max-width: 120px;
        padding: 0.4rem 0.6rem;
        font-size: 0.45rem;
        letter-spacing: 1px;
    }
}

/* Hide scroll indicator on shorter screens (laptops) to prevent overlapping */
@media (max-height: 850px) {
    .scroll-indicator {
        display: none !important;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed !important;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF !important;
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Full Page Overlays */
.full-page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    /* Better for mobile browsers */
    background: #050505;
    z-index: 2000;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
}

.full-page-overlay.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Overlay Nav */
.overlay-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.8), transparent);
    z-index: 2010;
    backdrop-filter: blur(10px);
}

.back-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.back-btn:hover {
    color: var(--accent-color);
}

/* Detail Hero */
.detail-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.detail-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.detail-hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    padding: 0 5%;
}

.detail-label {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.detail-hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.detail-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Detail Content Area */
.detail-content {
    background: #050505;
    position: relative;
    z-index: 10;
    padding: 6rem 5%;
}

.content-section {
    max-width: 1000px;
    margin: 0 auto;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.info-block h3 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.info-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.detail-stats {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.5rem;
    color: var(--accent-color);
    font-weight: 800;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.buy-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    margin-top: 5rem;
}

.price-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}

/* Order Page Specifics */
.order-container {
    max-width: 1200px;
    margin: 8rem auto 4rem;
    padding: 0 5%;
}

.order-header {
    text-align: center;
    margin-bottom: 4rem;
}

.order-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.order-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.premium-form label {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-form input {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 10px;
    transition: border-color 0.3s;
}

.premium-form input:focus {
    border-color: var(--accent-color);
    outline: none;
}

.order-summary-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.summary-divider {
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
    margin: 2rem 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

.summary-note {
    font-size: 0.8rem;
    color: var(--accent-color);
    opacity: 0.8;
}

/* Flavor Card Actions & Features List */
.flavor-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    flex: 1;
    text-align: center;
}

.features-list-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 5rem;
}

.feature-tag {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-color);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
    font-size: 1.1rem;
}

/* Responsive Overlays */
@media (max-width: 768px) {

    .section-grid,
    .form-row,
    .order-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    /* Overlay Navigation Fixes */
    .overlay-nav {
        padding: 0.8rem 1rem;
    }

    .back-btn {
        font-size: 1.1rem;
        padding: 0.2rem;
    }

    .overlay-nav .logo {
        font-size: 1.2rem;
    }

    .detail-hero h1 {
        font-size: 1.8rem;
    }

    .detail-tagline {
        font-size: 0.8rem;
    }

    .detail-label {
        font-size: 0.6rem;
        margin-bottom: 0.4rem;
    }

    .detail-content {
        padding: 2rem 1rem;
    }

    .info-block p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .detail-stats {
        gap: 0.8rem;
        flex-direction: column;
        padding: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .features-list-premium {
        margin-bottom: 1.5rem;
        gap: 0.4rem;
    }

    .feature-tag {
        padding: 0.3rem 0.6rem;
        font-size: 0.55rem;
    }

    .buy-section {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
        padding: 0.8rem;
        margin-top: 1.5rem;
    }

    .price-value {
        font-size: 1.2rem;
    }

    .price-label {
        font-size: 0.6rem;
    }

    /* Mobile Order Page Extra Compact Sizes */
    .order-container {
        margin-top: 0 !important;
        padding-top: 7rem !important;
        margin-bottom: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .order-header {
        margin-bottom: 1.5rem;
    }

    .order-header h1 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .order-header p {
        font-size: 0.75rem;
    }

    .premium-form {
        gap: 0.8rem;
    }

    .premium-form label {
        font-size: 0.65rem;
        margin-bottom: 0.2rem;
    }

    .premium-form input {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 6px;
    }

    .order-summary-card {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .summary-item {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .summary-divider {
        margin: 0.8rem 0;
    }

    .summary-total {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .summary-note {
        font-size: 0.65rem;
    }

    .btn-full {
        padding: 0.5rem !important;
        font-size: 0.8rem !important;
        border-radius: 6px !important;
        margin-top: 0.5rem;
        height: auto !important;
    }

    /* Fix Flavor Card Buttons getting cut off */
    .flavor-actions {
        margin-top: auto !important;
        /* Push to bottom naturally */
        padding-top: 0.5rem;
        width: 100%;
        gap: 0.4rem;
    }

    .flavor-info .btn-outline {
        margin-top: 0 !important;
    }

    .flavor-info .btn-sm {
        padding: 0.4rem 0.2rem !important;
        font-size: 0.65rem !important;
        border-radius: 4px;
    }
}