/* ==================== DESIGN TOKENS ==================== */
:root {
    --amber-dark: #0d0906;
    --amber-mid: #1a1309;
    --amber-glow: #3d2a14;
    --gold-primary: #d4af7f;
    --gold-light: #e8d5b5;
    --gold-muted: rgba(212, 175, 127, 0.6);
    --gold-dim: rgba(212, 175, 127, 0.3);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: #000;
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== HEADER ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    transition: all 0.6s ease;
    /* Default: visible with solid background for all pages */
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(212, 175, 127, 0.08);
}

/* Home page: header starts hidden, revealed by scroll JS */
.is-home .site-header {
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.site-header.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(212, 175, 127, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Nav */
.header-nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.header-nav-left a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header-nav-left a:hover {
    color: var(--gold-primary);
}

.header-nav-left a.active {
    color: var(--gold-primary);
    position: relative;
}

.header-nav-left a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-primary);
    border-radius: 1px;
}

/* Center Logo */
.header-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo img {
    height: 40px !important;
    width: auto;
    object-fit: contain;
}

/* Right Nav */
.header-nav-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    justify-content: flex-end;
}

.header-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 0.4rem 0.9rem;
    transition: border-color 0.3s ease, background 0.3s ease;
    position: relative;
}

.header-search:focus-within {
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.1);
}

.header-search input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.75rem;
    width: 160px;
    font-family: var(--font-sans);
    letter-spacing: 0.02em;
}

.header-search input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.header-search i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-right: 0.5rem;
}

.header-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    position: relative;
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.header-icon:hover {
    color: var(--gold-primary);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--gold-primary);
    color: #000;
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 6rem 2rem 2rem;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu a,
.mobile-menu button {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 1rem 0;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    background: none;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 100%;
    text-align: left;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
    color: var(--gold-primary);
}

.mobile-menu a.active {
    color: var(--gold-primary);
    padding-left: 0.75rem;
    border-left: 2px solid var(--gold-primary);
}

.mobile-menu .divider {
    height: 1px;
    background: rgba(212, 175, 127, 0.2);
    margin: 1.5rem 0;
}

/* ==================== LOADING OVERLAY ==================== */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 2px solid var(--gold-dim);
    border-top-color: var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 24px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-muted);
}

.loading-progress {
    margin-top: 16px;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold-primary);
    font-variant-numeric: tabular-nums;
}

/* ==================== SCROLL CONTAINER ==================== */
.scroll-container {
    height: 400vh;
    position: relative;
}

.canvas-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#perfumeCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* ==================== TEXT OVERLAYS ==================== */
.text-overlay {
    position: fixed;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-overlay.visible {
    opacity: 1;
}

/* Overlay 1: Left-aligned */
.overlay-phase1 {
    top: 50%;
    left: 6%;
    transform: translateY(calc(-50% + 30px));
    max-width: 480px;
}

.overlay-phase1.visible {
    transform: translateY(-50%);
}

.overlay-phase1 .overlay-main-heading {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    color: var(--gold-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 40px rgba(212, 175, 127, 0.2);
}

.overlay-phase1 .overlay-sub-heading {
    font-family: var(--font-sans);
    font-size: clamp(0.65rem, 1.5vw, 0.85rem);
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.25rem;
}

.gold-line {
    width: 60px;
    height: 1px;
    background: var(--gold-primary);
    opacity: 0.6;
}

/* Overlay 2, 3, 4 Common */
.overlay-phase2,
.overlay-phase4 {
    top: 50%;
    left: 6%;
    transform: translateY(calc(-50% + 30px));
    text-align: left;
    max-width: 520px;
}

.overlay-phase2.visible,
.overlay-phase4.visible {
    transform: translateY(-50%);
}

.overlay-phase3 {
    top: 50%;
    right: 6%;
    transform: translateY(calc(-50% + 30px));
    text-align: right;
    max-width: 520px;
}

.overlay-phase3.visible {
    transform: translateY(-50%);
}

.overlay-decoration {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.overlay-phase3 .overlay-decoration {
    justify-content: flex-end;
}

.overlay-decoration .deco-line {
    width: 50px;
    height: 1px;
    background: var(--gold-primary);
    opacity: 0.5;
}

.overlay-decoration .deco-text {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-muted);
    white-space: nowrap;
}

.overlay-phase2 .overlay-main-heading,
.overlay-phase3 .overlay-main-heading,
.overlay-phase4 .overlay-main-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--gold-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 40px rgba(212, 175, 127, 0.15);
}

.overlay-phase2 .overlay-sub-heading,
.overlay-phase3 .overlay-sub-heading,
.overlay-phase4 .overlay-sub-heading {
    font-family: var(--font-sans);
    font-size: clamp(0.6rem, 1.2vw, 0.8rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.btn-scent {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #000;
    background: #d4af7f;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    /* margin-bottom: 1.5rem; */
    border: none;
    cursor: pointer;
}

.btn-scent:hover {
    background: #fff;
    color: #000;
}

.scroll-back-text {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.content-box {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 127, 0.1);
    border-radius: 4px;
    padding: 2rem 2.5rem;
    margin-bottom: 1.5rem;
}

.content-box p {
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.25rem;
}

.content-box .content-quote {
    font-size: clamp(0.65rem, 1vw, 0.75rem);
    color: var(--gold-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Stats Row */
.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 0 1.5rem;
}

.stat-item+.stat-item {
    border-left: 1px solid rgba(212, 175, 127, 0.2);
}

.stat-value {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    color: var(--gold-primary);
    letter-spacing: 0.05em;
}

.stat-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* ==================== SCROLL INDICATOR ==================== */
.scroll-indicator {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-align: center;
}

.scroll-indicator.visible {
    opacity: 1;
}

.scroll-indicator-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold-primary), transparent);
    margin: 0 auto 8px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

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

    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

.scroll-indicator-text {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-dim);
}

/* ==================== SECTIONS BELOW SCROLL ==================== */

/* Notes Section */
.notes-section {
    padding: 5rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.note-item {
    text-align: center;
    padding: 2rem;
}

.note-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.5s ease;
}

.note-item:hover .note-icon {
    border-color: var(--gold-primary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
    transform: rotate(5deg);
}

.note-icon img {
    width: 65%;
    height: 65%;
    object-fit: contain;
}

.note-title {
    color: var(--gold-primary);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.note-desc {
    color: #999;
    font-weight: 300;
    line-height: 1.6;
}


/* Products Section */
.products-section {
    padding: 6rem 0;
    background-color: #000;
    position: relative;
    z-index: 10;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 4px;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.03);
}

.product-img {
    max-height: 250px;
    object-fit: contain;
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.5));
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-title {
    color: var(--gold-primary);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.product-desc {
    color: #888;
    font-size: 0.95rem;
    font-weight: 300;
}

/*essence section*/
.essence-section {
    background: linear-gradient(to bottom, #000000, #1a1a1a);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.essence-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-brand-heading {
    font-family: var(--font-serif);
    color: var(--gold-primary);
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--gold-muted);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.sub-lead {
    font-size: 1rem;
    color: var(--gold-dim);
    margin-top: 2rem;
    font-style: italic;
}

.essence-divider {
    height: 1px;
    width: 100px;
    background: var(--gold-primary);
    margin: 3rem auto;
    opacity: 0.5;
}
.essence-container{
    border: 1px solid var(--gold-primary);
    padding: 20px;
    border-radius: 20px;
    margin: 15px 0;
}

.essence-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px;
}

.stat-item img {
    width: 90px; 
    height: auto;
}

.stat-divider { 
    width: 2px;
    height: 70px; 
    background: var(--gold-primary);
    opacity: 0.5; 
}



 /* Moments of Elegance Section or Gallary Section */

.gallery-section {
    padding: 5rem 90px;
    background: #0a0a0a;
    position: relative;
}

.gallery-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.gallery-grid::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 75vw;     
    max-width: 300px;
    scroll-snap-align: start;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery-item video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.gallary-card-new{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #20201f;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card-content {
    display: flex;   
    align-items: center;
    gap: 10px;
    flex: 1;
    text-decoration: none;
    color: inherit;
}

.gallary-product-img-new{
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
}

.gallary-product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 5px;
}

.gallary-product-info h4 {
    font-size: 1.2rem;
    color: var(--gold-primary);
    font-family: var(--font-serif);
    margin: 0;
    line-height: 1rem;
}

.gallary-product-price {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--gold-primary);
    font-family: var(--font-serif);
} 

.icon-cart{
    border: 1px solid #bababa; 
    padding: 5px 10px; 
    border-radius: 5px;
}

.icon-cart:hover{
    border-color: #d4af7f;
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 3rem 10px;
    }

    .gallery-grid {
        display: flex;
        overflow-x: auto;
        padding: 0 5px;
        justify-content: flex-start !important;
    }
}

@media (max-width: 1024px){
    .gallery-grid {
        justify-content: flex-start !important;
    }
}



/* Stories Section */
.stories-section{
    padding: 100px 12px;
}

.stories-grid{
    display: flex;
    overflow-x: auto; 
}

.stories-grid::-webkit-scrollbar {
    display: none;
}

.review-img{
    height: 300px;
}


/* Footer */
.site-footer {
    background: #030303;
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: #fff;
    z-index: 10;
    position: relative;
}

.footer-logo-img {
    height: 36px;
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-desc {
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-heading {
    color: var(--gold-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 300;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.copyright {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: #fff;
}
.copyright .logo-text{
    color: var(--gold-primary);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .header-search {
        display: none;
    }

    .header-nav-left {
        gap: 1.25rem;
    }

    .header-nav-left a {
        font-size: 0.65rem;
        letter-spacing: 0.1em;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0 1rem;
    }

    .header-inner {
        height: 60px;
    }

    .header-nav-left {
        display: none;
    }

    .header-logo img {
        height: 30px;
        margin-left: 100px;
    }

    .header-nav-right {
        gap: 1rem;
    }

    .hamburger {
        display: flex;
        position: fixed;
    }

    /* Overlay Phase 1 on mobile */
    .overlay-phase1 {
        left: 50%;
        transform: translate(-50%, calc(-50% + 30px));
        text-align: center;
        max-width: 90%;
        top: 25%;
    }

    .overlay-phase1.visible {
        transform: translate(-50%, -50%);
    }

    .overlay-phase1 .gold-line {
        margin: 0 auto;
    }

    /* Overlay Phase 2, 3, 4 on mobile */
    .overlay-phase2,
    .overlay-phase3,
    .overlay-phase4 {
        right: auto;
        left: 50%;
        transform: translate(-50%, calc(-50% + 30px));
        text-align: center;
        max-width: 90%;
        top: 25%;
    }

    .overlay-phase2.visible,
    .overlay-phase3.visible,
    .overlay-phase4.visible {
        transform: translate(-50%, -50%);
    }

    .overlay-phase2 .overlay-decoration,
    .overlay-phase3 .overlay-decoration {
        justify-content: center;
    }

    .content-box {
        padding: 1.25rem 1.5rem;
    }

    .stat-item {
        padding: 0 1rem;
    }
    .essence-stats{
        justify-content: flex-start !important;
        padding-bottom: 15px;
    }

    /* Section text sizes */
    .section-brand-heading {
        font-size: clamp(1.5rem, 8vw, 3rem);
        letter-spacing: 0.1em;
    }

    .lead-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .mobile-menu {
        display: block;
    }
}

@media (max-width: 480px) {
    .overlay-phase1 .overlay-main-heading {
        font-size: 2.5rem;
    }

    .overlay-phase2 .overlay-main-heading,
    .overlay-phase3 .overlay-main-heading,
    .overlay-phase4 .overlay-main-heading {
        font-size: 1.5rem;
    }

    .content-box p {
        font-size: 0.75rem;
    }

    .content-box .content-quote {
        font-size: 0.6rem;
    }
}

/* ==================== COLLECTIONS PAGE ==================== */
.collections-hero {
    padding: 140px 0 3rem;
    background: linear-gradient(180deg, rgba(26, 19, 9, 0.6) 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.collections-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 127, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.collections-hero-content {
    position: relative;
    z-index: 1;
}

.collections-hero-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.collections-hero-deco .deco-line {
    width: 50px;
    height: 1px;
    background: var(--gold-primary);
    opacity: 0.4;
}

.collections-hero-deco .deco-text {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-muted);
    white-space: nowrap;
}

.collections-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--gold-primary);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 2px 40px rgba(212, 175, 127, 0.15);
}

.collections-hero-sub {
    font-family: var(--font-sans);
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.1em;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

/* Quick-Nav */
.collections-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.collections-nav-pill {
    display: inline-block;
    padding: 0.55rem 1.6rem;
    border: 1px solid rgba(212, 175, 127, 0.25);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.35s ease;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(4px);
    white-space: nowrap;
}

.collections-nav-pill:hover,
.collections-nav-pill.active {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
    box-shadow: 0 4px 20px rgba(212, 175, 127, 0.25);
}

/* Category Section */
.collection-section {
    padding: 5rem 0;
    background: #000;
    position: relative;
}

.collection-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 127, 0.2), transparent);
}

.collection-heading {
    text-align: center;
    margin-bottom: 3.5rem;
}

.collection-heading-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.collection-heading-deco .deco-line {
    width: 40px;
    height: 1px;
    background: var(--gold-primary);
    opacity: 0.35;
}

.collection-heading-deco .deco-text {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-muted);
}

.collection-heading-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--gold-primary);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.collection-heading-count {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
}

/* Product Card */
.collection-product-card {
    display: block;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(212, 175, 127, 0.08);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
}

.collection-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 127, 0.35);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 127, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

/* Image Wrapper */
.collection-product-img-wrap {
    position: relative;
    aspect-ratio: 4 / 4;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(26, 19, 9, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.collection-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-product-card:hover .collection-product-img {
    transform: scale(1.06);
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    backdrop-filter: blur(8px);
    z-index: 2;
}

/* Hover Overlay */
.collection-product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.collection-product-card:hover .collection-product-overlay {
    opacity: 1;
}

.overlay-cta {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.collection-product-card:hover .overlay-cta {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Product Info */
.collection-product-info {
    padding: 1.5rem;
}

.collection-product-brand {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 0.4rem;
}

.collection-product-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.collection-product-card:hover .collection-product-name {
    color: var(--gold-light);
}

.collection-product-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.collection-product-price {
    font-size: 1.05rem;
    color: var(--gold-light);
    font-weight: 500;
    font-family: var(--font-sans);
}

.collection-product-compare {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: line-through;
}

/* ---- Collections Responsive ---- */
@media (max-width: 991px) {
    .collections-hero {
        padding: 120px 0 2.5rem;
    }

    .collections-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .collections-nav::-webkit-scrollbar {
        height: 3px;
    }

    .collections-nav::-webkit-scrollbar-track {
        background: transparent;
    }

    .collections-nav::-webkit-scrollbar-thumb {
        background: var(--gold-dim);
        border-radius: 4px;
    }
}

@media (max-width: 768px) {
    .collections-hero {
        padding: 110px 0 2rem;
    }

    .collection-section {
        padding: 3.5rem 0;
    }

    .collection-heading {
        margin-bottom: 2.5rem;
    }

    .collection-product-info {
        padding: 1.25rem;
    }

    .collection-product-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .collections-hero-title {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }

    .collection-heading-title {
        font-size: 1.5rem;
    }

    .collection-product-img-wrap {
        aspect-ratio: 1 / 1;
    }
}

/* ==================== PRODUCT DETAIL PAGE ==================== */
.product-detail-section {
    padding: 120px 0 6rem;
    background: #000;
}

.pdp-gallery-container {
    display: flex;
    gap: 1.5rem;
    height: 600px;
}

.pdp-thumbnails {
    width: 100px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom scrollbar for thumbnails */
.pdp-thumbnails::-webkit-scrollbar {
    width: 4px;
}

.pdp-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.pdp-thumbnails::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 4px;
}

.pdp-thumb-item {
    width: 100%;
    aspect-ratio: 3/4;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    overflow: hidden;
}

.pdp-thumb-item.active {
    border-color: var(--gold-primary);
}

.pdp-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.pdp-thumb-item.active img,
.pdp-thumb-item:hover img {
    opacity: 1;
}

.pdp-main-image-wrapper {
    flex: 1;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: crosshair;
}

.pdp-main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.img-magnifier-glass {
    position: absolute;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    cursor: none;
    width: 200px;
    height: 200px;
    display: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 100;
    background-repeat: no-repeat;
    background-color: #000;
}

.pdp-info-panel {
    padding-left: 2rem;
}

.pdp-brand {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.pdp-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.pdp-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pdp-price {
    font-size: 1.5rem;
    color: var(--gold-light);
    font-family: var(--font-sans);
}

.pdp-compare-price {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.pdp-discount {
    background: var(--gold-dim);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.pdp-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.pdp-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    height: 52px;
    padding: 0 0.5rem;
}

.quantity-btn {
    background: none;
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.quantity-btn:hover {
    color: var(--gold-primary);
}

.quantity-input {
    width: 40px;
    background: none;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    pointer-events: none;
}

.btn-add-cart {
    flex: 1;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.btn-wishlist {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-wishlist:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.pdp-accordion .accordion-button {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1.25rem 0;
    color: #fff !important;
}

.pdp-accordion .accordion-button::after {
    filter: invert(1);
    transform: scale(0.8);
}

.pdp-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(0.8) sepia(1) saturate(5) hue-rotate(35deg);
    /* Rough gold approximation */
}

@media (max-width: 991px) {
    .pdp-gallery-container {
        flex-direction: column-reverse;
        height: auto;
    }

    .pdp-thumbnails {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding-right: 0;
        padding-bottom: 0.5rem;
    }

    .pdp-thumb-item {
        width: 80px;
        min-width: 80px;
    }

    .pdp-main-image-wrapper {
        height: 60vh;
    }

    .pdp-info-panel {
        padding-left: 0;
        margin-top: 3rem;
    }
}

/* ==================== CART DRAWER ==================== */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    height: 100%;
    background: #0a0a0a;
    border-left: 1px solid rgba(212, 175, 127, 0.12);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
}

.cart-drawer.open {
    transform: translateX(0);
}

/* Header */
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid rgba(212, 175, 127, 0.1);
    flex-shrink: 0;
}

.cart-drawer-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--gold-primary);
    font-weight: 400;
    letter-spacing: 0.08em;
    margin: 0;
}

.cart-drawer-close {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.cart-drawer-close:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Body */
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.75rem;
}

.cart-drawer-body::-webkit-scrollbar {
    width: 4px;
}

.cart-drawer-body::-webkit-scrollbar-track {
    background: transparent;
}

.cart-drawer-body::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 4px;
}

/* Empty State */
.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem;
    gap: 0.75rem;
}

.cart-empty-state i {
    font-size: 3rem;
    color: var(--gold-dim);
    margin-bottom: 0.5rem;
}

.cart-empty-state h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cart-empty-state p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    max-width: 250px;
}

.cart-empty-state .btn-scent {
    margin-top: 1rem;
    font-size: 0.75rem;
    padding: 0.65rem 2rem;
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    animation: fadeSlideIn 0.3s ease-out;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 72px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: #fff;
    font-weight: 400;
    margin: 0 0 0.2rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-sku {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.cart-item-price {
    display: block;
    font-size: 0.8rem;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 0.4rem;
}

/* Stock Warning */
.cart-stock-warning {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.65rem;
    color: #d4a017;
    background: rgba(212, 160, 23, 0.08);
    border: 1px solid rgba(212, 160, 23, 0.2);
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    margin-bottom: 0.5rem;
}

.cart-stock-warning i {
    font-size: 0.6rem;
}

.cart-stock-out {
    color: #e05252;
    background: rgba(224, 82, 82, 0.1);
    border-color: rgba(224, 82, 82, 0.2);
}

/* Quantity Controls */
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    width: fit-content;
    margin-top: 0.35rem;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cart-qty-btn:hover:not(:disabled) {
    color: var(--gold-primary);
    background: rgba(212, 175, 127, 0.08);
}

.cart-qty-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.cart-item-qty-input {
    width: 30px;
    background: none;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    text-align: center;
    font-size: 0.8rem;
    pointer-events: none;
    height: 28px;
}

/* Item Actions (line total + remove) */
.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    flex-shrink: 0;
}

.cart-item-line-total {
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: 600;
    font-family: var(--font-sans);
}

.cart-item-remove {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.cart-item-remove:hover {
    color: #e05252;
}

/* Footer */
.cart-drawer-footer {
    padding: 1.25rem 1.75rem 1.5rem;
    border-top: 1px solid rgba(212, 175, 127, 0.1);
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.4);
}

.cart-drawer-totals {
    margin-bottom: 1.25rem;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.cart-total-grand {
    font-size: 1.05rem;
    color: #fff;
    font-weight: 600;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0;
}

.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background: var(--gold-primary);
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-checkout:hover {
    background: var(--gold-light);
    color: #000;
    box-shadow: 0 4px 20px rgba(212, 175, 127, 0.3);
}

.btn-continue-shopping {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.75rem;
}

.btn-continue-shopping:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

/* Toast Notification */
.cart-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(212, 175, 127, 0.3);
    color: var(--gold-light);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.cart-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.cart-toast i {
    font-size: 1rem;
    color: #4ade80;
}

.cart-toast-error i {
    color: #e05252;
}

/* Product Card Add-to-Bag Button (collections page) */
.collection-card-add-btn {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--gold-primary);
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.35s ease;
    z-index: 2;
    white-space: nowrap;
}

.collection-product-img-wrap:hover .collection-card-add-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.collection-card-add-btn:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 16px rgba(212, 175, 127, 0.35);
}

/* ---- Cart Drawer Responsive ---- */
@media (max-width: 768px) {
    .cart-drawer {
        width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .cart-drawer {
        width: 380px;
    }
}

/* ==================== CHECKOUT PAGE ==================== */
.checkout-section {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.checkout-heading {
    font-family: var(--font-serif);
    color: var(--gold-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.checkout-subheading {
    font-family: var(--font-serif);
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.checkout-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 127, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(16px);
}

/* ---- Checkout Form Inputs ---- */
.checkout-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.checkout-input {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    padding: 0.85rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.checkout-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.checkout-input:focus {
    border-color: var(--gold-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 127, 0.15);
}

.checkout-input.is-invalid {
    border-color: #ef4444;
}

.checkout-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af7f' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.checkout-select option {
    background: #1a1a1a;
    color: #fff;
}

.checkout-field-error {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.35rem;
    font-family: var(--font-sans);
}

/* ---- Phone Input ---- */
.checkout-phone-group {
    display: flex;
    align-items: stretch;
}

.checkout-phone-prefix {
    display: flex;
    align-items: center;
    padding: 0 0.85rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: var(--gold-muted);
    font-family: var(--font-sans);
    font-size: 0.85rem;
}

.checkout-phone-input {
    border-radius: 0 8px 8px 0 !important;
}

/* ---- Submit Button ---- */
.checkout-submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.checkout-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ---- Order Summary Sidebar ---- */
.order-summary-card {
    position: sticky;
    top: 100px;
}

.order-summary-items {
    margin-bottom: 1.5rem;
    max-height: 320px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dim) transparent;
}

.order-summary-items::-webkit-scrollbar {
    width: 4px;
}

.order-summary-items::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 4px;
}

.order-summary-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-summary-item:last-child {
    border-bottom: none;
}

.order-summary-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 127, 0.1);
    flex-shrink: 0;
}

.order-summary-item-details {
    flex: 1;
    min-width: 0;
}

.order-summary-item-name {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-summary-item-qty {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.15rem;
}

.order-summary-item-price {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    color: var(--gold-light);
    white-space: nowrap;
}

/* ---- Coupon ---- */
.order-summary-coupon {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
}

.coupon-input-group {
    display: flex;
    gap: 0.5rem;
}

.coupon-input-group .checkout-input {
    flex: 1;
    padding: 0.65rem 0.85rem;
    font-size: 0.8rem;
}

.btn-coupon-apply {
    padding: 0.65rem 1.2rem !important;
    font-size: 0.72rem !important;
    white-space: nowrap;
    border-radius: 8px !important;
}

.coupon-applied {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    color: #22c55e;
    font-size: 0.82rem;
    font-family: var(--font-sans);
}

.coupon-applied .coupon-code-text {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.coupon-remove-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    font-size: 0.7rem;
    transition: color 0.2s;
}

.coupon-remove-btn:hover {
    color: #ef4444;
}

/* ---- Order Summary Totals ---- */
.order-summary-totals {
    padding-top: 0.5rem;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

.order-summary-row.order-summary-total {
    padding-top: 0.85rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(212, 175, 127, 0.15);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.order-summary-row.order-summary-total span:last-child {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.discount-row .discount-amount {
    color: #22c55e;
}

/* ---- Order Summary Shipping Address ---- */
.order-summary-shipping {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 127, 0.15);
}

.order-summary-shipping-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-primary);
    margin-bottom: 0.3rem;
}

.order-summary-shipping-name {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.order-summary-shipping-detail {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.checkout-continue-link {
    display: block;
    text-align: center;
    margin-top: 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--gold-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.checkout-continue-link:hover {
    color: var(--gold-primary);
}

/* ---- Alert ---- */
.checkout-alert {
    padding: 0.85rem 1.2rem;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
}

.checkout-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #fca5a5;
}

/* ---- Success / Failure Result Page ---- */
.checkout-result {
    max-width: 620px;
    margin: 0 auto;
}

.checkout-result .checkout-card {
    text-align: center;
    padding: 3rem 2rem;
}

.result-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.result-icon.success {
    color: var(--gold-primary);
}

.result-icon.failure {
    color: #ef4444;
}

.result-subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.result-reference {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 127, 0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.result-reference-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.35rem;
}

.result-reference-value {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--gold-primary);
    letter-spacing: 0.05em;
}

.result-items {
    text-align: left;
    margin: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.result-address,
.result-transaction {
    text-align: left;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.result-address p,
.result-transaction p {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0.35rem 0 0;
    line-height: 1.6;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.result-actions .btn-scent {
    padding: 0.85rem 2rem;
    font-size: 0.8rem;
}

.btn-scent-outline {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-primary);
    background: transparent;
    border: 1px solid var(--gold-primary);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-scent-outline:hover {
    background: rgba(212, 175, 127, 0.1);
    color: var(--gold-light);
}

/* ---- Checkout Responsive ---- */
@media (max-width: 991px) {
    .order-summary-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 100px 0 60px;
    }

    .checkout-heading {
        font-size: 1.6rem;
    }

    .checkout-card {
        padding: 1.25rem;
    }

    .result-actions {
        flex-direction: column;
        align-items: center;
    }

    .result-actions .btn-scent,
    .result-actions .btn-scent-outline {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .checkout-section {
        padding: 90px 0 40px;
    }

    .checkout-heading {
        font-size: 1.4rem;
    }

    .checkout-subheading {
        font-size: 1rem;
    }

    .checkout-input {
        padding: 0.75rem 0.85rem;
        font-size: 0.8rem;
    }
}

/* ==================== LIVE SEARCH DROPDOWN ==================== */
.live-search-results {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 360px;
    max-height: 420px;
    overflow-y: auto;
    background: rgba(13, 9, 6, 0.97);
    border: 1px solid rgba(212, 175, 127, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    z-index: 9999;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.live-search-results.open {
    display: block;
}

.live-search-results::-webkit-scrollbar {
    width: 4px;
}

.live-search-results::-webkit-scrollbar-track {
    background: transparent;
}

.live-search-results::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 127, 0.2);
    border-radius: 4px;
}

.live-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: #fff;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.live-search-item:last-child {
    border-bottom: none;
}

.live-search-item:hover {
    background: rgba(212, 175, 127, 0.08);
    color: #fff;
}

.live-search-img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 127, 0.1);
}

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

.live-search-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.live-search-name {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--gold-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-search-sku {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.live-search-price {
    font-size: 0.8rem;
    color: var(--gold-primary);
    font-weight: 500;
}

.live-search-compare {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
    margin-left: 4px;
}

.live-search-empty {
    padding: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-family: var(--font-sans);
}

@media (max-width: 768px) {
    .live-search-results {
        width: 300px;
        right: -40px;
    }
}

@media (max-width: 480px) {
    .live-search-results {
        width: calc(100vw - 30px);
        right: -60px;
        max-height: 350px;
    }
}

/* ==================== AUTH PAGES ==================== */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    background: radial-gradient(ellipse at center top, rgba(212, 175, 127, 0.04) 0%, #000 70%);
}

.auth-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 127, 0.12);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.auth-subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.auth-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-muted);
    margin-bottom: 0.5rem;
}

.auth-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 127, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.auth-input-wrapper:focus-within {
    border-color: var(--gold-primary);
}

.auth-input-prefix {
    padding: 0.85rem 0.75rem 0.85rem 1rem;
    color: var(--gold-muted);
    font-size: 0.95rem;
    font-family: var(--font-sans);
    border-right: 1px solid rgba(212, 175, 127, 0.1);
    background: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
}

.auth-input-wrapper .auth-input {
    border: none;
    border-radius: 0;
    background: transparent;
}

.auth-input-wrapper .auth-input:focus {
    border: none;
    box-shadow: none;
}

.auth-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 127, 0.15);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    outline: none;
}

.auth-input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px rgba(212, 175, 127, 0.08);
}

.auth-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.auth-btn {
    width: 100%;
    padding: 0.9rem;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-otp-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(212, 175, 127, 0.06);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 127, 0.08);
}

.auth-otp-info p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.auth-otp-inputs {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
}

.auth-otp-digit {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 1.4rem;
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 127, 0.2);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.auth-otp-digit:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px rgba(212, 175, 127, 0.1);
}

.auth-resend {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.auth-link {
    color: var(--gold-primary);
    text-decoration: none;
    background: none;
    border: none;
    font-size: inherit;
    font-family: inherit;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
}

.auth-link:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.auth-message {
    margin-top: 1.25rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    text-align: center;
}

.auth-message-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.25);
    color: #f87171;
}

.auth-message-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 127, 0.08);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.spin {
    display: inline-block;
    animation: spin 1s linear infinite;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 2rem 1.5rem;
    }

    .auth-title {
        font-size: 1.6rem;
    }

    .auth-otp-digit {
        width: 42px;
        height: 48px;
        font-size: 1.2rem;
    }

    .auth-otp-inputs {
        gap: 0.4rem;
    }

    .auth-otp-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ==================== USER DROPDOWN MENU ==================== */
.header-user-menu {
    position: relative;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 200px;
    background: rgba(15, 12, 8, 0.96);
    border: 1px solid rgba(212, 175, 127, 0.15);
    border-radius: 10px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1100;
    overflow: hidden;
}

.user-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-name {
    display: block;
    padding: 0.85rem 1rem 0.6rem;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--gold-primary);
    border-bottom: 1px solid rgba(212, 175, 127, 0.1);
    letter-spacing: 0.03em;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-sans);
}

.user-dropdown-item:hover {
    background: rgba(212, 175, 127, 0.08);
    color: var(--gold-primary);
}

.user-dropdown-item i {
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.user-dropdown-logout {
    border-top: 1px solid rgba(212, 175, 127, 0.08);
    color: rgba(255, 100, 100, 0.7);
}

.user-dropdown-logout:hover {
    background: rgba(220, 53, 69, 0.08);
    color: #f87171;
}

/* ==================== ACCOUNT PAGES ==================== */
.account-section {
    padding: 8rem 1.5rem 4rem;
    min-height: 100vh;
    background: radial-gradient(ellipse at center top, rgba(212, 175, 127, 0.03) 0%, #000 70%);
}

.account-header {
    margin-bottom: 2rem;
}

.account-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.account-nav {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(212, 175, 127, 0.1);
    margin-bottom: 0.5rem;
}

.account-nav-item {
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    letter-spacing: 0.05em;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.account-nav-item:hover {
    color: var(--gold-light);
}

.account-nav-item.active {
    color: var(--gold-primary);
    border-bottom-color: var(--gold-primary);
}

.account-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 127, 0.1);
    border-radius: 12px;
    padding: 1.75rem;
    backdrop-filter: blur(8px);
}

.account-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.account-card-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--gold-primary);
    margin: 0;
}

.account-edit-btn {
    background: none;
    border: 1px solid rgba(212, 175, 127, 0.2);
    color: var(--gold-muted);
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-sans);
}

.account-edit-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-outline-scent {
    background: transparent;
    border: 1px solid rgba(212, 175, 127, 0.3);
    color: var(--gold-muted);
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-sans);
}

.btn-outline-scent:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Profile info rows */
.profile-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.profile-info-row:last-child {
    border-bottom: none;
}

.profile-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-muted);
}

.profile-value {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* Address cards */
.address-card {
    position: relative;
    padding: 1.25rem;
    border: 1px solid rgba(212, 175, 127, 0.08);
    border-radius: 10px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.01);
    transition: border-color 0.2s ease;
}

.address-card:hover {
    border-color: rgba(212, 175, 127, 0.2);
}

.address-badge {
    display: inline-block;
    background: rgba(212, 175, 127, 0.12);
    color: var(--gold-primary);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.address-name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.address-detail {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.5;
}

.address-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.address-action-btn {
    background: none;
    border: none;
    color: var(--gold-muted);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
    font-family: var(--font-sans);
}

.address-action-btn:hover {
    color: var(--gold-primary);
}

.address-delete-btn:hover {
    color: #f87171;
}

.address-empty {
    text-align: center;
    padding: 2rem 1rem;
}

.address-empty p {
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
}

/* ==================== ORDERS TABLE ==================== */
.orders-empty {
    text-align: center;
    padding: 3rem 1rem;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-muted);
    border-bottom: 1px solid rgba(212, 175, 127, 0.1);
    font-weight: 500;
}

.orders-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    vertical-align: middle;
}

.orders-table tbody tr:hover {
    background: rgba(212, 175, 127, 0.03);
}

.order-ref {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-sans);
}

.order-total {
    font-weight: 500;
    color: var(--gold-primary);
}

.order-status {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.03em;
}

.order-status-placed,
.order-status-completed,
.order-status-success {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.order-status-pending,
.order-status-awaiting-payment {
    background: rgba(234, 179, 8, 0.1);
    color: #facc15;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

.order-status-cancelled,
.order-status-failed {
    background: rgba(220, 53, 69, 0.1);
    color: #f87171;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.order-status-dispatched,
.order-status-shipped {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.order-view-btn {
    color: var(--gold-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.order-view-btn:hover {
    color: var(--gold-primary);
}

.orders-pagination {
    padding: 1.5rem 0 0;
    display: flex;
    justify-content: center;
}

.orders-pagination .pagination {
    gap: 0.25rem;
}

.orders-pagination .page-link {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 127, 0.1);
    color: rgba(255, 255, 255, 0.6);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
}

.orders-pagination .page-link:hover {
    background: rgba(212, 175, 127, 0.08);
    color: var(--gold-primary);
}

.orders-pagination .page-item.active .page-link {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
}

/* ==================== ORDER DETAIL ==================== */
.order-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold-muted);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.order-back-link:hover {
    color: var(--gold-primary);
}

.order-meta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.88rem;
    margin-top: 0.25rem;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-img {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 127, 0.1);
}

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

.order-item-info {
    flex: 1;
    min-width: 0;
}

.order-item-name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.order-item-sku {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
}

.order-item-qty {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    white-space: nowrap;
}

.order-item-price {
    text-align: right;
    min-width: 100px;
}

.order-item-unit {
    display: block;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.78rem;
}

.order-item-total {
    display: block;
    color: var(--gold-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Order Totals */
.order-totals {
    display: flex;
    flex-direction: column;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.order-discount-row {
    color: #4ade80;
}

.order-grand-total {
    border-bottom: none;
    border-top: 1px solid rgba(212, 175, 127, 0.15);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--gold-primary);
}

/* ==================== ACCOUNT RESPONSIVE ==================== */
@media (max-width: 768px) {
    .account-section {
        padding: 6rem 1rem 3rem;
    }

    .account-title {
        font-size: 1.5rem;
    }

    .account-card {
        padding: 1.25rem;
    }

    .order-item {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .order-item-price {
        text-align: left;
        min-width: auto;
    }

    .order-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .orders-table th:nth-child(2),
    .orders-table td:nth-child(2) {
        display: none;
    }
}

@media (max-width: 480px) {
    .account-nav-item {
        padding: 0.6rem 1rem;
        font-size: 0.82rem;
    }

    .profile-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .orders-table th:nth-child(3),
    .orders-table td:nth-child(3) {
        display: none;
    }
}

/* ==================== CHECKOUT SAVED ADDRESS PICKER ==================== */
.saved-address-picker {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.saved-address-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(212, 175, 127, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.01);
    position: relative;
}

.saved-address-option:hover {
    border-color: rgba(212, 175, 127, 0.25);
    background: rgba(212, 175, 127, 0.03);
}

.saved-address-option.selected {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 127, 0.05);
}

.saved-address-option input[type="radio"] {
    display: none;
}

.saved-address-content {
    flex: 1;
    min-width: 0;
}

.saved-address-badge {
    display: inline-block;
    background: rgba(212, 175, 127, 0.12);
    color: var(--gold-primary);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
}

.saved-address-name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.92rem;
    margin-bottom: 0.15rem;
}

.saved-address-detail {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.84rem;
    line-height: 1.4;
}

.saved-address-check {
    color: rgba(212, 175, 127, 0.15);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.saved-address-option.selected .saved-address-check {
    color: var(--gold-primary);
}

.saved-address-new .saved-address-name {
    color: var(--gold-muted);
}

.saved-address-new .saved-address-name i {
    margin-right: 0.3rem;
}

.checkout-save-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-muted);
    font-size: 0.85rem;
    cursor: pointer;
    font-family: var(--font-sans);
}

.checkout-save-address input[type="checkbox"] {
    accent-color: var(--gold-primary);
}

/* Consent checkbox */
.consent-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    line-height: 1.6;
    cursor: pointer;
    font-family: var(--font-sans);
    padding: 0.75rem 1rem;
    border: 1px solid rgba(212, 175, 127, 0.12);
    background: rgba(212, 175, 127, 0.03);
}

.consent-checkbox-label input[type="checkbox"] {
    accent-color: var(--gold-primary);
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.consent-checkbox-label a {
    color: var(--gold-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consent-checkbox-label a:hover {
    color: var(--gold-light);
}

@media (max-width: 480px) {
    .saved-address-option {
        padding: 0.85rem 1rem;
    }
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
    padding: 120px 0 100px;
    min-height: 100vh;
}

.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
}

.contact-heading {
    font-family: var(--font-serif);
    color: #fff;
    font-size: 3rem;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.contact-subtext {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- Info Cards ---- */
.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 127, 0.1);
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
    transition: border-color 0.3s ease;
}

.contact-info-card:hover {
    border-color: rgba(212, 175, 127, 0.25);
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(212, 175, 127, 0.08);
    border: 1px solid rgba(212, 175, 127, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.contact-info-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.25rem;
}

.contact-info-value {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ---- Social Row ---- */
.contact-social-row {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem 0 0;
}

.contact-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 127, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.contact-social-link:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(212, 175, 127, 0.06);
}

/* ---- Form Card ---- */
.contact-form-card {
    padding: 2rem 2.25rem;
}

.contact-textarea {
    resize: vertical;
    min-height: 140px;
    font-family: var(--font-sans);
}

.contact-submit-btn {
    width: 100%;
    padding: 0.9rem;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    margin-top: 0.5rem;
}

/* ---- Success alert variant ---- */
.checkout-alert-success {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #86efac;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .contact-section {
        padding: 100px 0 60px;
    }

    .contact-heading {
        font-size: 2.2rem;
    }

    .contact-form-card {
        padding: 1.5rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .contact-heading {
        font-size: 1.8rem;
    }
}
