/* CSS Reset & Variable Definitions */
:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F7F5F0;
    --bg-tertiary: #EAE5DB;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --bg-glass-dark: rgba(247, 245, 240, 0.95);
    
    --text-primary: #000000;
    --text-secondary: #1F2421;
    --text-muted: #5C635E;
    --text-light: #FFFFFF;
    
    --color-accent: #C5A880;
    --color-accent-hover: #A3855E;
    --color-accent-dark: #6D563D;
    
    --color-burgundy: #5D1A3B; /* Born Free Purple-Burgundy */
    --color-blue: #1A4B75;     /* Dew Drops Blue */
    --color-rose: #C3909B;     /* Sunset Breeze Pink-Rose */
    --color-green: #3F5E4D;    /* Incense Sage Green */
    --color-gold: #D4AF37;
    
    --border-color: rgba(197, 168, 128, 0.35);
    --border-color-focus: rgba(109, 86, 61, 0.6);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 20px rgba(197, 168, 128, 0.12);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-quick: all 0.2s ease;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-quick);
}

ul {
    list-style: none;
}

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

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn:hover::after {
    left: 0;
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: var(--text-light);
}

.btn-secondary {
    background-color: var(--color-accent);
    color: var(--text-primary);
    border-color: var(--color-accent);
}

.btn-secondary:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

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

.btn-sm {
    padding: 8px 18px;
    font-size: 10px;
    letter-spacing: 1px;
}

.btn-full {
    width: 100%;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Glassmorphism utility */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-glass);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
    padding: 25px 0;
}

.navbar.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

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

.brand-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-primary);
}

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

.nav-links a {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-primary);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: var(--transition-quick);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-primary);
    cursor: pointer;
    position: relative;
    transition: var(--transition-quick);
    padding: 5px;
}

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

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bg-primary);
    z-index: 999;
    padding: 100px 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-link {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    margin-bottom: 100px;
    z-index: 10;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-subtitle {
    display: none;
}

.hero-title {
    display: none;
}

.hero-desc {
    display: none;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-ctas .btn-outline {
    color: var(--text-light);
    border-color: var(--text-light);
}

.hero-ctas .btn-outline:hover {
    background-color: var(--text-light);
    color: var(--text-primary);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    animation: pulse 2s infinite;
}

/* Philosophy Section (Editorial blocks) */
.philosophy {
    background-color: var(--bg-secondary);
}

.editorial-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.editorial-block:last-child {
    margin-bottom: 0;
}

.editorial-image-wrapper {
    position: relative;
    padding: 20px;
}

.editorial-bg-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background-color: var(--bg-tertiary);
    z-index: 1;
}

.editorial-bg-accent.right {
    left: 20%;
}

.editorial-img {
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.editorial-img:hover {
    transform: scale(1.02);
}

.editorial-text {
    padding-right: 40px;
}

.image-right .editorial-text {
    padding-right: 0;
    padding-left: 40px;
}

.editorial-title {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.editorial-paragraph {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 300;
}

.editorial-quote {
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: italic;
    color: var(--color-accent-dark);
    border-left: 2px solid var(--color-accent);
    padding-left: 20px;
    margin: 30px 0;
    line-height: 1.4;
}

/* Factors Grid in Editorial */
.factors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.factor-card {
    background-color: var(--bg-primary);
    padding: 25px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.factor-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.factor-icon {
    font-size: 24px;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.factor-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.factor-card p {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.5;
}

/* Notes Visualizer Section */
.notes-visualizer-sec {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.notes-visualizer-container {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 1.1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.notes-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 35px;
}

.note-tab {
    background: none;
    border: none;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-quick);
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.note-tab-badge {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    background-color: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 2px 6px;
    border-radius: 20px;
}

.note-tab.active {
    color: var(--text-primary);
    font-weight: 600;
}

.note-tab.active .note-tab-badge {
    background-color: var(--color-accent);
    color: var(--bg-primary);
}

.note-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-quick);
}

.note-tab.active::after {
    width: 100%;
}

.note-content-box {
    display: none;
    animation: fadeIn 0.6s ease;
}

.note-content-box.active {
    display: block;
}

.note-content-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 10px;
}

.note-content-timing {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent-dark);
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.note-content-desc {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 15px;
}

.note-accords {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.accord-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.accord-tag {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    font-size: 11px;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.note-player-controls {
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 20px;
}

#player-status-text {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
}

/* Pyramid Panel / Bottle Illustration */
.notes-pyramid-panel {
    display: flex;
    justify-content: center;
}

.notes-image-panel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.notes-editorial-image-wrapper {
    position: relative;
    padding: 10px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.notes-editorial-image-wrapper:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.notes-editorial-img {
    width: 100%;
    max-width: 300px;
    height: 400px;
    object-fit: cover;
}

.perfume-bottle-outline {
    width: 250px;
    height: 400px;
    border: 2px solid var(--text-primary);
    border-radius: 40px 40px 15px 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px;
}

.perfume-cap {
    width: 60px;
    height: 45px;
    background-color: var(--color-accent);
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid var(--text-primary);
    border-bottom: none;
    border-radius: 5px 5px 0 0;
}

.perfume-neck {
    width: 28px;
    height: 15px;
    border: 2px solid var(--text-primary);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-primary);
}

.perfume-body {
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
    border-radius: 25px 25px 8px 8px;
    overflow: hidden;
}

.pyramid-layer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pyramid-layer.top-layer {
    height: 25%;
    background-color: rgba(197, 168, 128, 0.15);
    border-bottom: 1px dashed var(--border-color);
}

.pyramid-layer.middle-layer {
    height: 35%;
    background-color: rgba(195, 144, 155, 0.15);
    border-bottom: 1px dashed var(--border-color);
}

.pyramid-layer.base-layer {
    height: 40%;
    background-color: rgba(26, 75, 117, 0.1);
}

/* Active Layer States */
.pyramid-layer.top-layer.active {
    background-color: rgba(197, 168, 128, 0.5);
    box-shadow: inset 0 0 20px rgba(197, 168, 128, 0.4);
}

.pyramid-layer.middle-layer.active {
    background-color: rgba(195, 144, 155, 0.45);
    box-shadow: inset 0 0 20px rgba(195, 144, 155, 0.4);
}

.pyramid-layer.base-layer.active {
    background-color: rgba(26, 75, 117, 0.35);
    box-shadow: inset 0 0 20px rgba(26, 75, 117, 0.3);
}

.layer-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.layer-sub {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    padding: 0 10px;
}

/* Evaporation Bubbles Animation */
.evaporation-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.bubble {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    bottom: -10px;
    animation: floatUp 3s infinite linear;
}

/* Scent Finder Section */
.scent-profiler-sec {
    background-color: var(--bg-secondary);
}

.scent-quiz-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 0;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-md);
}

.quiz-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--bg-tertiary);
}

.progress-fill {
    width: 33.3%;
    height: 100%;
    background-color: var(--color-accent-dark);
    transition: var(--transition-smooth);
}

.quiz-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.quiz-step.active {
    display: block;
}

.step-num {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.quiz-question {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.2;
}

.quiz-instruction {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.quiz-opt-btn {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quiz-opt-btn i {
    font-size: 26px;
    color: var(--color-accent);
    margin-bottom: 20px;
    transition: var(--transition-quick);
}

.quiz-opt-btn .opt-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.quiz-opt-btn .opt-desc {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.4;
    font-weight: 300;
}

.quiz-opt-btn:hover {
    border-color: var(--color-accent-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.quiz-opt-btn:hover i {
    color: var(--color-accent-dark);
}

/* Quiz Results Screen */
.result-celebration {
    font-size: 50px;
    color: var(--color-accent);
    margin-bottom: 15px;
    text-align: center;
}

.scent-quiz-card #step-results {
    text-align: center;
}

.recommended-product-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 30px;
    margin: 40px auto;
    max-width: 500px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
    text-align: left;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.rec-product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border: 1px solid var(--bg-tertiary);
}

.rec-product-info h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 5px;
}

.rec-product-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent-dark);
    display: block;
    margin-bottom: 12px;
}

.rec-product-desc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.rec-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rec-product-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
}

.quiz-footer-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Products Storefront Section */
.shop-sec {
    background-color: var(--bg-primary);
}

.shop-category-section {
    margin-bottom: 100px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.shop-category-section:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.category-letter {
    font-size: 16px;
    font-weight: 600;
    background-color: var(--bg-tertiary);
    color: var(--text-secondary);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
}

.category-title {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

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

.products-grid.single-item {
    grid-template-columns: 1fr;
}

.product-card {
    background-color: var(--bg-secondary);
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.product-image-container {
    height: 350px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-tertiary);
}

@media (min-width: 769px) {
    .product-image-container {
        height: 400px;
    }
    .products-grid.grid-2 .product-image-container {
        height: 480px;
    }
    .product-card.mini .product-image-container {
        height: 320px;
    }
    #cat-incense-sticks .product-image-container {
        height: 280px;
    }
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.2) contrast(0.9);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 12px;
}

.product-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-desc {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Horizontal / Combo Product Card Layout */
.product-card.horizontal {
    flex-direction: row;
    align-items: stretch;
}

.product-card.horizontal .product-image-container {
    width: 45%;
    height: auto;
    min-height: 380px;
}

.product-card.horizontal .product-details {
    width: 55%;
    padding: 40px;
    justify-content: center;
}

.oil-selector-container {
    margin: 25px 0;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.oil-selector-container label {
    font-size: 12px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.oil-dropdown {
    width: 100%;
    max-width: 350px;
    padding: 10px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 12px;
    outline: none;
    color: var(--text-secondary);
    transition: var(--transition-quick);
}

.oil-dropdown:focus {
    border-color: var(--border-color-focus);
}

/* Mini Product Cards (for essential oils) */
.product-card.mini {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.product-card.mini .product-image-container {
    height: 280px;
}

#cat-incense-sticks .product-image-container {
    height: 220px;
}

.product-card.mini .product-details {
    padding: 20px;
}

.product-card.mini .product-name {
    font-size: 20px;
    margin-bottom: 5px;
}

.product-card.mini .product-desc {
    font-size: 12px;
    margin-bottom: 15px;
}

.product-card.mini .product-price {
    font-size: 16px;
}

/* Shopping Cart Side Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background-color: var(--bg-primary);
    z-index: 1002;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cart-drawer.active {
    transform: translateX(-450px);
}

.cart-header {
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 24px;
    font-weight: 500;
}

.cart-close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition-quick);
}

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

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

/* Cart Scrollbar styling */
.cart-items-body::-webkit-scrollbar {
    width: 5px;
}

.cart-items-body::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.cart-items-body::-webkit-scrollbar-thumb {
    background: var(--color-accent);
}

/* Cart Item Layout */
.cart-item {
    display: grid;
    grid-template-columns: 70px 1fr 30px;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--bg-tertiary);
    align-items: center;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    background-color: var(--bg-tertiary);
}

.cart-item-info h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.cart-item-option {
    font-size: 10px;
    color: var(--color-accent-dark);
    margin-top: 2px;
    display: block;
    font-weight: 600;
}

.cart-item-price {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    margin-top: 5px;
    display: block;
}

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

.qty-btn {
    background: none;
    border: 1px solid var(--border-color);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 10px;
}

.qty-btn:hover {
    border-color: var(--text-primary);
}

.qty-val {
    font-size: 12px;
    font-weight: 600;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition-quick);
}

.cart-item-remove:hover {
    color: var(--color-burgundy);
}

/* Empty Cart View */
.empty-cart-message {
    text-align: center;
    padding: 60px 0;
}

.empty-cart-message i {
    font-size: 50px;
    color: var(--bg-tertiary);
    margin-bottom: 20px;
}

.empty-cart-message p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.gst-row {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.total-row {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 25px;
}

.total-price {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
}

/* Overlay for Drawer & Modals */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(31, 36, 33, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1001;
    display: none;
    animation: fadeIn 0.4s ease;
}

.cart-overlay.active {
    display: block;
}

/* Modal Backdrop */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(31, 36, 33, 0.6);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

/* Modal Cards */
.checkout-modal-card {
    width: 100%;
    max-width: 600px;
    background-color: var(--bg-primary);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    animation: scaleUp 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-size: 26px;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition-quick);
}

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

/* Forms */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
    transition: var(--transition-quick);
}

.form-group textarea {
    height: 80px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--border-color-focus);
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

/* Chrome Autofill overrides for Dark Mode */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover, 
.form-group input:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text-primary) !important;
    -webkit-box-shadow: 0 0 0px 1000px var(--bg-secondary) inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

.payment-info-section {
    grid-template-columns: 1fr;
}

.payment-method-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border-color);
    padding: 15px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition-quick);
}

.radio-label input {
    margin: 0;
}

.radio-label.active {
    border-color: var(--color-accent-dark);
    background-color: var(--bg-secondary);
}

.order-summary-box {
    background-color: var(--bg-secondary);
    padding: 20px;
    margin: 10px 0;
    border-left: 3px solid var(--color-accent);
}

.order-summary-box h4 {
    font-size: 18px;
}

/* Success Modal Card */
.success-modal-card {
    background-color: var(--bg-primary);
    max-width: 500px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    animation: scaleUp 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.success-icon {
    font-size: 60px;
    color: var(--color-green);
    margin-bottom: 25px;
}

.success-modal-card h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.success-msg {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: 300;
}

.order-details-summary {
    background-color: var(--bg-secondary);
    padding: 20px;
    margin-bottom: 35px;
    border: 1px solid var(--border-color);
}

.order-details-summary p {
    font-size: 13px;
    margin-bottom: 8px;
}

.order-details-summary p:last-child {
    margin-bottom: 0;
}

/* Footer Section */
.footer {
    background-color: var(--bg-glass-dark);
    color: var(--text-primary);
    padding: 80px 0 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition-quick);
}

.social-links a:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 1px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--color-accent);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col ul a {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 300;
}

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

.footer-col p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 15px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col p a:hover {
    color: var(--color-accent);
}

.footer-col p i {
    color: var(--color-accent);
    width: 15px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-policies {
    display: flex;
    gap: 25px;
}

.footer-policies a {
    color: var(--text-primary);
    font-weight: bold;
}

.footer-policies a:hover {
    color: var(--color-accent);
}

/* Animations */
@keyframes slowZoom {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.10); }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes scaleUp {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-200px) scale(1.2);
        opacity: 0;
    }
}

@keyframes pulse {
    0% { opacity: 0.4; transform: translate(-50%, 0); }
    50% { opacity: 1; transform: translate(-50%, 8px); }
    100% { opacity: 0.4; transform: translate(-50%, 0); }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .editorial-block {
        gap: 40px;
    }
    .notes-visualizer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .notes-pyramid-panel {
        order: -1;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 20px 0;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-desc {
        font-size: 14px;
    }
    .editorial-block {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }
    .editorial-image-wrapper {
        order: -1;
    }
    .editorial-img {
        height: 350px;
    }
    .editorial-text, .image-right .editorial-text {
        padding: 0;
    }
    .products-grid.grid-2 {
        grid-template-columns: 1fr;
    }
    .product-card.horizontal {
        flex-direction: column;
    }
    .product-card.horizontal .product-image-container {
        width: 100%;
        height: 280px;
        min-height: 280px;
    }
    .product-card.horizontal .product-details {
        width: 100%;
        padding: 25px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .payment-method-selector {
        grid-template-columns: 1fr;
    }
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
    .cart-drawer.active {
        transform: translateX(-100%);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* --- Product Detail Page Styles --- */
.product-detail-page {
    background-color: var(--bg-primary);
}

.product-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.breadcrumbs a {
    color: var(--text-secondary);
    transition: var(--transition-quick);
}

.breadcrumbs a:hover {
    color: var(--color-accent);
}

.breadcrumbs .separator {
    font-size: 8px;
    color: var(--border-color-focus);
}

.breadcrumbs .active {
    color: var(--color-accent);
    font-weight: 500;
}

/* Product Detail Grid */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column: Gallery */
.product-detail-gallery {
    position: sticky;
    top: 150px;
}

.gallery-image-wrapper {
    position: relative;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.gallery-image-wrapper:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.gallery-image-wrapper img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-image-wrapper:hover img {
    transform: scale(1.05);
}

.gallery-image-wrapper .product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border: 1px solid var(--color-accent);
    z-index: 10;
}

/* Right Column: Content */
.product-detail-content {
    display: flex;
    flex-direction: column;
}

.product-detail-content .section-tag {
    margin-bottom: 15px;
}

.product-detail-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.product-detail-price {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-accent-dark);
    margin-bottom: 25px;
    font-weight: 500;
}

.product-detail-desc-short {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Dynamic Option Selectors */
.detail-dynamic-options {
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.option-select-wrapper {
    position: relative;
    width: 100%;
}

.option-select {
    width: 100%;
    padding: 12px 20px;
    font-family: var(--font-body);
    font-size: 13px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    appearance: none;
    cursor: pointer;
    transition: var(--transition-quick);
}

.option-select:focus {
    outline: none;
    border-color: var(--color-accent);
}

.option-select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-accent);
    pointer-events: none;
}

/* Purchase Controls */
.detail-purchase-row {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
}

.quantity-controller {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    height: 50px;
}

.qty-control-btn {
    background: none;
    border: none;
    width: 45px;
    height: 100%;
    font-size: 16px;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-quick);
}

.qty-control-btn:hover {
    background-color: var(--bg-tertiary);
    color: var(--color-accent);
}

.qty-value {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    width: 40px;
    text-align: center;
    display: inline-block;
}

.detail-purchase-row .btn-primary {
    height: 50px;
    flex-grow: 1;
}

/* Accordions */
.detail-accordions {
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    transition: var(--transition-quick);
}

.accordion-header:hover {
    color: var(--color-accent);
}

.accordion-icon {
    font-size: 12px;
    color: var(--color-accent);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.accordion-item.active .accordion-body {
    max-height: 500px; /* high enough to contain content */
}

.accordion-body p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-bottom: 20px;
    font-weight: 300;
}

/* Scent Notes Pyramid Details Container */
.scent-pyramid-details-container {
    margin: 40px 0;
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    overflow: hidden;
}

.scent-pyramid-details-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: var(--color-accent);
}

.scent-pyramid-detail-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 5px;
}

.scent-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    align-items: center;
}

.scent-badge-detail {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    text-align: center;
    border-radius: 0;
    color: var(--text-light);
}

.scent-badge-detail.top-badge {
    background-color: var(--color-accent-dark);
}

.scent-badge-detail.heart-badge {
    background-color: var(--color-burgundy);
}

.scent-badge-detail.base-badge {
    background-color: var(--color-blue);
}

.scent-notes-text {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.5;
}

/* Product Not Found Fallback Page */
.product-not-found-container {
    text-align: center;
    padding: 100px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.product-not-found-container i {
    font-size: 64px;
    color: var(--color-accent);
    margin-bottom: 30px;
}

.product-not-found-container h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
}

.product-not-found-container p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

/* General overrides for product-card links inside grids */
.product-card-visual-link {
    display: block;
    width: 100%;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
}

.product-card-text-link {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.product-card-text-link:hover .product-name {
    color: var(--color-accent);
}

/* Horizontal card fixes for link wrapper */
.product-card.horizontal .product-card-visual-link {
    width: 45%;
    display: block;
}

.product-card.horizontal .product-card-visual-link .product-image-container {
    width: 100%;
    height: 100%;
    min-height: 380px;
}

/* Accordion list custom layout */
.spec-list-detail {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec-list-detail li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    padding-bottom: 8px;
}

.spec-list-detail li span.label {
    font-weight: 600;
    color: var(--text-secondary);
}

.spec-list-detail li span.value {
    color: var(--text-primary);
}

/* Responsive details layout overrides */
@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-detail-gallery {
        position: relative;
        top: 0;
    }
    
    .gallery-image-wrapper img {
        max-height: 380px;
    }
    
    .product-detail-title {
        font-size: 36px;
    }
    
    .scent-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .scent-badge-detail {
        align-self: flex-start;
    }

    .product-card.horizontal .product-card-visual-link {
        width: 100%;
    }
    .product-card.horizontal .product-card-visual-link .product-image-container {
        width: 100%;
        height: 280px;
        min-height: 280px;
    }
}

/* Customized Gifting Section in Cart Drawer */
.cart-gifting-section {
    margin: 25px 0 15px 0;
    padding: 20px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.cart-gifting-section.active {
    border-color: var(--color-accent);
}

.cart-gifting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-gifting-label-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-gifting-label-wrapper i {
    color: var(--color-accent-dark);
    font-size: 16px;
}

.cart-gifting-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.cart-gifting-checkbox-custom {
    position: relative;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-accent);
}

.cart-gifting-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
    opacity: 0;
}

.cart-gifting-panel.active {
    max-height: 400px;
    opacity: 1;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.gifting-field-group {
    margin-bottom: 15px;
}

.gifting-field-group:last-child {
    margin-bottom: 0;
}

.gifting-field-group label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.gifting-select, .gifting-textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: 13px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s ease;
}

.gifting-select:focus, .gifting-textarea:focus {
    border-color: var(--color-accent);
}

.gifting-textarea {
    height: 65px;
    resize: none;
    line-height: 1.5;
}

.gifting-char-counter {
    text-align: right;
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 3px;
}

.gifting-upload-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}

.gifting-upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.gifting-upload-btn {
    border: 1px dashed var(--color-accent);
    color: var(--color-accent-dark);
    background-color: transparent;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.gifting-upload-btn:hover {
    background-color: var(--color-accent);
    color: var(--bg-primary);
    border-style: solid;
}

.gifting-upload-btn-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}

.gifting-preview-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
}

.gifting-image-preview {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    border: 1px solid var(--color-accent);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-sm);
}

.gifting-image-remove-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--color-burgundy);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

/* Success Modal Gifting Summary Card */
.success-gift-box {
    margin: 20px auto 0 auto;
    padding: 15px 20px;
    background-color: rgba(212, 175, 55, 0.04);
    border: 1px dashed var(--color-accent);
    border-radius: 4px;
    max-width: 360px;
    text-align: left;
}

.success-gift-box h4 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.success-gift-occasion-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    background-color: var(--color-accent);
    color: var(--bg-primary);
    margin-bottom: 8px;
}

.success-gift-message {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-primary);
    font-style: italic;
    background: rgba(0, 0, 0, 0.02);
    padding: 10px;
    border-left: 2px solid var(--color-accent);
}

.success-gift-preview-img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
    margin-top: 10px;
    border: 1px solid var(--border-color);
    display: block;
}

/* ==========================================================================
   GAMIFIED SCENT FINDER QUIZ & ALCHEMY LAB STYLES
   ========================================================================== */

/* Alchemy Lab Screen Container */
.alchemy-lab-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
    text-align: center;
}

.flask-visual-wrapper {
    position: relative;
    width: 140px;
    height: 180px;
    margin-bottom: 30px;
}

/* Glassmorphic Alchemy Beaker */
.alchemy-beaker {
    position: relative;
    width: 120px;
    height: 160px;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px 10px 60px 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15),
                inset 0 4px 10px rgba(255, 255, 255, 0.2);
    overflow: hidden;
    z-index: 2;
}

.beaker-neck {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 40px;
    border-left: 3px solid rgba(255, 255, 255, 0.4);
    border-right: 3px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    z-index: 3;
}

.beaker-neck::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -6px;
    width: 38px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

.beaker-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: transparent;
}

/* Beaker Liquid Layers (Animated) */
.beaker-liquid {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0%;
    transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom;
}

/* Gradients for note layers */
.base-liquid {
    bottom: 0;
    background: linear-gradient(0deg, rgba(88, 57, 39, 0.8) 0%, rgba(139, 90, 60, 0.7) 100%);
    z-index: 1;
}

.middle-liquid {
    bottom: 0; /* starts at bottom, sits above base dynamically via JS */
    background: linear-gradient(0deg, rgba(186, 85, 211, 0.7) 0%, rgba(218, 112, 214, 0.6) 100%);
    z-index: 2;
}

.top-liquid {
    bottom: 0; /* sits on top of middle dynamically via JS */
    background: linear-gradient(0deg, rgba(255, 165, 0, 0.7) 0%, rgba(255, 215, 0, 0.6) 100%);
    z-index: 3;
}

/* Rising bubbles */
.beaker-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 4;
    pointer-events: none;
}

.flask-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    bottom: 0;
    animation: riseBubble 2.5s infinite linear;
}

/* Steam/Vapor effect */
.beaker-steam-system {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 30px;
    z-index: 1;
    pointer-events: none;
}

.steam-cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    filter: blur(4px);
    border-radius: 50%;
    width: 15px;
    height: 15px;
    bottom: 0;
    animation: floatSteam 2s infinite ease-out;
}

/* Alchemy Typography & Progress */
.alchemy-title-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.alchemy-subtitle-text {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    min-height: 20px;
    font-weight: 300;
}

.alchemy-progress-track {
    width: 250px;
    height: 6px;
    background-color: var(--bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.alchemy-progress-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: 3px;
    transition: width 0.1s linear;
}

/* ==========================================================================
   TAROT CARD FLIP REVEAL
   ========================================================================== */

.scent-card-reveal-container {
    width: 100%;
    perspective: 1200px; /* enables 3D depth */
    display: flex;
    justify-content: center;
    margin: 30px auto;
}

.scent-tarot-card {
    width: 100%;
    max-width: 460px;
    height: 380px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    animation: cardFloat 4s infinite ease-in-out;
}

.scent-tarot-card.flipped {
    transform: rotateY(180deg);
}

.card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* hides back side during flip */
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Tarot Card Front Face Styling (Mystic Aesthetic) */
.card-front {
    background: radial-gradient(circle at center, #232c28 0%, #151a18 100%);
    border: 2px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-mystic-design {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    padding: 30px;
    text-align: center;
    width: 88%;
    height: 88%;
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    position: relative;
}

.card-mystic-design i {
    font-size: 55px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.card-brand-name {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--color-accent);
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.card-pulse-ring {
    position: absolute;
    width: 90px;
    height: 90px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    top: 30%;
    animation: ringPulse 2s infinite ease-out;
    opacity: 0;
    pointer-events: none;
}

.card-instruction-text {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--bg-primary);
    background-color: var(--color-accent);
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
}

.scent-tarot-card:hover .card-instruction-text {
    transform: scale(1.05);
    background-color: var(--color-accent-dark);
}

/* Tarot Card Back Face (The revealed recommended product) */
.card-back {
    transform: rotateY(180deg);
    background-color: var(--bg-primary);
}

.card-back .recommended-product-card {
    margin: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    border: 2px solid var(--color-accent);
    border-radius: 12px;
}

/* Sparkle Particle for Reveal Animation */
.sparkle-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent);
    pointer-events: none;
    z-index: 100;
    animation: explodeParticle 1s forwards ease-out;
}

/* ==========================================================================
   PERSONALITY BADGE STYLING
   ========================================================================== */

.badge-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 10px 15px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

.badge-icon-box {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 16px;
    box-shadow: 0 3px 8px rgba(212, 175, 55, 0.3);
}

.badge-text-box {
    display: flex;
    flex-direction: column;
}

.badge-label-top {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    font-weight: 600;
}

.badge-title-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-accent-dark);
}

/* Scoring Ring indicator */
.match-score-pill {
    display: inline-block;
    padding: 3px 8px;
    background-color: var(--color-green);
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(46, 117, 89, 0.3);
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */

@keyframes riseBubble {
    0% {
        transform: translateY(0) scale(0.6);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-130px) scale(1.1);
        opacity: 0;
    }
}

@keyframes floatSteam {
    0% {
        transform: translate(-50%, 0) scale(0.8);
        opacity: 0;
    }
    30% {
        opacity: 0.5;
    }
    100% {
        transform: translate(-30px, -50px) scale(1.6);
        opacity: 0;
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes ringPulse {
    0% {
        transform: scale(0.6);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes explodeParticle {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--x), var(--y)) scale(0);
        opacity: 0;
    }
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.spin-slow {
    animation: spin-slow 12s infinite linear;
}

@media (max-width: 768px) {
    .scent-tarot-card {
        height: 480px;
    }
    .card-back .recommended-product-card {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    .rec-product-image {
        height: 130px;
    }
}

/* COD Belgaum specific styling */
.cod-helper-text {
    font-size: 11px;
    display: block;
    color: var(--color-accent);
    margin-top: 4px;
    font-weight: 500;
}

.field-helper-text {
    font-size: 11px;
    color: var(--text-secondary);
    display: block;
    margin-top: 6px;
    font-weight: 400;
}

.field-helper-text i {
    color: var(--color-accent);
    margin-right: 4px;
}

.checkout-error-message {
    background-color: rgba(239, 83, 80, 0.1);
    border: 1px solid rgba(239, 83, 80, 0.3);
    color: #ef5350;
    padding: 12px 15px;
    font-size: 13px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeIn 0.4s ease;
}

/* Shop Category Quick Links navigation bar */
.shop-quick-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
    margin-bottom: 45px;
}

.quick-link-btn {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
}

.quick-link-btn:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.quick-link-btn.highlight {
    border-color: var(--color-accent);
    color: var(--color-accent);
    font-weight: 600;
}

/* Policy Modal styling */
.policy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 11000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.policy-modal.active {
    display: flex;
    opacity: 1;
}

.policy-modal-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 100%;
    max-width: 700px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.policy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
}

.policy-modal-header h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-accent);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-modal-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.policy-modal-close-btn:hover {
    color: var(--color-accent);
}

.policy-modal-body {
    padding: 24px;
    overflow-y: auto;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-height: calc(80vh - 70px);
}

.policy-modal-body h4 {
    color: var(--text-primary);
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.policy-modal-body h5 {
    color: var(--text-primary);
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 6px;
    font-size: 13px;
}

.policy-modal-body p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.policy-modal-body ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-modal-body li {
    margin-bottom: 5px;
    list-style-type: disc;
    color: var(--text-secondary);
}

.policy-modal-body strong {
    color: var(--text-primary);
    font-weight: bold;
}

.policy-modal-body a {
    color: var(--color-accent);
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.policy-modal-body a:hover {
    color: var(--color-accent-hover);
}

/* Image Zoom Lightbox styling */
.gallery-image-wrapper {
    cursor: zoom-in;
}

.gallery-image-wrapper::after {
    content: "\f00e   Zoom View";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(197, 168, 128, 0.4);
}

.gallery-image-wrapper:hover::after {
    opacity: 1;
}

.image-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10500;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 10600;
    transition: transform 0.2s ease, color 0.2s ease;
}

.lightbox-close-btn:hover {
    transform: scale(1.1);
    color: var(--color-accent);
}

.lightbox-content-container {
    max-width: 90%;
    max-height: 85%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
    position: relative;
}

.lightbox-content-container.zoomed {
    cursor: zoom-out;
}

.lightbox-content-container img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    user-select: none;
}

.lightbox-content-container.zoomed img {
    transform: scale(2.2);
}

.lightbox-caption {
    position: absolute;
    bottom: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    pointer-events: none;
}

/* Out of Stock visual treatments */
.product-card.out-of-stock {
    position: relative;
}

.product-card.out-of-stock .product-image-container {
    position: relative;
}

.product-card.out-of-stock .product-image-container::before {
    content: "OUT OF STOCK";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.7);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    z-index: 6;
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.product-card.out-of-stock .add-to-cart-btn {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--border-color) !important;
    color: var(--text-muted) !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.product-card.out-of-stock .product-name,
.product-card.out-of-stock .product-desc,
.product-card.out-of-stock .product-price {
    opacity: 0.6;
}

/* ==========================================================================
   TRUST PROMISES & BRAND VALUES
   ========================================================================== */
.trust-promises-sec {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.promise-card {
    background-color: var(--bg-primary);
    padding: 50px 30px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promise-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.promise-icon {
    font-size: 28px;
    color: var(--color-accent);
    margin-bottom: 20px;
    transition: var(--transition-quick);
}

.promise-card:hover .promise-icon {
    transform: scale(1.15);
    color: var(--color-accent-hover);
}

.promise-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.promise-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ==========================================================================
   CUSTOMER TESTIMONIALS
   ========================================================================== */
.testimonials-sec {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-secondary);
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-primary);
}

.testimonial-stars {
    color: var(--color-accent);
    font-size: 14px;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 16px;
    border: 1px solid var(--border-color);
}

.author-info h4.author-name {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.author-info p.author-location {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-sec {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    transition: var(--transition-quick);
}

.faq-item.active {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-sm);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-primary);
    font-weight: 600;
    transition: var(--transition-quick);
}

.faq-trigger:hover {
    color: var(--color-accent-dark);
}

.faq-icon {
    font-size: 14px;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-content-inner {
    padding: 0 30px 24px 30px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS
   ========================================================================== */
@media (max-width: 992px) {
    .promises-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .promises-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .promise-card {
        padding: 35px 25px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonial-card {
        padding: 30px;
    }
    .faq-trigger {
        padding: 20px;
        font-size: 18px;
    }
    .faq-content-inner {
        padding: 0 20px 20px 20px;
    }
}




