/*
========================================================================
AÉRA THEME - MAIN LUXURY BRAND STYLES & DESIGN SYSTEM
========================================================================
*/

/* --- CORE GLOBAL STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-primary, #0A0A0A);
    color: var(--color-text-light, #F5F0EB);
    font-family: 'Inter', system-ui, sans-serif;
}

body {
    background-color: var(--color-bg-primary, #0A0A0A);
    color: var(--color-text-light, #F5F0EB);
    line-height: 1.62;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .CormorantGaramond {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    color: var(--color-text-light);
    letter-spacing: -0.01em;
}

a {
    color: var(--color-accent-gold, #C9A96E);
    text-decoration: none;
    transition: var(--transition-smooth, all 0.4s ease);
}

a:hover {
    color: #fff;
}

ul {
    list-style: none;
}

/* --- BUTTONS SYSTEM --- */
.btn-gold-solid {
    display: inline-block;
    padding: 1rem 2.2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background-color: var(--color-accent-gold, #C9A96E);
    color: #0A0A0A;
    border: 1px solid var(--color-accent-gold, #C9A96E);
    cursor: pointer;
    transition: var(--transition-smooth, all 0.4s ease);
    text-align: center;
}

.btn-gold-solid:hover {
    background-color: transparent;
    color: var(--color-accent-gold, #C9A96E);
    box-shadow: 0 0 15px rgba(201, 169, 110, 0.4);
}

.btn-gold-outline {
    display: inline-block;
    padding: 1rem 2.2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background-color: transparent;
    color: var(--color-accent-gold, #C9A96E);
    border: 1px solid var(--color-accent-gold, #C9A96E);
    cursor: pointer;
    transition: var(--transition-smooth, all 0.4s ease);
    text-align: center;
}

.btn-gold-outline:hover {
    background-color: var(--color-accent-gold, #C9A96E);
    color: #0A0A0A;
    box-shadow: 0 0 15px rgba(201, 169, 110, 0.3);
}

/* --- BORDERS & SHADOWS --- */
.border-gold-glow {
    border: 1px solid var(--color-border, rgba(201,169,110,0.2));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.border-gold-glow:hover {
    border-color: var(--color-accent-gold, #C9A96E);
    box-shadow: 0 15px 35px rgba(201, 169, 110, 0.15);
}

.gold-framed {
    border: 1px solid var(--color-border);
    padding: 0.75rem;
    background-color: var(--color-surface);
}

/* --- SITE FIXED HEADER --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1.25rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Site Branding */
.site-branding {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    line-height: 1;
}

.logo-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    font-weight: 300;
    letter-spacing: 0.42em;
    color: var(--color-accent-gold, #C9A96E);
    margin-top: 0.2rem;
}

/* Navigation */
.main-navigation .nav-menu {
    display: flex;
    gap: 3rem;
}

.main-navigation .nav-menu a {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-text-muted);
}

.main-navigation .nav-menu a:hover {
    color: var(--color-accent-gold);
}

/* Icons block */
.header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-icon-btn {
    background: none;
    border: none;
    color: var(--color-text-light);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

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

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--color-accent-gold);
    color: #0A0A0A;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Toggles */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-box {
    width: 24px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 24px;
    height: 1px;
    background-color: var(--color-text-light);
    position: absolute;
    transition: var(--transition-smooth);
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before {
    content: '';
    top: -8px;
}

.hamburger-inner::after {
    content: '';
    bottom: -8px;
}

/* --- SEARCH OVERLAY STYLES --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth, all 0.4s ease);
}

.search-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.search-close-btn {
    position: absolute;
    top: 3rem;
    right: 3rem;
    background: none;
    border: none;
    color: var(--color-accent-gold);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.search-close-btn:hover {
    color: #fff;
    transform: rotate(90deg);
}

.search-overlay-content {
    width: 100%;
    max-width: 800px;
    padding: 0 2rem;
    text-align: center;
}

.search-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--color-accent-gold);
    margin-bottom: 2rem;
}

.search-field-overlay {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--color-text-light);
    text-align: center;
    transition: var(--transition-smooth);
}

.search-field-overlay:focus {
    outline: none;
    border-color: var(--color-accent-gold);
}

.search-submit-overlay {
    background: none;
    border: 1px solid var(--color-accent-gold);
    color: var(--color-accent-gold);
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin-top: 3rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.search-submit-overlay:hover {
    background-color: var(--color-accent-gold);
    color: #0A0A0A;
}

/* --- MOBILE DRAWER STYLES --- */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 5000;
    transition: var(--transition-smooth);
}

.mobile-nav-drawer.open {
    left: 0;
}

.mobile-nav-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.mobile-nav-drawer-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 100%;
    background-color: var(--color-surface);
    box-shadow: 10px 0 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    z-index: 10;
}

.mobile-nav-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.mobile-logo-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--color-accent-gold);
    font-size: 2.2rem;
    cursor: pointer;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
}

.mobile-nav-menu a {
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

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

.mobile-nav-footer {
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
}

.mobile-nav-footer p {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-accent-gold);
}

/* Adjust layout space below fixed header */
body {
    padding-top: 5.5rem;
}


/* --- LANDING PAGES LAYOUT STYLING --- */

/* Hero */
.hero-section {
    position: relative;
    padding: var(--spacing-lg) 0 var(--spacing-xl) 0;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at bottom, rgba(255, 68, 68, 0.15) 0%, rgba(10, 10, 10, 0) 70%);
    pointer-events: none;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 200;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 6rem;
}

.hero-product-image-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.hero-product-image {
    width: 100%;
    height: auto;
}

.hero-divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(201,169,110,0) 0%, rgba(201,169,110,0.2) 50%, rgba(201,169,110,0) 100%);
    margin-top: var(--spacing-lg);
}

/* Social Proof Bar */
.social-proof-bar {
    background-color: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
}

.proof-items-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-text-light);
}

.proof-pipe {
    color: rgba(201,169,110,0.3);
}

/* Sections Styling Global */
.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-accent-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto 2rem auto;
}

.gold-accent-line {
    width: 60px;
    height: 1px;
    background-color: var(--color-accent-gold);
    margin: 0.5rem auto 3.5rem auto;
}

.gold-accent-line-left {
    width: 60px;
    height: 1px;
    background-color: var(--color-accent-gold);
    margin: 0.5rem 0 3rem 0;
}

/* Problem Section */
.problem-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-primary);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    margin-top: 1rem;
}

.problem-column {
    text-align: center;
    padding: var(--spacing-md);
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
}

.problem-icon {
    color: var(--color-accent-gold);
    margin-bottom: 1rem;
}

.problem-stat {
    font-size: 4.5rem;
    color: var(--color-accent-gold);
    font-weight: 200;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.problem-column h4 {
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.problem-column p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-secondary);
}

.grid-two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    align-items: center;
}

.solution-image {
    width: 100%;
    height: auto;
}

.solution-text-container .section-title {
    text-align: left;
}

.section-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.solution-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.solution-bullets li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.bullet-checkmark {
    color: var(--color-accent-gold);
    font-size: 1.25rem;
    line-height: 1;
}

.solution-bullets strong {
    color: var(--color-text-light);
    font-weight: 500;
}

/* Numbered Features */
.numbered-features-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-primary);
}

.feature-block-layout {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: var(--spacing-lg);
}

.feature-block-layout.reverse {
    flex-direction: row-reverse;
}

.feature-block-image {
    flex: 1;
}

.feature-block-image img {
    width: 100%;
    height: auto;
}

.feature-block-text {
    flex: 1;
    position: relative;
    padding-left: 2rem;
}

.ghost-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 200;
    color: rgba(201, 169, 110, 0.08);
    position: absolute;
    top: -80px;
    left: -20px;
    line-height: 1;
}

.feature-headline {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* How to Use Section */
.how-to-use-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-secondary);
}

.timeline-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.timeline-step {
    text-align: center;
    position: relative;
}

.timeline-number-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--color-accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-accent-gold);
    margin: 0 auto 1.5rem auto;
    background-color: var(--color-bg-secondary);
}

.timeline-step-title {
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.timeline-step-desc {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* What's In the Box */
.in-the-box-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-primary);
}

.box-contents-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.box-item-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: var(--spacing-md);
    text-align: center;
    transition: var(--transition-smooth);
}

.box-item-card:hover {
    border-color: var(--color-accent-gold);
}

.box-item-num {
    display: block;
    font-size: 1.5rem;
    color: var(--color-accent-gold);
    margin-bottom: 0.75rem;
}

.box-item-name {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.box-item-desc {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.unboxing-lifestyle-image-container {
    width: 100%;
}

.unboxing-image {
    width: 100%;
    height: auto;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-secondary);
}

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

.testimonial-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 3rem;
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent-gold);
    box-shadow: 0 15px 35px rgba(201, 169, 110, 0.1);
}

.gold-quotes {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 5rem;
    color: var(--color-accent-gold);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
    pointer-events: none;
}

.testimonial-text {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 500;
    color: var(--color-accent-gold);
}

.author-location {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Purchase Section Variant Selector style */
.purchase-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-primary);
}

.purchase-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 1px;
}

.purchase-image-column {
    padding: 3rem;
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.purchase-main-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.purchase-image-gallery-thumbnails {
    display: flex;
    gap: 1rem;
}

.thumb-selector {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.thumb-selector.active, .thumb-selector:hover {
    border-color: var(--color-accent-gold);
}

.purchase-details-column {
    padding: 3.5rem;
}

.brand-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--color-accent-gold);
    display: block;
    margin-bottom: 0.75rem;
}

.purchase-product-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

.rating-count {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-size: 1.25rem;
}

.sale-price {
    font-size: 2.2rem;
    color: var(--color-accent-gold);
    font-weight: bold;
}

.save-badge {
    background-color: rgba(255, 68, 68, 0.1);
    color: #FF4444;
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 500;
}

.purchase-short-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.swatches-container {
    margin-bottom: 2.5rem;
}

.swatch-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.swatch-buttons {
    display: flex;
    gap: 1rem;
}

.swatch-btn {
    background-color: transparent;
    border: 1px solid var(--color-border);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--color-text-light);
    transition: var(--transition-smooth);
}

.swatch-btn.active, .swatch-btn:hover {
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
}

.swatch-color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
}

.qty-and-button-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-stepper {
    display: flex;
    border: 1px solid var(--color-border);
}

.qty-btn {
    background: none;
    border: none;
    color: var(--color-text-light);
    width: 44px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.quantity-stepper input {
    background: none;
    border: none;
    width: 44px;
    text-align: center;
    color: var(--color-text-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.trust-icons-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
    gap: 1.5rem;
}

.trust-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.trust-icon span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* FAQ Accordion */
.faq-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-secondary);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.accordion-header {
    background: none;
    border: none;
    width: 100%;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--color-text-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    text-align: left;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--color-accent-gold);
    transition: var(--transition-smooth);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-item.active .accordion-body {
    max-height: 300px;
    padding-bottom: 2rem;
}

.accordion-body p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Trust strip and final CTA */
.trust-strip-cta {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.radial-red-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.08) 0%, rgba(10, 10, 10, 0) 70%);
    pointer-events: none;
}

.trust-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.trust-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-weight: 200;
}

.trust-cta-btn-wrap {
    display: inline-block;
}


/* --- SITE FOOTER --- */
.site-footer {
    background-color: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-lg) 0 0 0;
}

.footer-grid {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem 4rem 3rem;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
}

.brand-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    color: #fff;
    line-height: 1;
}

.footer-subtitle {
    font-size: 0.55rem;
    letter-spacing: 0.42em;
    color: var(--color-accent-gold);
    margin-top: 0.2rem;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
}

.footer-socials a {
    color: var(--color-text-muted);
}

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

.footer-column h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column ul a {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-column ul a:hover {
    color: var(--color-accent-gold);
}

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

.footer-bottom-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.payment-badges {
    display: flex;
    gap: 1rem;
}

.payment-badge {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 2px;
}


/* --- LAYOUT UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.small-container {
    max-width: 800px;
}

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

/* --- BLOG INDEX & PAGES --- */
.aera-page-hero {
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--color-border);
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: var(--spacing-lg) 0;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-card-content {
    padding: 2rem;
}

.entry-date {
    font-size: 0.7rem;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.5rem;
}

.entry-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.entry-excerpt p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more-link {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* --- LEGAL LAYOUT (TOC SIDEBAR) --- */
.legal-page-container {
    padding: var(--spacing-lg) 0;
}

.grid-sidebar-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
}

.legal-sidebar {
    position: relative;
}

.sticky-legal-nav {
    position: sticky;
    top: 8rem;
}

.sidebar-title {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-accent-gold);
    margin-bottom: 1.5rem;
}

.legal-toc-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.legal-toc-list a {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.legal-toc-list a.active, .legal-toc-list a:hover {
    color: var(--color-accent-gold);
    font-weight: 500;
}

.btn-print-doc {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
}

.legal-content .section-label {
    margin-bottom: 0.5rem;
}

.legal-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

.legal-prose {
    margin-top: 2rem;
}

.lead-prose {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    font-weight: 200;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 3.5rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 2rem;
}

.legal-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.legal-section p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}


/* --- ORDER TRACKING PAGE --- */
.tracking-page-container {
    padding: var(--spacing-lg) 0;
}

.tracking-form-box {
    background-color: var(--color-surface);
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto 3.5rem auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    background-color: #1a1a1a;
    border: 1px solid var(--color-border);
    padding: 1rem;
    color: var(--color-text-light);
    font-family: 'Inter', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-accent-gold);
}

.tracking-results-box {
    background-color: var(--color-surface);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-header h3 {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}

.est-delivery {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.stepper-bar-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 4rem;
    padding: 0 1.5rem;
}

.stepper-line {
    position: absolute;
    top: 15px;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background-color: var(--color-border);
    z-index: 1;
}

.stepper-line-fill {
    height: 100%;
    background-color: var(--color-accent-gold);
    width: 0;
    transition: width 0.8s ease-in-out;
}

.step-node {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.step-node.active .step-circle {
    border-color: var(--color-accent-gold);
    background-color: var(--color-accent-gold);
    color: #0A0A0A;
}

.step-label {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-family: 'Inter', sans-serif;
}

.step-node.active .step-label {
    color: var(--color-accent-gold);
}

.tracking-metadata-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.meta-item {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.meta-item strong {
    color: var(--color-text-light);
    display: block;
    margin-top: 0.25rem;
}

.error-no-found {
    padding: 4rem 2rem;
}

.error-icon {
    font-size: 3rem;
    color: #FF4444;
    margin-bottom: 1.5rem;
}


/* --- REFUND PAGE --- */
.refund-hero-banner {
    position: relative;
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-secondary);
}

.refund-steps-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-primary);
}

.steps-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.step-card {
    background-color: var(--color-surface);
    padding: 3rem;
    text-align: center;
    position: relative;
}

.step-num-accent {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: rgba(201, 169, 110, 0.1);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.step-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    z-index: 2;
    position: relative;
}

.step-card p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    z-index: 2;
    position: relative;
}

.refund-policy-details {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-secondary);
}

.policy-prose-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

.policy-prose-block p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.refund-contact-cta {
    background-color: var(--color-surface);
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.refund-contact-cta h4 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.refund-contact-cta p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}


/* --- ACCESSIBILITY FOCUS RINGS --- */
a:focus, button:focus, select:focus, input:focus, textarea:focus {
    outline: 2px solid var(--color-accent-gold);
    outline-offset: 3px;
}


/* --- RESPONSIVE ADJUSTMENTS --- */
@media screen and (max-width: 1024px) {
    .grid-two-columns, .pdp-grid-layout, .purchase-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .purchase-image-column {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }
    
    .feature-block-layout, .feature-block-layout.reverse {
        flex-direction: column;
        gap: 3rem;
    }
    
    .feature-block-text {
        padding-left: 0;
    }
    
    .grid-sidebar-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .legal-sidebar {
        display: none; /* simple hidden on mobile legal pages for ease */
    }
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 4.5rem;
    }
    
    .header-container {
        padding: 1rem 1.5rem;
    }
    
    .main-navigation {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .problem-grid, .timeline-container, .box-contents-grid, .testimonials-grid, .steps-grid-three {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-step {
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 1.5rem;
    }
    
    .timeline-step::after {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem 3rem 1.5rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1.5rem;
        text-align: center;
    }
}

/* --- Landing purchase section repair: real WooCommerce data without layout breakage --- */
.purchase-section .container {
    width: min(100% - 2rem, 1240px);
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.purchase-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    align-items: stretch;
    overflow: hidden;
    min-width: 0;
}

.purchase-image-column,
.purchase-details-column {
    min-width: 0;
    box-sizing: border-box;
}

.purchase-image-column {
    position: relative;
    min-height: 560px;
    background: radial-gradient(circle at center, rgba(201,169,110,0.08), transparent 58%);
}

.purchase-main-image {
    display: block;
    width: 100%;
    max-width: 560px;
    max-height: 560px;
    height: auto;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
}

.purchase-image-gallery-thumbnails {
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 100%;
    padding: 0.25rem 0 0.5rem;
    -webkit-overflow-scrolling: touch;
}

.thumb-selector {
    flex: 0 0 74px;
    width: 74px;
    height: 74px;
    background: rgba(245,240,235,0.035);
}

.purchase-product-title {
    font-size: clamp(2.1rem, 4vw, 3.25rem);
    line-height: 0.96;
    overflow-wrap: anywhere;
}

.rating-display,
.price-display {
    flex-wrap: wrap;
    min-width: 0;
}

.price-display .price,
.price-display .woocommerce-Price-amount,
.price-display ins,
.price-display del {
    color: inherit;
}

.price-display ins {
    text-decoration: none;
    color: var(--color-accent-gold);
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    font-weight: 700;
}

.price-display > .woocommerce-Price-amount,
.price-display .price > .woocommerce-Price-amount {
    color: var(--color-accent-gold);
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    font-weight: 700;
}

.price-display del {
    color: var(--color-text-muted);
    opacity: 0.75;
    font-size: 1.05rem;
}

.swatch-buttons {
    flex-wrap: wrap;
}

.swatch-btn {
    min-height: 48px;
    max-width: 100%;
}

.swatch-color-dot:empty {
    background: linear-gradient(135deg, #2e2e2e, #a34848);
    border: 1px solid rgba(201,169,110,0.45);
}

.landing-cart-form,
.qty-and-button-row {
    min-width: 0;
}

.qty-and-button-row {
    align-items: stretch;
}

.quantity-stepper {
    flex: 0 0 136px;
    min-height: 54px;
}

.quantity-stepper input,
.quantity-stepper .qty-btn {
    min-height: 52px;
}

.btn-add-to-cart-landing {
    flex: 1 1 auto;
    min-width: 190px;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.aera-cart-form-status {
    margin-top: -0.75rem;
    margin-bottom: 1.25rem;
}

.trust-icons-strip {
    align-items: start;
}

.trust-icon {
    min-width: 0;
}

.trust-icon span {
    overflow-wrap: anywhere;
}

@media screen and (max-width: 1024px) {
    .purchase-grid {
        grid-template-columns: 1fr !important;
    }

    .purchase-image-column {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding: clamp(1.5rem, 5vw, 3rem);
    }

    .purchase-details-column {
        padding: clamp(1.5rem, 5vw, 3rem);
    }

    .purchase-main-image {
        max-height: 520px;
    }
}

@media screen and (max-width: 640px) {
    .purchase-section .container {
        width: min(100% - 1rem, 100%);
    }

    .purchase-image-column,
    .purchase-details-column {
        padding: 1.15rem;
    }

    .purchase-main-image {
        max-height: 390px;
        margin-bottom: 1.25rem;
    }

    .thumb-selector {
        flex-basis: 62px;
        width: 62px;
        height: 62px;
    }

    .rating-display,
    .price-display,
    .qty-and-button-row,
    .trust-icons-strip {
        flex-direction: column;
        align-items: stretch;
    }

    .qty-and-button-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .quantity-stepper,
    .btn-add-to-cart-landing {
        width: 100%;
        flex-basis: auto;
    }

    .trust-icons-strip {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trust-icon {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
}
