/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0F0F0F;
    color: #e0e0e0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: #C5A059;
    color: #0F0F0F;
}

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

::-webkit-scrollbar-track {
    background: #0F0F0F;
}

::-webkit-scrollbar-thumb {
    background: #C5A059;
    border-radius: 3px;
}

/* ===== TYPOGRAPHY ===== */
.serif {
    font-family: 'Cormorant Garamond', serif;
}

.sans {
    font-family: 'Montserrat', sans-serif;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    background: rgba(15, 15, 15, 0.95);
    transition: background 0.6s ease, padding 0.4s ease, backdrop-filter 0.6s ease;
}

.nav.scrolled {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 50px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 12px;
    color: #C5A059;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #999;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C5A059;
    transition: width 0.4s ease;
}

.nav-links a:hover {
    color: #C5A059;
}

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

.nav-bag {
    width: 22px;
    height: 22px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.nav-bag:hover {
    opacity: 1;
}

.nav-bag svg {
    width: 100%;
    height: 100%;
}

/* Mobile menu */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: #C5A059;
    transition: all 0.3s ease;
}

/* ===== SPLASH / LANDING ===== */
.splash {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.splash-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.splash-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(197, 160, 89, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.splash-dark-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.splash-mist {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(197, 160, 89, 0.03) 0%, transparent 70%);
    animation: mistPulse 8s ease-in-out infinite;
}

@keyframes mistPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.splash-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

.splash-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 0;
}

.splash-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 300;
    letter-spacing: clamp(8px, 1.5vw, 20px);
    color: #E5C080;
    line-height: 0.9;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 1.5s ease forwards 0.3s;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.splash-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(10px, 1.2vw, 14px);
    font-weight: 400;
    letter-spacing: clamp(6px, 1vw, 12px);
    color: #BBB;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp 1.2s ease forwards 0.9s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.splash-divider {
    width: 60px;
    height: 1px;
    background: #C5A059;
    margin: 40px auto 0;
    opacity: 0;
    animation: revealUp 1s ease forwards 1.2s;
}

.splash-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: revealUp 1s ease forwards 1.6s;
}

.splash-scroll span {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 4px;
    color: #555;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    position: relative;
    overflow: hidden;
    background: rgba(197, 160, 89, 0.15);
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 1px;
    height: 40px;
    background: #C5A059;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        top: -40px;
    }

    100% {
        top: 40px;
    }
}

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

/* ===== COLLECTION SECTION ===== */
.collection {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-bottom: 80px;
}

.collection-header {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.collection-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 8px;
    color: rgba(197, 160, 89, 0.5);
    text-transform: uppercase;
}

.swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.swiper-slide-active {
    overflow-y: auto;
}

.slide-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C5A059' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(40px, 6vw, 100px);
    max-width: 1300px;
    padding: 60px 40px 100px;
    width: 100%;
}

.slide-visual {
    flex: 0 0 auto;
    position: relative;
}

.label-container {
    position: relative;
    width: clamp(140px, 14vw, 220px);
    aspect-ratio: 3/5;
    perspective: 1000px;
}

.label-card {
    width: 100%;
    height: 100%;
    position: relative;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 12%;
    overflow: hidden;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.label-card:hover {
    transform: rotateY(-5deg) rotateX(2deg);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(197, 160, 89, 0.1);
}

.label-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #C5A059;
}

.label-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #C5A059;
}

.label-inner-border {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    pointer-events: none;
}

.label-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 300;
    letter-spacing: 8px;
    color: #C5A059;
    text-transform: uppercase;
    margin-bottom: 8%;
}

.label-divider-top {
    width: 40px;
    height: 1px;
    background: #C5A059;
    margin-bottom: 10%;
}

.label-artwork {
    width: 60%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.label-artwork svg {
    width: 100%;
    height: auto;
    max-height: 200px;
    opacity: 0.8;
}

.label-divider-bottom {
    width: 40px;
    height: 1px;
    background: #C5A059;
    margin: 8% 0;
}

.label-variety {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(7px, 0.8vw, 10px);
    font-weight: 400;
    letter-spacing: 4px;
    color: #C5A059;
    text-transform: uppercase;
    padding-bottom: 10%;
}

.label-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 40%,
            rgba(197, 160, 89, 0.05) 45%,
            rgba(197, 160, 89, 0.1) 50%,
            rgba(197, 160, 89, 0.05) 55%,
            transparent 60%);
    animation: labelShine 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes labelShine {

    0%,
    100% {
        transform: translateX(-30%) translateY(-30%) rotate(45deg);
    }

    50% {
        transform: translateX(30%) translateY(30%) rotate(45deg);
    }
}

.slide-text {
    flex: 1;
    max-width: 480px;
}

.slide-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 90px);
    font-weight: 300;
    color: rgba(197, 160, 89, 0.08);
    line-height: 1;
    margin-bottom: -15px;
}

.slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 300;
    color: #C5A059;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.slide-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.slide-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #C5A059;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    padding: 12px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    transition: all 0.3s ease;
}

.slide-cta:hover {
    border-bottom-color: #C5A059;
    gap: 18px;
}

.slide-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.slide-cta:hover svg {
    transform: translateX(4px);
}

/* Slide Colors */
.slide-blue-pea {
    background: #0F1C3F;
}

.slide-spice-trinity {
    background: #3E1212;
}

.slide-ginger-radiance {
    background: #3E2B1F;
}

.slide-indian-borage {
    background: #2b3d2b;
}

/* Swiper Custom Navigation */
.collection-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 20;
}

.swiper-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.swiper-btn:hover {
    border-color: #C5A059;
    background: rgba(197, 160, 89, 0.05);
}

.swiper-btn svg {
    width: 16px;
    height: 16px;
    stroke: #C5A059;
    fill: none;
    stroke-width: 1.5;
}

.swiper-pagination-custom {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 4px;
    color: rgba(197, 160, 89, 0.5);
}

.slide-counter {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(197, 160, 89, 0.4);
}

.slide-counter .current {
    color: #C5A059;
    font-weight: 500;
}

/* ===== RITUAL SECTION ===== */
.ritual {
    min-height: 100vh;
    display: flex;
    background: #0F0F0F;
}

.ritual-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.ritual-visual-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(15, 15, 15, 0.2) 0%, rgba(15, 15, 15, 0.5) 100%),
        linear-gradient(180deg, #1a1410 0%, #0F0F0F 100%);
}

.ritual-visual-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L60 40 L100 50 L60 60 L50 100 L40 60 L0 50 L40 40 Z' fill='%23C5A059' fill-opacity='0.5'/%3E%3C/svg%3E");
}

.ritual-visual-element {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform: none;
}

.ritual-visual-element svg {
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.ritual-visual-overlay {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(90deg, transparent, #0F0F0F);
}

.ritual-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(60px, 10vw, 120px) clamp(40px, 6vw, 100px);
    max-width: 650px;
}

.ritual-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 6px;
    color: rgba(197, 160, 89, 0.4);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.ritual-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    color: #C5A059;
    line-height: 1.15;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.ritual-title em {
    font-style: italic;
    font-weight: 400;
}

.ritual-divider {
    width: 50px;
    height: 1px;
    background: #C5A059;
    margin-bottom: 40px;
}

.ritual-copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.ritual-copy strong {
    color: rgba(197, 160, 89, 0.8);
    font-weight: 400;
}

.ritual-principles {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.principle {
    text-align: center;
}

.principle-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.principle-icon svg {
    width: 18px;
    height: 18px;
    stroke: #C5A059;
    fill: none;
    stroke-width: 1.5;
}

.principle-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    color: rgba(197, 160, 89, 0.6);
    text-transform: uppercase;
}

/* ===== STOCKISTS SECTION ===== */
.stockists {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 40px;
    background: #0a0a0a;
    position: relative;
}

.stockists::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, #0F0F0F, rgba(197, 160, 89, 0.3));
}

.stockists-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 6px;
    color: rgba(197, 160, 89, 0.4);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.stockists-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 300;
    color: #C5A059;
    margin-bottom: 60px;
    text-align: center;
}

.stockists-form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-field {
    flex: 1;
    position: relative;
}

.form-field input,
.form-field textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.15);
    padding: 20px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #e0e0e0;
    letter-spacing: 1px;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
    resize: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 10px;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(197, 160, 89, 0.5);
    background: rgba(197, 160, 89, 0.02);
}

.form-submit {
    align-self: flex-start;
    background: transparent;
    border: 1px solid rgba(197, 160, 89, 0.4);
    padding: 20px 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 5px;
    color: #C5A059;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.form-submit:hover {
    background: #C5A059;
    color: #0F0F0F;
    border-color: #C5A059;
}

/* ===== FOOTER ===== */
.footer {
    background: #0F0F0F;
    border-top: 1px solid rgba(197, 160, 89, 0.08);
    padding: 80px 50px 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-brand .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 8px;
    color: #C5A059;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 11px;
    font-weight: 300;
    color: #444;
    letter-spacing: 1px;
    line-height: 2;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 4px;
    color: rgba(197, 160, 89, 0.5);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 11px;
    font-weight: 300;
    color: #555;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.footer-col a:hover {
    color: #C5A059;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    border-color: #C5A059;
    background: rgba(197, 160, 89, 0.05);
}

.footer-socials svg {
    width: 14px;
    height: 14px;
    fill: #C5A059;
    opacity: 0.6;
}

.footer-socials a:hover svg {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(197, 160, 89, 0.06);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom span {
    font-size: 10px;
    font-weight: 300;
    color: #333;
    letter-spacing: 2px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ritual {
        flex-direction: column;
    }

    .ritual-visual {
        min-height: 300px;
    }

    .ritual-visual-overlay {
        width: 100%;
        height: 80px;
        right: 0;
        bottom: 0;
        top: auto;
        background: linear-gradient(0deg, #0F0F0F, transparent);
    }
}

@media (max-width: 768px) {
    .slide-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .slide-text {
        max-width: 500px;
    }

    .slide-cta {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 16px 24px;
    }

    .nav.scrolled {
        padding: 12px 24px;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 15, 15, 0.98);
        align-items: center;
        justify-content: center;
        gap: 30px;
        z-index: 999;
    }

    .nav-links.active a {
        font-size: 14px;
        letter-spacing: 6px;
    }

    .slide-content {
        padding: 0 24px;
    }

    .label-container {
        width: 160px;
    }

    .slide-number {
        display: none;
    }

    .ritual-text {
        padding: 40px 24px;
    }

    .ritual-principles {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stockists {
        padding: 80px 24px;
    }

    .form-row {
        flex-direction: column;
    }

    .footer {
        padding: 40px 24px 30px;
    }

    .footer-top {
        flex-direction: column;
    }

    .collection-nav {
        bottom: 30px;
    }
}
/* ===== CART PANEL ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    background: #0F0F0F;
    border-left: 1px solid rgba(197, 160, 89, 0.15);
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
}

.cart-panel.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.cart-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #C5A059;
    text-transform: uppercase;
}

.cart-close {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease;
}

.cart-close:hover {
    border-color: #C5A059;
}

.cart-close svg {
    width: 14px;
    height: 14px;
    stroke: #C5A059;
    fill: none;
    stroke-width: 1.5;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
}

.cart-empty {
    text-align: center;
    padding: 60px 0;
}

.cart-empty p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #555;
    text-transform: uppercase;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.06);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 400;
    color: #C5A059;
    letter-spacing: 1px;
}

.cart-item-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: #888;
    letter-spacing: 1px;
    margin-top: 4px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-qty-btn {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    background: transparent;
    color: #C5A059;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-qty-btn:hover {
    border-color: #C5A059;
    background: rgba(197, 160, 89, 0.05);
}

.cart-qty-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #e0e0e0;
    letter-spacing: 1px;
    min-width: 16px;
    text-align: center;
}

.cart-item-remove {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.cart-item-remove:hover {
    opacity: 1;
}

.cart-item-remove svg {
    width: 12px;
    height: 12px;
    stroke: #C5A059;
    fill: none;
    stroke-width: 1.5;
}

.cart-footer {
    padding: 24px 30px;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-total-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #888;
    text-transform: uppercase;
}

.cart-total-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: #C5A059;
}

.cart-payment-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 3px;
    color: rgba(197, 160, 89, 0.4);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cart-payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.cart-checkout-btn {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(197, 160, 89, 0.4);
    padding: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 5px;
    color: #C5A059;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
}

.cart-checkout-btn:hover {
    background: #C5A059;
    color: #0F0F0F;
    border-color: #C5A059;
}

.cart-paypal-container {
    min-height: 40px;
}

#paypal-button-container {
    min-height: 40px;
}

/* ===== CART BADGE ===== */
.nav-bag {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    width: 16px;
    height: 16px;
    background: #C5A059;
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: #0F0F0F;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cart-badge.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== ADD TO CART BUTTON ===== */
.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #C5A059;
    text-transform: uppercase;
    cursor: pointer;
    padding: 10px 20px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    background: transparent;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    border-color: #C5A059;
    background: rgba(197, 160, 89, 0.05);
}

.add-to-cart-btn.added {
    border-color: #C5A059;
    color: #0F0F0F;
    background: #C5A059;
}

.add-to-cart-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

/* ===== COD MODAL ===== */
.cod-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cod-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cod-modal {
    background: #0F0F0F;
    border: 1px solid rgba(197, 160, 89, 0.2);
    width: 440px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
}

.cod-modal h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 300;
    color: #C5A059;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cod-modal .cod-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    color: rgba(197, 160, 89, 0.4);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.cod-modal .form-field {
    margin-bottom: 14px;
}

.cod-modal .form-submit {
    width: 100%;
    margin-top: 20px;
}

.cod-modal .cod-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease;
}

.cod-modal .cod-close:hover {
    border-color: #C5A059;
}

.cod-modal .cod-close svg {
    width: 12px;
    height: 12px;
    stroke: #C5A059;
    fill: none;
    stroke-width: 1.5;
}

/* ===== ORDER CONFIRMATION ===== */
.order-confirm {
    text-align: center;
    padding: 30px 0;
}

.order-confirm svg {
    width: 48px;
    height: 48px;
    stroke: #C5A059;
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 16px;
}

.order-confirm h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    color: #C5A059;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.order-confirm p {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: #888;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .cart-panel {
        width: 100vw;
        max-width: 100vw;
    }
}
