/* css/style.css */
/* Luxury & Minimalist Design System for Rika Aura Candle */

/* ==========================================================================
   1. Google Fonts & CSS Custom Properties
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@200;300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary-gold: #CC953E;
    --primary-gold-hover: #b07e30;
    --bg-cream: #F5EFEA;
    --soft-gold-trans: #ffeece36;
    --text-dark: #1A1512;
    --text-muted: #6B6158;
    --white: #FFFFFF;
    --border-gold: rgba(204, 149, 62, 0.18);
    --border-light: rgba(26, 21, 18, 0.08);
    --overlay-dark: rgba(26, 21, 18, 0.4);

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(26, 21, 18, 0.04);
    --shadow-hover: 0 20px 40px rgba(26, 21, 18, 0.08);
    --shadow-glass: 0 8px 32px 0 rgba(204, 149, 62, 0.06);

    /* Borders & Rounding */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   2. Resets & Base Styles
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

input,
button,
select,
textarea {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

/* ==========================================================================
   3. Typography & Utility Classes
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.heading-lg {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
}

.heading-md {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.heading-sm {
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    font-weight: 400;
}

.text-gold {
    color: var(--primary-gold);
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 7.5rem 10% 7.5rem 10%;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4.5rem 5% 4.5rem 5%;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Scroll reveal helper class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   4. Buttons & Interactive Elements
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-solid {
    background-color: var(--text-dark);
    color: var(--bg-cream);
    border: 1px solid var(--text-dark);
}

.btn-solid:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--primary-gold);
    color: var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    border-color: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-minimal {
    padding: 0.5rem 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.btn-minimal-tag {
    padding: 0.5rem 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: --white;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.btn-minimal-tag::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--primary-gold);
    margin-top: 5px;
    transition: var(--transition-smooth);
}

.btn-minimal::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--primary-gold);
    margin-top: 5px;
    transition: var(--transition-smooth);
}

.btn-minimal:hover::after {
    width: 100%;
}

/* ==========================================================================
   5. Header & Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background-color: rgba(245, 239, 234, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: var(--shadow-glass);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.site-header.scrolled .header-container {
    padding: 0.9rem 4%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    color: var(--white);
    transition: var(--transition-smooth);
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.site-header.scrolled .logo {
    color: var(--text-dark);
}

.site-header.scrolled .logo img {
    height: 34px;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    padding: 0.5rem 0;
    color: var(--white);
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.site-header.scrolled .nav-link {
    color: var(--text-dark);
}

.site-header.scrolled .nav-link:hover {
    color: var(--primary-gold);
}

/* Header Utilities */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.header-icon {
    font-size: 1.15rem;
    color: var(--white);
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.header-icon:hover {
    color: var(--primary-gold);
}

.site-header.scrolled .header-icon {
    color: var(--text-dark);
}

.site-header.scrolled .header-icon:hover {
    color: var(--primary-gold);
}

/* Force dark text for bright background pages before scrolling */
.site-header.dark-header-content:not(.scrolled) .nav-link,
.site-header.dark-header-content:not(.scrolled) .header-icon,
.site-header.dark-header-content:not(.scrolled) .logo {
    color: var(--text-dark);
}
.site-header.dark-header-content:not(.scrolled) .menu-toggle span {
    background-color: var(--text-dark);
}
.site-header.dark-header-content:not(.scrolled) .nav-link:hover,
.site-header.dark-header-content:not(.scrolled) .header-icon:hover {
    color: var(--primary-gold);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background-color: var(--primary-gold);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.site-header.scrolled .menu-toggle span {
    background-color: var(--text-dark);
}

/* Transform hamburger to X when mobile menu is open */
body.mobile-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg) !important;
}

body.mobile-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0 !important;
}

body.mobile-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg) !important;
}

/* Force dark text and clean header background when mobile menu is open */
body.mobile-menu-open .site-header {
    background-color: transparent !important;
    box-shadow: none !important;
    border-bottom: 1px solid transparent !important;
}

body.mobile-menu-open .site-header .header-icon,
body.mobile-menu-open .site-header .logo {
    color: var(--text-dark) !important;
}

body.mobile-menu-open .site-header .menu-toggle span {
    background-color: var(--text-dark) !important;
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        /* Handled by mobile menu overlay */
    }

    .menu-toggle {
        display: flex;
    }
}

/* ==========================================================================
   6. Hero Banner
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
    z-index: 1;
}

.hero-section:hover .hero-bg {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-dark);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 2rem;
    text-align: center;
    color: var(--bg-cream);
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    animation: fadeInDown 1.2s both;
}

.hero-title {
    animation: fadeInUp 1.2s 0.2s both;
    margin-bottom: 2rem;
}

.hero-desc {
    font-size: 1.1rem;
    font-weight: 200;
    letter-spacing: 0.05em;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    opacity: 0.9;
    animation: fadeInUp 1.2s 0.4s both;
}

.hero-btn-container {
    animation: fadeInUp 1.2s 0.6s both;
}

.hero-btn-container .btn {
    border-color: var(--primary-gold);
    color: var(--bg-cream);
    background-color: transparent;
}

.hero-btn-container .btn:hover {
    background-color: var(--primary-gold);
    color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   7. Brand Ethos / Features
   ========================================================================== */
.ethos-section {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.ethos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.ethos-card {
    text-align: center;
    padding: 1.5rem;
}

.ethos-icon {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.ethos-title {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ethos-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .ethos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .ethos-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   8. Curated Collections Grid
   ========================================================================== */
.collections-section {
    background-color: var(--bg-cream);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.collection-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}

.collection-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    z-index: 1;
}

.collection-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 21, 18, 0.75) 0%, rgba(26, 21, 18, 0) 60%);
    z-index: 2;
    transition: var(--transition-smooth);
}

.collection-content {
    position: relative;
    z-index: 3;
    color: var(--bg-cream);
}

.collection-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.collection-title {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.collection-card:hover .collection-img {
    transform: scale(1.05);
}

.collection-card:hover::after {
    background: linear-gradient(to top, rgba(26, 21, 18, 0.85) 0%, rgba(26, 21, 18, 0.1) 100%);
}

@media (max-width: 768px) {
    .collections-grid {
        grid-template-columns: 1fr;
    }

    .collection-card {
        height: 400px;
        padding: 2rem;
    }
}

/* ==========================================================================
   9. Products Grid (Best Sellers)
   ========================================================================== */
.products-section {
    background-color: var(--white);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 5rem auto;
    text-align: center;
}

.section-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    display: block;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 2rem;
}

/* Luxury Product Card - New Minimalist Card Design */
.product-card {
    background-color: var(--white);
    position: relative;
    border-radius: 8px;
    border: 1px solid rgba(26, 21, 18, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 21, 18, 0.06);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    /* Square aspect ratio matching the user's images */
    overflow: hidden;
    background-color: var(--bg-cream);
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-img.hover-img {
    opacity: 0;
    z-index: 2;
}

.product-card:hover .product-img.hover-img {
    opacity: 1;
}

.product-card:hover .product-img:not(.hover-img) {
    transform: scale(1.03);
}

.product-badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background-color: var(--primary-gold);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    border-radius: 4px;
    z-index: 3;
}

/* Card Content Area styling */
.product-card-content {
    padding: 1.25rem 1rem 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scent-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.product-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
    display: block;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.product-title:hover {
    color: var(--primary-gold);
}

.product-meta-details {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.9rem;
    width: 100%;
}

.product-price {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.compare-price {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

/* Add To Cart Card Button styling */
.product-card-actions {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0.2rem;
}

.btn-card-add {
    background-color: #F5EFEA;
    color: var(--text-dark);
    border: none;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.25s ease, transform 0.2s ease;
    width: auto;
}

.btn-card-add i {
    font-size: 0.75rem;
}

.btn-card-add:hover {
    background-color: #EDE4DC;
    transform: translateY(-1px);
}

.btn-card-add:active {
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   10. Scent Filter Tabs
   ========================================================================== */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.5rem 0.2rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.filter-tab:hover,
.filter-tab.active {
    color: var(--text-dark);
}

.filter-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-gold);
}

/* ==========================================================================
   11. About Section (Split layout)
   ========================================================================== */
.about-section {
    background-color: var(--bg-cream);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.about-content {
    padding: 8% 12%;
}

.about-title {
    margin-bottom: 2rem;
}

.about-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.about-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.about-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .about-section {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding: 5rem 8%;
        order: 2;
    }

    .about-image-wrapper {
        min-height: 450px;
        order: 1;
    }
}

/* ==========================================================================
   12. Testimonials (Premium visual styling)
   ========================================================================== */
.testimonials-section {
    background-color: var(--white);
    position: relative;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonial-slide {
    text-align: center;
    display: none;
    animation: fadeIn 0.8s ease;
}

.testimonial-slide.active {
    display: block;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.25;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 2rem;
    font-weight: 300;
}

.testimonial-author {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--border-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background-color: var(--primary-gold);
    transform: scale(1.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==========================================================================
   13. Newsletter Section (Frosted glass container)
   ========================================================================== */
.newsletter-section {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.newsletter-glass {
    position: relative;
    z-index: 3;
    background: rgba(245, 239, 234, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    padding: 5rem 6rem;
    max-width: 800px;
    width: 100%;
}

.newsletter-title {
    margin-bottom: 1rem;
}

.newsletter-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid var(--text-dark);
    max-width: 550px;
    margin: 0 auto;
    padding-bottom: 0.5rem;
}

.newsletter-input {
    flex-grow: 1;
    font-size: 0.9rem;
    color: var(--text-dark);
    padding: 0.5rem 1rem 0.5rem 0;
}

.newsletter-input::placeholder {
    color: #9c9287;
    font-weight: 300;
}

.newsletter-btn {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.25em;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.newsletter-btn:hover {
    color: var(--primary-gold);
}

@media (max-width: 768px) {
    .newsletter-glass {
        padding: 3rem 2rem;
    }
}

/* ==========================================================================
   14. Footer Section
   ========================================================================== */
.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-cream);
    padding-top: 6rem;
    padding-bottom: 3rem;
    font-size: 0.85rem;
    border-top: 1px solid rgba(204, 149, 62, 0.1);
    padding-left: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand-logo {
    height: 45px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-brand-desc {
    color: #aaa299;
    max-width: 300px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-social-link {
    font-size: 1.1rem;
    color: #aaa299;
}

.footer-social-link:hover {
    color: var(--primary-gold);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-gold);
    margin-bottom: 1.8rem;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: #aaa299;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--bg-cream);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 239, 234, 0.08);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8c8378;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.footer-payment-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* ==========================================================================
   15. Mobile Menu Overlay
   ========================================================================== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark);
}

.mobile-nav-link:hover {
    color: var(--primary-gold);
}

.mobile-close {
    display: none; /* Hide to prevent overlapping with header actions */
}

/* ==========================================================================
   16. Mini Cart Overlay / Drawer
   ========================================================================== */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 21, 18, 0.4);
    backdrop-filter: blur(5px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background-color: var(--white);
    z-index: 1200;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.cart-drawer-overlay.active .cart-drawer {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-close {
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cart-drawer-close:hover {
    color: var(--primary-gold);
}

#cart-drawer-close-btn {
    font-size: 2.2rem !important;
    color: var(--text-dark) !important;
    line-height: 0.8 !important;
    opacity: 0.95;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition-fast);
}

#cart-drawer-close-btn:hover {
    color: var(--primary-gold) !important;
    opacity: 1;
}

.cart-drawer-body {
    flex-grow: 1;
    padding: 2rem;
    overflow-y: auto;
}

.cart-empty-message {
    text-align: center;
    color: var(--text-muted);
    margin-top: 4rem;
}

.cart-empty-message i {
    font-size: 3rem;
    color: var(--border-gold);
    margin-bottom: 1.5rem;
    display: block;
}

/* Cart Item Style */
.cart-drawer-item {
    display: flex;
    gap: 1.2rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.cart-item-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    background-color: var(--bg-cream);
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.cart-item-scent {
    font-size: 0.7rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
}

.cart-item-qty-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-light);
}

.qty-btn {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    background: none;
}

.qty-val {
    width: 30px;
    text-align: center;
    font-size: 0.8rem;
}

.cart-item-remove {
    font-size: 0.75rem;
    text-decoration: underline;
    color: var(--text-muted);
    cursor: pointer;
    background: none;
    border: none;
    margin-top: 0.5rem;
    display: inline-block;
}

.cart-item-price {
    font-size: 0.95rem;
    font-weight: 500;
}

.cart-drawer-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-light);
    background-color: var(--bg-cream);
}

.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.cart-subtotal-price {
    font-size: 1.15rem;
    color: var(--text-dark);
}

.cart-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cart-drawer-actions .btn {
    width: 100%;
    text-align: center;
}