@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --primary-chocolate: #301511;
    --accent-gold: #D4AF37;
    --bg-cream: #FFF9F5;
    --card-tan: #C6926B;
    --glass-white: rgba(255, 255, 255, 0.7);
    --glass-dark: rgba(48, 21, 17, 0.95);
    --soft-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --premium-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    --section-padding: 7rem 0;
    --container-width: 1200px;
    --container-padding: 0 4%;
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
        --container-padding: 0 5%;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

ul,
li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-chocolate);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

body {
    background-color: var(--bg-cream);
    color: var(--primary-chocolate);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    animation: fadeInPage 1s ease-out;
    width: 100%;
}

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

@keyframes fadeInPage {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Typography */
.font-serif,
h1,
h2,
h3,
h4,
.serif {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
}

/* Layout Containers */
.inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 968px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Glassmorphism Refinements */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #1a0b09;
    /* Deep dark chocolate background */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

nav.scrolled {
    background: #150807;
    /* Slightly darker on scroll */
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

nav .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}

nav.scrolled .nav-logo img {
    height: 60px;
}

@media (max-width: 768px) {
    .nav-logo img {
        height: 50px; /* Reduced mobile height for better fit */
    }

    nav.scrolled .nav-logo img {
        height: 45px;
    }
    
    nav {
        padding: 0.8rem 0;
    }
}

.nav-links-container {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.mobile-menu-header,
.mobile-menu-footer,
.mobile-cta {
    display: none !important;
}

.mobile-logo {
    height: 50px;
}

.dropdown {
    position: relative;
}

.dropdown > a::after {
    content: ' ▾';
    font-size: 0.8rem;
    margin-left: 5px;
    vertical-align: middle;
}

.dropdown-menu {
    
    position: absolute;
    top: 100%;
    left: 90%;
    transform: translateX(-50%) translateY(10px);
    width: 180px;
    background: #25100d;
    list-style: center;
    padding: 1rem 0;
    margin: 0;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 9999;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.dropdown:hover .dropdown-menu {
    display: block  ;
    
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 0.8rem 1.5rem;
    display: block;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.8) !important;
    letter-spacing: 1px !important;
    transition: all 0.2s ease;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    color: var(--accent-gold) !important;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 1.8rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

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

/* Mobile Nav Toggle & Hamburger */
.nav-toggle {
    display: none;
    z-index: 1001;
    cursor: pointer;
    padding: 10px;
}

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

.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: white;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    border-radius: 2px;
}

.nav-toggle.active .hamburger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active .hamburger span:nth-child(2) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 968px) {
    .nav-toggle {
        display: block;
    }

    .nav-links-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #150807; /* Rich dark chocolate */
        display: flex;
        flex-direction: column;
        transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        padding: 2rem;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-links-container.open {
        right: 0;
    }

    .mobile-menu-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .mobile-logo {
        height: 40px;
        width: auto;
    }

    .close-menu {
        font-size: 1.5rem;
        color: var(--accent-gold);
        cursor: pointer;
        font-weight: 300;
    }

    .nav-links {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 3rem 0;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.5s ease;
        transition-delay: calc(var(--i) * 0.1s);
    }

    .nav-links-container.open .nav-links li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.8rem;
        font-weight: 700;
        color: white;
        text-decoration: none;
        padding: 0.8rem 0;
        display: block;
        text-transform: none; /* Premium look with mixed case */
        letter-spacing: -0.5px;
        font-family: 'Montserrat', sans-serif;
    }

    .nav-links .dropdown > a::after {
        content: ' →';
        font-size: 1.2rem;
        color: var(--accent-gold);
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .dropdown-menu {
        position: static !important;
        display: block !important;
        background: transparent !important;
        padding: 0 0 1rem 1.5rem !important;
        border-left: 1px solid rgba(212, 175, 55, 0.2) !important;
        margin-top: 0.5rem !important;
        height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s ease;
    }

    .dropdown:hover .dropdown-menu {
        margin-left: 70px;
        height: auto;
        opacity: 1;
        margin-bottom: 1.5rem;
    }

    .dropdown-menu a {
        font-size: 1rem !important;
        font-weight: 500 !important;
        padding: 0.5rem 0 !important;
        color: rgba(255, 255, 255, 0.6) !important;
        text-transform: none !important;
    }

    .mobile-cta {
        display: block !important;
        margin-top: 2rem !important;
    }

    .mobile-btn {
        width: auto;
        padding: 1rem 2.5rem !important;
        font-size: 0.9rem !important;
    }

    .mobile-menu-footer {
        padding-top: 2rem;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
        display: flex !important;
        flex-direction: column;
        gap: 1.5rem;
    }

    .mobile-contact-info p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 0.3rem;
    }

    .mobile-socials {
        display: flex;
        gap: 1.5rem;
        color: var(--accent-gold);
        font-weight: 700;
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .nav-cta {
        display: none !important;
    }
}

/* Section Spacing & Layout */
.section {
    padding: var(--section-padding);
}

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

.section-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--primary-chocolate);
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Premium Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #B8860B 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.7s;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e5c04d 0%, var(--accent-gold) 100%);
}

.btn-primary:hover::before {
    left: 100%;
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.hero-btn {
    padding: 1.1rem 2.8rem;
    font-size: 0.9rem;
    min-width: 200px;
}

.desktop-cta-btn, .nav-cta {
    display: flex;
}

@media (max-width: 968px) {
    .desktop-cta-btn, .nav-cta {
        display: none !important;
    }
    
    .hero-btn {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* Card Enhancements */
.card-tan {
    background: var(--card-tan);
    color: white;
    padding: 4rem 3rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-tan:hover {
    transform: translateY(-12px);
    box-shadow: var(--premium-shadow);
    background: linear-gradient(145deg, #d1a586, #b88661);
}

/* Grid Layouts */
.grid-3,
.grid-4 {
    display: grid;
    gap: 3rem;
}

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

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 968px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .inner {
        padding: 0 1.5rem;
    }
}

/* Modal/Overlay Fixes */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Footer Styling */
footer {
    background-color: var(--primary-chocolate);
    color: white;
    padding: 9rem 0 3rem;
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 4.5rem;
    margin-bottom: 6rem;
}

@media (max-width: 968px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }
}

@media (max-width: 580px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

.footer-brand-logo img {
    height: 64px;
    margin-bottom: 2rem;
}

.footer-brand-desc {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 2rem;
    line-height: 1.9;
    max-width: 320px;
}

.footer-col h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1.3rem;
}

.footer-col a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.75;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--accent-gold);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    font-size: 0.95rem;
}

.footer-contact-item span:first-child {
    color: var(--accent-gold);
    opacity: 1;
}

.footer-contact-item span:last-child {
    opacity: 0.75;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 3.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
    opacity: 0.55;
    letter-spacing: 0.5px;
}

/* Brand Ecosystem Grid */
.brand-ecosystem {
    display: flex;
    overflow: hidden;
    margin-top: 4rem;
    padding: 2rem 0;
}

.brand-ecosystem img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05));
    border-radius: 12px;
}

.brand-ecosystem img:hover {
    transform: scale(1.1);
}

.footer-brand-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .brand-ecosystem {
        gap: 2rem;
    }

    .brand-ecosystem img {
        height: 60px;
    }

    .footer-brand-logo img {
        height: 70px;
    }
}

/* Utility Classes */
.bg-white {
    background: #fff;
}

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

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

/* Breadcrumb & Section Header Banner */
.breadcrumb-banner {
    position: relative;
    padding-top: 160px;
    padding-bottom: 60px;
    background: linear-gradient(rgba(48, 21, 17, 0.85), rgba(48, 21, 17, 0.95)),
        url('assets/images/56.png') center/cover no-repeat fixed;
    color: white;
    text-align: center;
}

.breadcrumb-banner .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-banner ol {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb-banner li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-banner a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.breadcrumb-banner a:hover {
    color: var(--accent-gold);
}

.breadcrumb-banner li:last-child {
    color: var(--accent-gold);
    pointer-events: none;
}

.breadcrumb-banner li::after {
    content: '❯';
    font-size: 0.6rem;
    opacity: 0.3;
}

.breadcrumb-banner li:last-child::after {
    display: none;
}

.breadcrumb-banner h1,
.breadcrumb-banner h2 {
    color: white;
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
  .contact-card {
            background: white;
            padding: clamp(1.5rem, 5vw, 3.5rem);
            border-radius: 25px;
            box-shadow: var(--soft-shadow);
        }
        .form-group { margin-bottom: 1.2rem; }
        .form-label { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #888; margin-bottom: 0.5rem; }
        .form-control { width: 100%; padding: 1rem; border: 1.5px solid #eee; border-radius: 10px; font-family: inherit; font-size: 0.9rem; transition: all 0.3s; }
        .form-control:focus { outline: none; border-color: var(--accent-gold); box-shadow: 0 0 10px rgba(212,175,55,0.1); }
        .product-card {
            background: #d1a586;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            color: #301511;
            transition: all 0.4s;
            box-shadow: var(--soft-shadow);
        }
        .product-card:hover { transform: translateY(-8px); box-shadow: var(--premium-shadow); background: #c6926b; }
        .product-card img { width: 100%; border-radius: 12px; background: white; margin-bottom: 2rem; }
        .pack-size { display: flex; flex-direction: column; gap: 8px; margin-top: 1.5rem; }
        .pack-size span { 
            background: rgba(255,255,255,0.4); padding: 10px; 
            font-size: 0.75rem; border-radius: 8px; font-weight: 700; text-transform: uppercase;
        }
        .variant-title {
            grid-column: 1 / -1;
            margin-top: 4rem;
            margin-bottom: 2rem;
            border-left: 5px solid var(--accent-gold);
            padding-left: 1.5rem;
        }
    .about-hero {
            min-height: 60vh;
            background: linear-gradient(rgba(48, 21, 17, 0.7), rgba(48, 21, 17, 0.85)), 
                        url('assets/uploads/56.png') center/cover no-repeat fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding-top: 100px;
            padding-bottom: 50px;
        }
        .about-hero h1 { font-size: clamp(3rem, 6vw, 5rem); }
        
        .stat-card {
            background: white;
            padding: 3.5rem 2rem;
            border-radius: 20px;
            box-shadow: var(--soft-shadow);
            text-align: center;
            border-bottom: 2px solid transparent;
            transition: all 0.4s;
        }
        .stat-card:hover { border-bottom-color: var(--accent-gold); transform: translateY(-5px); }
        .stat-val { font-size: 3rem; color: var(--accent-gold); font-weight: 700; margin-bottom: 0.5rem; }
        .stat-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #888; }
.breadcrumb-banner .section-eyebrow {
    color: var(--accent-gold);
    display: block;
    margin-bottom: 1rem;
}

/* Page Header Styles (to be used after breadcrumb) */
.page-header-section {
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.j-grid {
    grid-template-columns: 1fr 3fr;
}

@media (max-width: 968px) {
    .j-grid {
        grid-template-columns: 1fr !important;
    }
}

