/*
Theme Name: Charmed Chews
Theme URI: https://charmedchews.com
Author: Charmed Chews Team
Author URI: https://charmedchews.com
Description: A premium WordPress theme for Charmed Chews - mystical but mature, playful but trustworthy, premium but accessible. Built with WooCommerce support for a world-class edibles e-commerce experience.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: charmed-chews
Tags: e-commerce, woocommerce, cannabis, edibles, premium, modern, responsive
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Design Tokens
2.0 Reset & Base Styles
3.0 Typography
4.0 Layout & Grid
5.0 Components
6.0 Header & Navigation
7.0 Footer
8.0 Homepage Sections
9.0 WooCommerce Styles
10.0 Responsive
11.0 Animations
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Design Tokens
--------------------------------------------------------------*/
:root {
    /* Colors - Charmed Chews Brand Palette (New Premium Guidelines) */
    --color-primary: #4A1D6A;
    /* Deep amethyst purple */
    --color-secondary: #D4A847;
    /* Champagne gold */
    --color-neutral-bg: #FAF7F2;
    /* Soft cream */
    --color-neutral-text: #1A1A2E;
    /* Charcoal */
    --color-accent: #A8C5A0;
    /* Soft sage green */

    --color-muted: #6B5B7B;
    /* Muted purple for subheadings */
    --color-white: #FFFFFF;
    --color-light-purple: #F5F0F8;
    --color-hero-bg: #2B113F;
    /* Darker amethyst for hero */

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing - 8px base unit */
    --space-xs: 0.5rem;
    /* 8px */
    --space-sm: 1rem;
    /* 16px */
    --space-md: 1.5rem;
    /* 24px */
    --space-lg: 2rem;
    /* 32px */
    --space-xl: 3rem;
    /* 48px */
    --space-2xl: 5rem;
    /* 80px */
    --space-3xl: 8rem;
    /* 128px */

    /* Layout */
    --container-max: 1280px;
    --container-padding: 2rem;
    --grid-gap: 2rem;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Shadows */
    /* Much softer, more premium shadows mimicking AG1/Moon Juice */
    --shadow-sm: 0 4px 12px rgba(74, 29, 106, 0.04);
    --shadow-md: 0 8px 24px rgba(74, 29, 106, 0.08);
    --shadow-lg: 0 16px 48px rgba(74, 29, 106, 0.12);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 999px;

    /* Premium accents */
    --color-purple-soft: rgba(74, 29, 106, 0.03);
    --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/*--------------------------------------------------------------
2.0 Reset & Base Styles
--------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-neutral-text);
    background-color: var(--color-neutral-bg);
    overflow-x: hidden;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

/*--------------------------------------------------------------
3.0 Typography
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: var(--space-md);
    color: var(--color-neutral-text);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    letter-spacing: -0.01em;
}

h4 {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
}

p {
    margin-bottom: var(--space-md);
    max-width: 65ch;
    font-size: 0.9375rem;
}

.text-large {
    font-size: 1.25rem;
    line-height: 1.5;
}

.text-small {
    font-size: 0.875rem;
}

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

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

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

/*--------------------------------------------------------------
4.0 Layout & Grid
--------------------------------------------------------------*/
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-3xl) 0;
}

.section-lg {
    padding: var(--space-3xl) 0;
}

.grid {
    display: grid;
    gap: var(--grid-gap);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.flex {
    display: flex;
    gap: var(--space-md);
}

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

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

/*--------------------------------------------------------------
5.0 Components
--------------------------------------------------------------*/

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-pill);
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    min-height: 44px;
    gap: var(--space-xs);
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-neutral-text);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1), 0 4px 12px rgba(212, 168, 71, 0.2);
}

.btn-primary:hover {
    background: #E5B958;
    transform: translateY(-2px);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1), 0 6px 16px rgba(212, 168, 71, 0.3);
    color: var(--color-neutral-text);
}

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

.btn-secondary:hover {
    background: var(--color-purple-soft);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 0.875rem 2.25rem;
    font-size: 1rem;
    min-height: 48px;
}

.btn-full {
    width: 100%;
}

/* Cards */
.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
    background: var(--color-primary);
    color: var(--color-white);
}

.badge-gold {
    background: var(--color-secondary);
    color: var(--color-neutral-text);
}

/* Star Rating */
.star-rating {
    display: inline-flex;
    gap: 0.25rem;
    color: var(--color-secondary);
    font-size: 1rem;
}

/*--------------------------------------------------------------
6.0 Header & Navigation
--------------------------------------------------------------*/
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.announcement-bar {
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
}

.main-navigation {
    padding: var(--space-md) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.site-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.site-logo:hover {
    color: var(--color-primary);
}

.custom-logo-link {
    display: flex;
    align-items: center;
}

img.custom-logo {
    max-width: 140px !important;
    max-height: 50px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    img.custom-logo {
        max-width: 110px !important;
        max-height: 40px !important;
    }
}

.primary-menu {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.primary-menu a {
    font-weight: 500;
    color: var(--color-neutral-text);
    padding: var(--space-xs) var(--space-sm);
    transition: color var(--transition-fast);
}

.primary-menu a:hover {
    color: var(--color-primary);
}

.nav-icons {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.nav-icon {
    position: relative;
    font-size: 1.25rem;
    color: var(--color-neutral-text);
    transition: color var(--transition-fast);
}

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

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-secondary);
    color: var(--color-neutral-text);
    font-size: 0.625rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-neutral-text);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.search-overlay-container {
    width: 100%;
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.active .search-overlay-container {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: -60px;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.search-close:hover {
    transform: rotate(90deg);
}

.search-form-wrapper form {
    position: relative;
    width: 100%;
}

.search-form-wrapper input[type="search"] {
    width: 100%;
    font-size: 2rem;
    font-family: var(--font-display);
    border: none;
    border-bottom: 2px solid var(--color-primary);
    background: transparent;
    padding: 1rem 0;
    color: var(--color-primary);
    outline: none;
}

.search-form-wrapper input[type="search"]::placeholder {
    color: rgba(74, 29, 106, 0.3);
}

/* Hide default webkit 'x' clear button inside search input */
.search-form-wrapper input[type="search"]::-webkit-search-decoration,
.search-form-wrapper input[type="search"]::-webkit-search-cancel-button,
.search-form-wrapper input[type="search"]::-webkit-search-results-button,
.search-form-wrapper input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    display: none;
}

.search-form-wrapper button[type="submit"] {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--color-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

@media screen and (max-width: 768px) {
    .search-form-wrapper input[type="search"] {
        font-size: 1.1rem;
        padding: 0.75rem 0;
    }

    .search-form-wrapper button[type="submit"] {
        font-size: 1rem;
        padding: 8px;
    }
}


/*--------------------------------------------------------------
7.0 Footer
--------------------------------------------------------------*/
.site-footer {
    background: linear-gradient(135deg, #1A0E2A 0%, #432E52 100%) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 6rem 0 2rem !important;
    border-top: none !important;
    margin-top: 0 !important;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section h4 {
    color: var(--color-white);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: var(--space-sm);
    transition: color 0.3s;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--color-white);
}

.footer-section img,
.footer-section .wp-block-image img {
    max-width: 160px !important;
    max-height: 60px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {

    .footer-section img,
    .footer-section .wp-block-image img {
        max-width: 140px !important;
        max-height: 50px !important;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
    color: #fff;
    transform: translateY(-2px);
}


/*--------------------------------------------------------------
8.0 Homepage Sections
--------------------------------------------------------------*/

/* Dark Editorial Hero Section — Full Width Background Image */
.hero-section {
    min-height: 90vh !important;
    display: flex !important;
    align-items: center !important;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    overflow: hidden !important;
    color: #FFFFFF !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Left-side dark gradient overlay for text legibility */
.hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to right,
            rgba(20, 8, 36, 0.90) 0%,
            rgba(26, 14, 42, 0.80) 35%,
            rgba(26, 14, 42, 0.40) 60%,
            rgba(26, 14, 42, 0.0) 100%) !important;
    z-index: 1 !important;
}

.hero-section .container {
    position: relative !important;
    z-index: 2 !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    padding-left: 100px !important;
    padding-right: 0 !important;
    max-width: 100% !important;
}

/* Text sits on the left ~50% */
.hero-section .hero-text {
    max-width: 560px !important;
    width: 50% !important;
    padding-right: 2rem !important;
}

.hero-text h1,
.hero-section h1,
.hero-headline {
    color: #FFFFFF !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.05 !important;
    font-size: 76px !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    white-space: normal !important;
}

.hero-text .subheadline,
.hero-section .subheadline {
    font-size: 1rem !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    margin-bottom: 2.5rem !important;
    max-width: 520px !important;
}

.hero-text .eyebrow-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-md);
}

.hero-text .eyebrow-line {
    width: 30px;
    height: 1px;
    background: var(--color-secondary);
}

.hero-text .eyebrow,
.hero-section .eyebrow {
    color: #D8AA52 !important;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-cta {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
    flex-wrap: wrap;
}

.btn-transparent {
    background: transparent !important;
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none !important;
    transition: color 0.3s;
}

.btn-transparent:hover {
    color: var(--color-secondary);
}

.btn-primary .arrow {
    margin-left: 4px;
    font-size: 1.1em;
}

/* Hero Inline Trust Badges */
.hero-trust-badges {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin-top: 2.5rem !important;
    flex-wrap: nowrap !important;
}

.hero-trust-badges .badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.75) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 100px !important;
    padding: 5px 14px !important;
}

.hero-trust-badges .check {
    color: #D8AA52 !important;
    font-size: 0.65rem !important;
    font-weight: 900 !important;
    background: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    margin-right: 0 !important;
}

.hero-trust-badges .separator {
    display: none !important;
}


.hero-image {
    position: relative;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-image img {
    border-radius: 0;
    box-shadow: none;
    mix-blend-mode: normal;
}

/* Cream Trust Strip */
/* Marquee Trust Strip — seamless dark ticker below hero */
.trust-marquee-wrap {
    background-color: #1A0E2A !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    overflow: hidden !important;
    padding: 16px 0 !important;
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
}

.trust-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    white-space: nowrap;
    animation: marquee-scroll 35s linear infinite;
}

.marquee-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 0 3.5rem !important;
    font-size: 0.62rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.65) !important;
    font-family: 'Inter', sans-serif !important;
    white-space: nowrap !important;
}

.marquee-dot {
    color: #D8AA52 !important;
    font-size: 0.55rem !important;
    flex-shrink: 0 !important;
    opacity: 0.9 !important;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Product Collection */
.product-collection {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-primary);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.section-header .subheading {
    font-size: 1.0625rem;
    color: var(--color-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

.product-grid,
.product-collection .woocommerce ul.products,
.product-collection ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
}


/* Bundle Section */
.bundle-section {
    background: linear-gradient(135deg, #1A0E2A 0%, #432E52 100%) !important;
    padding: 6rem 0 !important;
    color: #FFFFFF !important;
}

.bundle-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bundle-text h2 {
    color: var(--color-white);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.bundle-text .eyebrow {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
}

.bundle-text .subheadline {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.bundle-price-block {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.bundle-price-block .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.bundle-price-block .savings {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 0.875rem;
}

.bundle-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
}

/* Reviews Section */
.reviews-section {
    padding: var(--space-3xl) 0;
    text-align: center;
}

.review-hero {
    margin-bottom: var(--space-xl);
}

.review-hero .rating-number {
    font-size: 3rem;
    font-family: var(--font-display);
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.review-hero .stars {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
}

.review-hero .tagline {
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto;
}

.review-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.review-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: left;
    border: 1px solid rgba(74, 29, 106, 0.08);
    border-left: 3px solid var(--color-primary);
    transition: all var(--transition-spring);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(74, 29, 106, 0.15);
}

.review-card .stars {
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
    letter-spacing: 2px;
}

.review-card .review-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    color: var(--color-neutral-text);
    font-style: italic;
}

.review-card .reviewer {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-neutral-text);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.review-card .verified {
    font-size: 0.8125rem;
    color: var(--color-accent);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* Brand Story */
.brand-story {
    padding: 6rem 0;
    background: #FAF8F5;
}

.story-content {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 5rem;
    align-items: center;
}

/* Image — left column */
.story-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(42, 28, 60, 0.12);
    display: block;
}

/* Text — right column */
.story-text .story-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #D8AA52;
    font-family: 'Inter', sans-serif;
}

.eyebrow-line-gold {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: #D8AA52;
    vertical-align: middle;
    margin-right: 10px;
}

.story-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    color: #2A1C3C;
    font-weight: 700;
    font-style: italic;
    margin: 0.75rem 0 2rem;
    line-height: 1.2;
}

.story-text p {
    font-size: 0.9375rem;
    line-height: 1.9;
    color: #5a4a6a;
    margin-bottom: 1.4rem;
    max-width: 480px;
}

.story-text p strong {
    color: #2A1C3C;
    font-weight: 700;
}

.story-quote {
    border-left: 3px solid #D8AA52;
    padding: 1.25rem 1.5rem;
    margin: 2.25rem 0 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.7;
    color: #2A1C3C;
    font-style: normal;
    background: rgba(216, 170, 82, 0.06);
    border-radius: 0 8px 8px 0;
    max-width: 480px;
}

.story-tagline {
    font-size: 0.9375rem !important;
    font-style: italic;
    color: #7C5E9B !important;
    margin-top: 0 !important;
    opacity: 0.85;
}


/* Email Capture */
.email-capture {
    background: linear-gradient(135deg, #1A0E2A 0%, #432E52 100%);
    color: var(--color-white);
    padding: var(--space-2xl) 0;
    text-align: center;
}


.email-capture h2 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.email-capture .subheading {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.email-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 500px;
    margin: 0 auto;
}

.email-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--color-white);
    border-radius: var(--radius-pill);
    font-size: 0.9375rem;
}

.email-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-form input:focus {
    outline: none;
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
}

.email-form button {
    padding: 0.75rem 2rem;
    font-size: 0.9375rem;
    background: var(--color-secondary);
    color: var(--color-neutral-text);
    border-radius: var(--radius-pill);
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(212, 168, 71, 0.2);
}

.email-form button:hover {
    background: #E5B958;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 168, 71, 0.3);
}

@media screen and (max-width: 768px) {
    .email-form button {
        padding: 1rem 2rem;
        /* Matches the padding of the input field above it for consistent height */
        min-height: 52px;
    }
}

.privacy-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-sm);
}

/*--------------------------------------------------------------
9.0 WooCommerce Styles
--------------------------------------------------------------*/

/* Product Cards - Charmed Chews Figma Match */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-xl);
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: left;
    transition: transform 0.4s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
}

.figma-card-inner {
    background: #FFFFFF !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 12px 36px rgba(42, 28, 60, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.figma-product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #F4F1ED;
}

.figma-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.woocommerce ul.products li.product:hover .figma-product-image img {
    transform: scale(1.05);
}

.figma-product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.figma-stars {
    color: var(--color-secondary);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.figma-stars .review-count {
    color: var(--color-muted);
    letter-spacing: normal;
    font-size: 0.75rem;
    margin-left: 4px;
}

.figma-product-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.25rem;
    color: var(--color-primary);
}

.figma-product-title a {
    color: inherit;
    text-decoration: none;
}

.figma-product-subtitle {
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.5;
}

.figma-product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 1.25rem;
    margin-top: auto;
}

.figma-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
}

.figma-price .amount {
    font-size: 0.9375rem;
}

/* Inline Soft Pill Button */
.figma-add-to-cart .button,
.figma-add-to-cart .ajax-add-to-cart {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #F1EBE0 !important;
    /* Soft beige cream */
    color: var(--color-primary) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 99px !important;
    font-weight: 700 !important;
    font-size: 0.7rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.figma-add-to-cart .button:hover,
.figma-add-to-cart .ajax-add-to-cart:hover {
    background: var(--color-secondary) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px) !important;
}

.woocommerce span.onsale {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}

/*--------------------------------------------------------------
9.1 Premium DTC Product Detail Page (PDP)
    Inspired by Hiya · Amble Sheep · Beardbrand · Novelty
--------------------------------------------------------------*/

/* ── 9.1 Experiential Global Setup & Animations ───────────────── */
.charmed-pdp-experiential {
    padding: 0;
    position: relative;
    overflow-x: hidden;
    background: var(--color-neutral-bg);
}

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

/* CSS Variables for Glassmorphism & Depth */
:root {
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px rgba(74, 29, 106, 0.08);
    --glass-blur: blur(12px);

    --wash-purple: rgba(74, 29, 106, 0.04);
    --wash-sage: rgba(168, 197, 160, 0.15);
    --wash-gold: rgba(212, 168, 71, 0.1);
}

/* Grain Overlay for Texture */
.pdp-grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 50;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.025;
}

/* Base Reveal Animations (triggered via JS IntersectionObserver) */
.reveal-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.reveal-slide-up.is-revealed,
.reveal-fade-in.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Pure CSS animations for the Hero Section elements */
.hero-animate-up {
    animation: heroAnimateUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-animate-fade {
    animation: heroAnimateFade 1.2s ease 0.2s forwards;
    opacity: 0;
    /* Starts hidden until animation kicks in */
}

@keyframes heroAnimateUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes heroAnimateFade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* ── HERO: 60/40 Split & Glassmorphism ──────────────────────── */
.pdp-hero-exp {
    position: relative;
    padding: 6rem 0 8rem;
    background: linear-gradient(135deg, #FAF7F2 0%, #EFEAF4 100%);
    overflow: hidden;
}

/* Organic background blobs */
.pdp-hero-exp .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
    animation: floatBlob 15s ease-in-out infinite alternate;
}

.pdp-hero-exp .blob-1 {
    width: 600px;
    height: 600px;
    background: rgba(212, 168, 71, 0.15);
    /* Gold wash */
    top: -100px;
    left: -100px;
}

.pdp-hero-exp .blob-2 {
    width: 500px;
    height: 500px;
    background: rgba(168, 197, 160, 0.2);
    /* Sage wash */
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(80px, -60px) scale(1.1);
    }
}

.pdp-hero-exp-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* exactly 50/50 for balance */
    gap: 3rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

/* Image Visual Column */
.pdp-visual-col {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Gallery Visibility Rules */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Mobile Carousel Base Styles */
.pdp-mobile-carousel {
    position: relative;
    width: 100%;
}

.pdp-carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.pdp-carousel-track::-webkit-scrollbar {
    display: none;
}

.pdp-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: center;
}

.pdp-carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.pdp-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.pdp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(74, 29, 106, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pdp-dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

.pdp-main-image-exp {
    position: relative;
    width: 100%;
    border-radius: 12px;
    background: #fdfdfd;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.pdp-main-image-exp img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1/1;
    /* Ensure square or match reference */
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-main-image-exp:hover img {
    transform: scale(1.03);
}

.pdp-thumbnails-exp {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    justify-content: flex-start;
    /* Align left under image */
}

.pdp-thumb-exp {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: none;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    /* default transparent border */
    background: #fff;
}

.judgeme-badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.judgeme-badge {
    width: 64px !important;
    height: 64px !important;
    object-fit: contain;
    display: inline-block;
}
}

.pdp-thumb-exp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdp-thumb-exp.active,
.pdp-thumb-exp:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: none;
    border-color: #4A1D6A;
    /* Deep Purple from reference */
}

.pdp-thumb-exp img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Right Column: Clean Unboxed Flow */
.pdp-purchase-col {
    padding: 2rem 0 2rem 3rem;
    display: flex;
    flex-direction: column;
}

.pdp-breadcrumb {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.pdp-breadcrumb a {
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.pdp-breadcrumb a:hover {
    color: var(--color-primary);
}

.pdp-title {
    font-family: var(--font-display);
    font-size: 3rem;
    /* Approximating 48px from ref */
    line-height: 1.1;
    font-weight: 400;
    /* Thin serif */
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

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

.pdp-stars {
    color: var(--color-secondary);
    /* Gold stars */
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.pdp-review-count {
    color: var(--color-muted);
    font-size: 0.85rem;
    text-decoration: underline;
    text-decoration-color: rgba(74, 29, 106, 0.2);
}

.pdp-price-block {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pdp-price-current {
    font-size: 1.75rem;
    /* ~28-32px */
    font-weight: 500;
    color: var(--color-primary);
}

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

.pdp-save-pulse {
    display: inline-flex;
    align-items: center;
    background: #E8F0E6;
    /* Sage green background */
    color: #4C7D4A;
    /* Darker sage text */
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    /* Pill shape */
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 0.5rem;
}

.pdp-short-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-neutral-text);
    margin-bottom: 3rem;
}

/* Custom Variant Pills */
.pdp-variants-custom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.variant-group-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
}

.variant-label-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.variant-label-value {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.variant-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.variant-pill {
    background: transparent;
    border: 1px solid #E5E7EB;
    border-radius: 50px;
    /* Pill shape */
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-body);
}

.variant-pill:hover {
    border-color: #CBD5E1;
}

.variant-pill.active {
    background: #4A1D6A;
    /* Deep Purple */
    border-color: #4A1D6A;
    color: #ffffff;
}

.variant-pill.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    text-decoration: line-through;
}

/* Add to Cart Actions */
.pdp-action-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.pdp-qty-pill {
    display: flex;
    align-items: center;
    border: 1px solid #E5E7EB;
    border-radius: 50px;
    /* Pill shape */
    padding: 0.25rem;
    background: #fff;
}

.qty-btn {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-primary);
    font-size: 1.25rem;
}

.qty-input {
    width: 36px;
    border: none;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-primary);
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.gold-atc-btn {
    flex: 1;
    background: #D4A847;
    /* Champagne Gold */
    color: #ffffff;
    border: none;
    border-radius: 50px;
    /* Pill shape */
    height: 56px;
    padding: 0 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gold-atc-btn:hover {
    background: #C49A3E;
}

.gold-atc-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #AFAFAF;
}

.buy-now-btn {
    width: 100%;
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 50px;
    /* Pill shape */
    height: 56px;
    padding: 0 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 2rem;
}

.buy-now-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #AFAFAF;
    color: #AFAFAF;
}

.buy-now-btn:hover {
    background: rgba(74, 29, 106, 0.03);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * Product Overview Accordion
 * ───────────────────────────────────────────────────────────────────────────── */
.pdp-accordion-wrapper {
    margin-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pdp-accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pdp-accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    text-align: left;
    transition: color 0.2s ease;
}

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

.accordion-title {
    letter-spacing: 0.02em;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
}

.pdp-accordion-item.is-open .accordion-icon {
    transform: rotate(45deg);
}

.pdp-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pdp-accordion-inner {
    padding-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-neutral-text);
}

.pdp-accordion-inner p:last-child {
    margin-bottom: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * 1% Brand Success Experience (Cart Toast)
 * ───────────────────────────────────────────────────────────────────────────── */
.brand-toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99999;
    pointer-events: none;
    /* Container itself shouldn't block clicks */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-toast {
    pointer-events: auto;
    background: rgba(250, 247, 242, 0.85);
    /* Soft cream with opacity */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Soft diffuse shadow */
    border-radius: 50px;
    /* Pill shape */
    padding: 0.5rem 1.5rem 0.5rem 0.5rem;
    /* Less padding on left for image */
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: toastFloatUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.25) forwards;
    /* Springy bounce */
}

.brand-toast.toast-exit {
    animation: toastFloatDown 0.4s ease-in forwards;
}

.brand-toast-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    /* In case of transparent PNG */
    border: 1px solid var(--border-color);
}

.brand-toast-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-toast-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.2;
}

.brand-toast-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: #D4A847;
    /* Gold */
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.2rem;
    transition: color 0.2s ease;
}

.brand-toast-link:hover {
    color: #C49A3E;
}

@keyframes toastFloatUp {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.9);
    }

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

@keyframes toastFloatDown {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
}

/* Suppress the default generic WooCommerce success notices globally */
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
body.single-product .woocommerce-notices-wrapper {
    display: none !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * Slide-Out Cart Drawer
 * ───────────────────────────────────────────────────────────────────────────── */

/* Overlay that dims the page when drawer opens */
.brand-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.brand-cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* The Drawer itself */
.brand-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    /* explicit bottom anchor */
    width: 420px;
    max-width: 100vw;
    /* Use dynamic viewport height so browser chrome doesn't cut off bottom */
    height: 100vh;
    /* fallback for old browsers */
    height: 100dvh;
    /* Chrome 108+, Firefox 109+ */
    height: -webkit-fill-available;
    /* Safari / WebKit fallback */
    background: #FAF7F2;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.1);
    -webkit-overflow-scrolling: touch;
}

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

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

.brand-cart-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.5rem;
    color: var(--color-primary, #4A1D6A);
    font-weight: 600;
    margin: 0;
}

.brand-cart-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: #aaa;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.brand-cart-close:hover {
    color: var(--color-primary, #4A1D6A);
}

/* Items scrollable area */
.brand-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.75rem;
}

/* Single item row */
.brand-cart-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.brand-cart-item-img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}

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

.brand-cart-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary, #4A1D6A);
    margin: 0 0 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-cart-item-meta {
    font-size: 0.8rem;
    color: #888;
    margin: 0 0 0.35rem;
}

.brand-cart-item-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #D4A847;
}

.brand-cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.35rem;
    margin-bottom: 0.25rem;
}

.brand-cart-item-qty button {
    background: #f0ece7;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: background 0.2s;
}

.brand-cart-item-qty button:hover {
    background: #e0dbd4;
}

.brand-cart-item-qty span {
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

/* Remove × button on each cart item */
.brand-remove-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #ccc;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    align-self: flex-start;
    flex-shrink: 0;
    transition: color 0.2s;
    margin-left: auto;
}

.brand-remove-btn:hover {
    color: var(--color-primary);
}

/* Empty State */
.brand-cart-empty {
    text-align: center;
    padding: 3rem 0;
    color: #aaa;
}

.brand-cart-empty p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.brand-cart-shop-link {
    display: inline-block;
    color: #D4A847;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
}

/* Footer sticky area — padded for iOS safe area / browser chrome */
.brand-cart-footer {
    padding: 1.25rem 1.75rem;
    /* Extra bottom padding for iOS notch & browser address bar */
    padding-bottom: max(1.75rem, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    flex-shrink: 0;
    background: #FAF7F2;
    /* ensure not transparent */
}

.brand-cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.brand-cart-checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #D4A847;
    color: #fff;
    border-radius: 50px;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-decoration: none;
    transition: background 0.2s ease;
    margin-bottom: 0.65rem;
}

.brand-cart-checkout-btn:hover {
    background: #C49A3E;
    color: #fff;
}

.brand-cart-view-bag {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.brand-cart-view-bag:hover {
    opacity: 1;
}

/* Trust Badges */
.pdp-trust-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #F1F5F9;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748B;
}

.trust-item svg {
    color: #94A3B8;
}

.trust-item span {
    font-size: 0.7rem;
    font-weight: 500;
}


/* ── SECTION BASICS ─────────────────────────────────────────── */
.pdp-section {
    padding: 8rem 0;
    border-top: 1px solid rgba(74, 29, 106, 0.04);
}

.exp-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.exp-heading {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.exp-subheading {
    font-size: 1.25rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* ── BENEFITS: Stat Cards ───────────────────────────────────── */
.pdp-benefits-exp {
    background: #fff;
}

.exp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.exp-stat-card {
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.exp-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.bg-wash-purple {
    background: var(--wash-purple);
}

.bg-wash-sage {
    background: var(--wash-sage);
}

.bg-wash-gold {
    background: var(--wash-gold);
}

.stat-visual {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-family: var(--font-display);
    line-height: 1;
}

.stat-number {
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: -0.05em;
}

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 400;
    vertical-align: super;
}

.exp-stat-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.exp-stat-card p {
    font-size: 1rem;
    color: var(--color-neutral-text);
    line-height: 1.6;
    margin: 0;
}


/* ── INGREDIENTS: Macro Storytelling ────────────────────────── */
.pdp-ingredients-exp {
    position: relative;
    background: var(--color-neutral-bg);
    padding-top: 6rem;
}

.bg-curve-svg {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.bg-curve-svg svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.exp-story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 8rem;
    position: relative;
    z-index: 2;
}

.exp-story-row.reversed {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.exp-story-row.reversed>* {
    direction: ltr;
}

.story-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(74, 29, 106, 0.1);
}

.story-image.img-organic-1 {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.story-image.img-organic-2 {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.story-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(74, 29, 106, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-secondary);
}

.exp-story-row .story-content {
    display: block;
}

.story-content h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.story-content p {
    font-size: 1.125rem;
    color: var(--color-neutral-text);
    line-height: 1.7;
}

.btn-lab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid rgba(74, 29, 106, 0.1);
    color: var(--color-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.btn-lab:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}


/* ── HOW TO ENJOY: Timeline & Calculator ────────────────────── */
.pdp-timeline-section {
    background: linear-gradient(180deg, var(--color-light-purple) 0%, #FAF7F2 100%);
}

.calc-glass {
    max-width: 600px;
    margin: 0 auto 6rem;
    background: rgba(255, 255, 255, 0.6);
    /* Let lavender peek through */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 4.5rem;
    /* Increased padding by 50% */
    text-align: center;
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.1);
    /* Dreamy blur shadow */
}

.calc-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    margin-bottom: 2rem;
}

.calc-readout {
    font-family: var(--font-display);
    color: var(--color-primary);
    margin-bottom: 3rem;
    height: 6rem;
    /* fixed height layout to prevent jumping */
    display: flex;
    align-items: center;
    justify-content: center;
}

#dosage-amount {
    font-size: 4.5rem;
    font-weight: 300;
    /* Thin */
    line-height: 1;
    letter-spacing: 0.05em;
    /* Expensive tracking */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

#dosage-amount.animate-out {
    opacity: 0;
    transform: translateY(-10px);
}

#dosage-amount.animate-in {
    animation: textSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes textSlideIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

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

/* Slider Customization */
.calc-slider-wrap {
    position: relative;
    margin-bottom: 2.5rem;
}

input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
    cursor: pointer;
    /* Variables driven by JS */
    --slider-progress: 0%;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 2px;
    /* 2px track */
    /* Fill with gold up to progress, then amethyst */
    background: linear-gradient(to right, #D4A847 0%, #D4A847 var(--slider-progress), rgba(139, 92, 246, 0.3) var(--slider-progress), rgba(139, 92, 246, 0.3) 100%);
    border-radius: 2px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    /* subtle groove */
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #D4A847 0%, #D4A847 var(--slider-progress), rgba(139, 92, 246, 0.3) var(--slider-progress), rgba(139, 92, 246, 0.3) 100%);
    border-radius: 2px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* Large Gold Disk */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #D4A847;
    margin-top: -11px;
    /* Center thumb on 2px track */
    box-shadow: 0 0 15px rgba(212, 168, 71, 0.6);
    /* Subtle gold glow */
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
}

input[type=range]::-moz-range-thumb {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #D4A847;
    border: none;
    box-shadow: 0 0 15px rgba(212, 168, 71, 0.6);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
}

input[type=range]::-webkit-slider-thumb:active,
input[type=range]:focus::-webkit-slider-thumb {
    transform: scale(1.35);
    /* Expand when dragged */
    box-shadow: 0 0 25px rgba(212, 168, 71, 0.8);
    cursor: grab;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    position: relative;
    padding: 0 8px;
    /* Offset to center text under thumb limits */
}

.slider-labels span {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    /* Wide letter spacing */
    color: #a0a0a0;
    /* Light gray */
    transition: color 0.3s ease, transform 0.3s ease;
    transform: translateY(0);
}

.slider-labels span.active {
    color: var(--color-primary);
    /* Deep Purple */
    transform: translateY(-2px);
    font-weight: 600;
}

.calc-desc {
    font-size: 1.0625rem;
    color: var(--color-neutral-text);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* ── ECOSYSTEM: Scrollable Row ───────────────────────────────── */
.pdp-ecosystem-exp {
    /* World-class dynamic dark gradient background */
    background:
        radial-gradient(circle at 15% 50%, rgba(139, 92, 246, 0.15), transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(212, 168, 71, 0.1), transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(74, 29, 106, 0.4), transparent 50%),
        var(--color-neutral-text);
    /* Very dark charcoal base */
    position: relative;
    padding-top: 6rem;
    padding-bottom: 6rem;
    color: #fff;
    overflow: hidden;
}

/* Subtle noise overlay */
.pdp-ecosystem-exp::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.pdp-ecosystem-exp .container {
    position: relative;
    z-index: 2;
}

.pdp-ecosystem-exp .exp-heading,
.pdp-ecosystem-exp .exp-subheading {
    color: #FAF7F2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.ecosystem-slider-wrapper {
    width: 100%;
}

.ecosystem-bento-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-bottom: 2rem;
    /* Apply padding to the scroll container so content can scroll UNDER the "margin" area for true full-bleed */
    padding-left: max(var(--container-padding), calc((100vw - var(--container-max)) / 2 + var(--container-padding)));
    padding-right: max(var(--container-padding), calc((100vw - var(--container-max)) / 2 + var(--container-padding)));
    /* Space for scrollbar if visible */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
}

.ecosystem-bento-grid::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.bento-card {
    position: relative;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Push content to bottom */
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: clamp(280px, 22vw, 360px);
    height: clamp(400px, 30vw, 500px);
    /* Fixed height to give card proportion */
    scroll-snap-align: start;
    overflow: hidden;
    /* Ensure image doesn't break border radius */
    border: 2px solid transparent;
}

.bento-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

.bento-content {
    position: relative;
    z-index: 3;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: #fff;
    /* White text for contrast */
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bento-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-secondary);
    /* Champagne gold */
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bento-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hover Effects */
.bento-card:hover {
    border-color: var(--color-secondary);
    /* Champagne gold border */
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.bento-card:hover .bento-bg-image {
    transform: scale(1.08);
    /* Image scale up */
}

.bento-card:hover .bento-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.95) 100%);
}

.bento-card:hover .bento-content {
    transform: translateY(0);
}

.bento-card:hover .bento-link {
    opacity: 1;
    transform: translateY(0);
}

/* ── HOW TO ENJOY: Connect Timeline ──────────────────────────── */
.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 60px;
}

.timeline-line-container {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 40px;
}

.timeline-svg {
    width: 100%;
    height: 100%;
}

.timeline-step {
    position: relative;
    margin-bottom: 5rem;
    z-index: 2;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    position: absolute;
    left: -60px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--color-neutral-bg);
    border: 2px solid rgba(74, 29, 106, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-muted);
    transition: all 0.4s ease;
}

.step-marker.active-marker {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 0 0 6px rgba(74, 29, 106, 0.1);
}

.step-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(74, 29, 106, 0.03);
}

.step-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.step-card p {
    font-size: 1.0625rem;
    color: var(--color-neutral-text);
    line-height: 1.6;
    margin: 0;
}


/* ── REVIEWS: Glowing Particles ─────────────────────────────── */
.pdp-reviews-exp {
    background: var(--color-neutral-bg);
    position: relative;
    overflow: hidden;
}

.reviews-hero-exp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 5rem;
    width: 100%;
}

.reviews-count-exp {
    text-align: center;
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.glowing-score-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Pure CSS particle animations for the glowing score */
.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

.p1 {
    width: 12px;
    height: 12px;
    background: var(--color-secondary);
    top: 10%;
    left: -20%;
    animation: particleFloat 4s infinite 0.5s;
}

.p2 {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    bottom: 20%;
    right: -25%;
    animation: particleFloat 5s infinite 1s;
}

.p3 {
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    top: -10%;
    right: 10%;
    animation: particleFloat 6s infinite 0s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }

    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.6;
    }

    100% {
        transform: translateY(-40px) scale(0.8);
        opacity: 0;
    }
}

.reviews-big-number {
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 1;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: -0.05em;
    position: relative;
    z-index: 2;
    text-shadow: 0 10px 30px rgba(74, 29, 106, 0.15);
}

.reviews-stars-exp {
    font-size: 1.5rem;
    color: var(--color-secondary);
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.reviews-count-exp {
    font-size: 1.125rem;
    color: var(--color-muted);
    text-align: center;
}

.reviews-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card-exp {
    position: relative;
    background: #fff;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.4s ease;
}

.review-card-exp:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.rc-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, rgba(74, 29, 106, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.rc-author {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rc-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.rc-meta {
    display: flex;
    flex-direction: column;
}

.rc-meta strong {
    color: var(--color-primary);
    font-size: 1rem;
}

.rc-verified {
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rc-stars {
    position: relative;
    z-index: 1;
    color: var(--color-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.rc-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.rc-body {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    color: var(--color-neutral-text);
    line-height: 1.6;
    margin: 0;
}

/* ── Mobile Sticky ATC ──────────────────────────────────────── */
.pdp-sticky-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(74, 29, 106, 0.08);
    padding: 1rem 1.5rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 200;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-sticky-mobile.visible {
    transform: translateY(0);
    display: flex;
}

.sticky-info {
    display: flex;
    flex-direction: column;
}

.sticky-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-primary);
}

.sticky-price {
    font-weight: 700;
    color: var(--color-primary);
}

.sticky-atc-trigger {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .pdp-hero-exp-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

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

    .exp-story-row {
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .pdp-hero-exp {
        padding: 2rem 0 4rem;
    }

    .pdp-hero-exp-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .floating-badge {
        right: 1rem;
        bottom: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .glass-card {
        padding: 1rem 1.25rem;
        border-radius: 16px;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    /* Mobile Carousel: stretch to full width horizontally */
    .pdp-mobile-carousel {
        margin-left: calc(-1 * var(--container-padding));
        margin-right: calc(-1 * var(--container-padding));
        width: calc(100% + calc(2 * var(--container-padding)));
        max-width: none;
    }

    .pdp-carousel-slide img {
        border-radius: 0;
    }

    /* Content: remove desktop left padding and add consistent mobile padding */
    .pdp-purchase-col {
        padding: 0 1rem 2rem 1rem;
    }

    /* Thumbnails: horizontally scrollable strip */
    .pdp-thumbnails-exp {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        /* show the scrollbar shadow */
        scrollbar-width: none;
        /* Firefox */
    }

    .pdp-thumbnails-exp::-webkit-scrollbar {
        display: none;
    }

    .pdp-title {
        font-size: 2.5rem;
    }

    .exp-heading {
        font-size: 2.5rem;
    }

    .exp-benefits-grid,
    .ecosystem-bento-grid {
        grid-template-columns: 1fr;
    }

    .exp-story-row,
    .exp-story-row.reversed {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .story-badge {
        margin: 0 auto 1.5rem;
    }

    .timeline-wrapper {
        padding-left: 40px;
    }

    .timeline-line-container {
        left: 10px;
        width: 20px;
    }

    .step-marker {
        left: -40px;
        width: 30px;
        height: 30px;
        font-size: 0.875rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .reviews-masonry {
        grid-template-columns: 1fr;
    }

    /* Slider labels: reduce letter-spacing so labels don't merge */
    .slider-labels span {
        letter-spacing: 0.08em;
        font-size: 10px;
    }
}

/* Cart Page */
.woocommerce-cart .woocommerce {
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
}

.woocommerce table.shop_table {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.woocommerce table.shop_table th {
    background: var(--color-light-purple);
    padding: var(--space-md);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.woocommerce table.shop_table td {
    padding: var(--space-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.woocommerce .cart-collaterals {
    margin-top: var(--space-2xl);
}

.woocommerce .cart-collaterals .cart_totals {
    background: var(--color-light-purple);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

/* Checkout */
.woocommerce-checkout .woocommerce {
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
}

.woocommerce form.checkout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.woocommerce #payment {
    background: var(--color-light-purple);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.woocommerce #place_order {
    background: var(--color-secondary);
    color: var(--color-neutral-text);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-pill);
    font-size: 1.125rem;
    font-weight: 600;
    width: 100%;
    border: none;
    transition: all var(--transition-base);
}

.woocommerce #place_order:hover {
    background: #E5B958;
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
10.0 Responsive
--------------------------------------------------------------*/
@media (max-width: 1024px) {
    :root {
        --container-padding: 1.5rem;
        --space-2xl: 3rem;
        --space-3xl: 5rem;
    }

    .hero-content,
    .bundle-content,
    .story-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .hero-image {
        order: -1;
    }

    .product-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .primary-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: none !important;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

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

    .product-grid,
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .woocommerce form.checkout {
        grid-template-columns: 1fr;
    }

    .hero-text h1,
    .hero-section h1,
    .hero-headline {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

    .review-hero .rating-number {
        font-size: 3rem;
    }
}

/*--------------------------------------------------------------
11.0 Animations
--------------------------------------------------------------*/
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/*--------------------------------------------------------------
12.0 Accessibility Utilities
--------------------------------------------------------------*/

/* WordPress standard screen-reader-text — visually hidden but accessible */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--color-neutral-bg);
    clip: auto !important;
    clip-path: none;
    color: var(--color-neutral-text);
    display: block;
    font-size: 1rem;
    font-weight: 600;
    height: auto;
    left: 8px;
    line-height: normal;
    padding: 1rem 1.5rem;
    text-decoration: none;
    top: 8px;
    width: auto;
    z-index: 100001;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/*--------------------------------------------------------------
13.0 Sticky Header
--------------------------------------------------------------*/

/* When the header transitions to sticky (class added by JS) */
.site-header--sticky {
    box-shadow: 0 2px 20px rgba(74, 29, 106, 0.12);
    animation: slideDownHeader 0.3s ease-out;
}

@keyframes slideDownHeader {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

/*--------------------------------------------------------------
14.0 Scroll To Top Button
--------------------------------------------------------------*/

#charmed-scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity var(--transition-base), transform var(--transition-base), background var(--transition-fast);
}

#charmed-scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#charmed-scroll-top:hover {
    background: var(--color-secondary);
    color: var(--color-neutral-text);
}

#charmed-scroll-top:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
}

/*--------------------------------------------------------------
15.0 Dropdown Submenus
--------------------------------------------------------------*/

.primary-menu .menu-item-has-children {
    position: relative;
}

.primary-menu .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--space-xs) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: 1001;
    list-style: none;
    margin: 0;
}

.primary-menu .sub-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu a {
    display: block;
    padding: var(--space-xs) var(--space-md);
    color: var(--color-neutral-text);
    font-size: 0.9375rem;
    white-space: nowrap;
}

.primary-menu .sub-menu a:hover {
    background: var(--color-light-purple);
    color: var(--color-primary);
}

/* Submenu toggle button — sits alongside the parent link */
.submenu-toggle {
    background: none;
    border: none;
    padding: var(--space-xs);
    cursor: pointer;
    color: var(--color-muted);
    transition: color var(--transition-fast), transform var(--transition-fast);
    vertical-align: middle;
}

.submenu-toggle[aria-expanded="true"] {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.submenu-toggle:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/*--------------------------------------------------------------
16.0 404 Page
--------------------------------------------------------------*/

.error-404-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: var(--space-3xl) 0;
}

.error-404__title {
    font-size: clamp(6rem, 20vw, 14rem);
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.15;
    margin-bottom: 0;
    font-family: var(--font-display);
}

.error-404__subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-family: var(--font-display);
    color: var(--color-primary);
    margin-top: -2rem;
    margin-bottom: var(--space-lg);
}

.error-404__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin: var(--space-xl) 0;
}

.error-404__search {
    margin-top: var(--space-xl);
}

.error-404__search .search-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 400px;
}

.error-404__search input[type="search"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(74, 29, 106, 0.2);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 1rem;
}

.error-404__search input[type="search"]:focus {
    outline: none;
    border-color: var(--color-primary);
}

.error-404__search button[type="submit"],
.error-404__search input[type="submit"] {
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.error-404__search button[type="submit"]:hover,
.error-404__search input[type="submit"]:hover {
    background: var(--color-secondary);
    color: var(--color-neutral-text);
}

/*--------------------------------------------------------------
17.0 Blog / Archive Layout
--------------------------------------------------------------*/

.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 640px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Entry card */
.entry {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
    display: flex;
    flex-direction: column;
}

.entry:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.entry-thumbnail {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.entry-thumbnail img,
.entry-thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}

.entry-thumbnail img {
    object-fit: cover;
    transition: transform 0.5s ease;
}

.entry:hover .entry-thumbnail img {
    transform: scale(1.04);
}

.entry .entry-header,
.entry .entry-content,
.entry .entry-footer {
    padding: var(--space-lg) var(--space-xl);
}

.entry .entry-header {
    padding-bottom: 0;
}

.entry .entry-content {
    flex: 1;
}

.entry .entry-footer {
    padding-top: 0;
}

.entry-title {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

.entry-title a {
    color: var(--color-neutral-text);
    text-decoration: none;
}

.entry-title a:hover {
    color: var(--color-primary);
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--color-muted);
    margin-bottom: var(--space-sm);
}

.entry-meta time,
.entry-meta .entry-author {
    display: inline;
}

.entry-meta .entry-author a {
    color: var(--color-primary);
}

.entry-tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.entry-tags li a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--color-light-purple);
    color: var(--color-primary);
    border-radius: var(--radius-pill);
    font-size: 0.8125rem;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.entry-tags li a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.edit-link a {
    font-size: 0.8125rem;
    color: var(--color-muted);
    text-decoration: underline;
}

/* Multi-page post links */
.page-links {
    margin-top: var(--space-lg);
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    align-items: center;
}

.page-link a,
.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-light-purple);
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.page-link a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/*--------------------------------------------------------------
18.0 Single Post
--------------------------------------------------------------*/

.entry--single {
    border-radius: 0;
    box-shadow: none;
}

.entry-hero-image {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
}

.entry-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.entry-header--single {
    padding: var(--space-2xl) 0 var(--space-lg);
}

.entry-header--single .entry-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
}

.entry-meta {
    align-items: center;
    gap: var(--space-xs) var(--space-md);
}

.entry-meta__sep {
    color: var(--color-muted);
}

.entry-content--single {
    font-size: 1.0625rem;
    line-height: 1.8;
    max-width: 72ch;
}

.entry-content--single p,
.entry-content--single ul,
.entry-content--single ol {
    margin-bottom: var(--space-md);
}

.entry-footer--single {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(74, 29, 106, 0.1);
}

.entry-categories {
    font-size: 0.9375rem;
    margin-bottom: var(--space-sm);
    color: var(--color-muted);
}

.entry-categories a {
    color: var(--color-primary);
}

/* Post Navigation */
.post-navigation {
    margin: var(--space-2xl) 0;
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(74, 29, 106, 0.1);
    border-bottom: 1px solid rgba(74, 29, 106, 0.1);
}

.post-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.post-navigation .nav-next {
    text-align: right;
    align-items: flex-end;
}

.post-navigation .nav-subtitle {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-navigation .nav-title {
    display: block;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9375rem;
    line-height: 1.4;
    text-decoration: none;
}

.post-navigation a {
    text-decoration: none;
}

.post-navigation a:hover .nav-title {
    color: var(--color-secondary-dark, var(--color-primary));
    text-decoration: underline;
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    background: var(--color-light-purple);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-top: var(--space-2xl);
}

.author-bio__avatar {
    width: 72px !important;
    height: 72px !important;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid var(--color-white);
    box-shadow: var(--shadow-sm);
}

.author-bio__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.0625rem;
    margin: 0 0 var(--space-xs);
}

.author-bio__name a {
    color: var(--color-primary);
    text-decoration: none;
}

.author-bio__description {
    font-size: 0.9375rem;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.6;
}

/*--------------------------------------------------------------
19.0 Comments
--------------------------------------------------------------*/

.comments-area {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(74, 29, 106, 0.1);
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
    font-family: var(--font-display);
    color: var(--color-primary);
}

.comment-list {
    list-style: none;
    margin: 0 0 var(--space-2xl);
    padding: 0;
}

.comment-list .comment {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid rgba(74, 29, 106, 0.07);
}

.comment-navigation {
    margin-bottom: var(--space-xl);
}

.comment-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
}

.comment-navigation a {
    color: var(--color-primary);
    font-weight: 600;
}

.comment-reply-title {
    font-size: 1.375rem;
    margin-bottom: var(--space-lg);
    font-family: var(--font-display);
    color: var(--color-primary);
}

.comment-form label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--color-neutral-text);
    font-size: 0.9375rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(74, 29, 106, 0.2);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    background: var(--color-white);
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.comment-form textarea {
    min-height: 140px;
    resize: vertical;
}

.comment-form .form-submit {
    margin-top: var(--space-md);
}

.comment-notes {
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-bottom: var(--space-lg);
}

.no-comments {
    font-style: italic;
    color: var(--color-muted);
}

/*--------------------------------------------------------------
20.0 Search Results & Search Form
--------------------------------------------------------------*/

.search-results-page .page-header {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(74, 29, 106, 0.1);
}

.search-header .page-title {
    margin-bottom: var(--space-sm);
}

.search-query {
    color: var(--color-primary);
}

.search-result-count {
    color: var(--color-muted);
    font-size: 0.9375rem;
    margin: 0;
}

/* Search form (searchform.php) */
.search-form__inner {
    display: flex;
    gap: 0;
    max-width: 480px;
    border: 2px solid rgba(74, 29, 106, 0.2);
    border-radius: var(--radius-pill);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.search-form__inner:focus-within {
    border-color: var(--color-primary);
}

.search-form__inner .search-field {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    background: transparent;
    color: var(--color-neutral-text);
}

.search-form__inner .search-field:focus {
    outline: none;
}

.search-form__inner .search-submit {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

.search-form__inner .search-submit:hover {
    background: var(--color-secondary);
    color: var(--color-neutral-text);
}

.search-form__inner .search-submit:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: -3px;
}

/*--------------------------------------------------------------
21.0 WooCommerce Overrides
--------------------------------------------------------------*/

/* No Products Found */
.woocommerce-no-products-found {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
}

.no-products-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    line-height: 1;
}

.no-products-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.no-products-description {
    color: var(--color-muted);
    font-size: 1.0625rem;
    max-width: 40ch;
    margin: 0 auto var(--space-xl);
}

/* Add to Cart — Single Product */
.charmed-add-to-cart .add-to-cart-row {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.charmed-add-to-cart .quantity {
    display: flex;
}

/* Trust badges */
.product-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-md);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(74, 29, 106, 0.1);
}

.trust-badge {
    font-size: 0.8125rem;
    color: var(--color-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/*--------------------------------------------------------------
  Final CTA Section
--------------------------------------------------------------*/
.final-cta-section {
    background: #ffffff !important;
    padding: 5rem 2rem !important;
    text-align: center !important;
    width: 100%;
}

.final-cta-section .container {
    max-width: 680px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 1.5rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.final-cta-heading {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 2.75rem !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
    text-align: center !important;
}

.final-cta-sub {
    font-size: 1.0625rem !important;
    color: #6b6b8a !important;
    margin: 0 !important;
    line-height: 1.7 !important;
    text-align: center !important;
    max-width: none !important;
}

.final-cta-section .btn {
    margin-top: 0.5rem !important;
    align-self: center !important;
    width: auto !important;
    display: inline-flex !important;
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 3.5rem 1.5rem !important;
    }

    .final-cta-heading {
        font-size: 2rem !important;
    }

    .final-cta-section .btn {
        width: auto !important;
    }
}

/*--------------------------------------------------------------
  Hide ALL Floating Cart Buttons (plugins)
--------------------------------------------------------------*/
.moderncart-floating-cart-button,
.moderncart-floating-cart-count,
#moderncart-slide-out-modal,
.xoo-wsc-cart-trigger,
.xoo-wsc-container,
.floating-cart,
.float-cart,
.wc-cart-floating,
.cart-floating-btn,
.cart-float,
#cart-floating,
.wpfc-floating-cart,
.woo-fly-cart,
#woo-fly-cart,
.woofc-cart-trigger,
.woofc-wrapper,
[class*="floating-cart"],
[class*="float-cart"],
[id*="floating-cart"],
[id*="float-cart"],
body>div[style*="position: fixed"][style*="z-index"]>a[href*="cart"],
body>div[style*="position: fixed"][style*="z-index"]>button:has(svg) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ==========================================================================
   Mobile Auto-Hide Navigation
   ========================================================================== */
@media (max-width: 768px) {
    header.site-header {
        position: sticky !important;
        /* Enforce sticky over fixed to maintain document flow without jumping */
        top: 0;
        width: 100%;
        transition: transform 0.3s ease !important;
        animation: none !important;
        /* Override sticky slide-down animation */
        z-index: 1000;
    }

    header.site-header.navbar-hidden {
        transform: translateY(-100%) !important;
    }

    header.site-header.navbar-visible {
        transform: translateY(0) !important;
    }
}

/*--------------------------------------------------------------
15.0 Contact Page Layout
Only outer structure is styled here.
WPForms renders with its own default styles — no overrides.
--------------------------------------------------------------*/
.cc-contact-main {
    padding: var(--space-2xl) 0;
    background-color: var(--color-neutral-bg);
}

.cc-contact-container {
    /* inherits .container max-width and side padding */
}

/* Two-column grid: 60% form / 40% info card */
.cc-contact-grid {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 60px;
    align-items: start;
}

.cc-contact-heading {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: 8px;
}

.cc-contact-sub {
    font-size: 1.1rem;
    color: var(--color-neutral-text);
    margin-bottom: 32px;
}

/* Contact Info Card */
.cc-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 16px rgba(74, 29, 106, 0.07);
    border: 1px solid rgba(74, 29, 106, 0.06);
    position: sticky;
    top: 100px;
}

.cc-info-card h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 24px;
    font-weight: 600;
}

.cc-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.cc-info-item svg {
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.cc-info-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--color-muted);
    margin-bottom: 3px;
}

.cc-info-item a,
.cc-info-item span {
    color: var(--color-neutral-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cc-info-item a:hover {
    color: var(--color-primary);
}

.cc-divider {
    border: none;
    height: 1px;
    background: rgba(74, 29, 106, 0.1);
    margin: 20px 0;
}

.cc-faq-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s;
}

.cc-faq-link:hover {
    color: var(--color-secondary);
}

.cc-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(74, 29, 106, 0.08);
    color: var(--color-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.cc-trust svg {
    color: var(--color-secondary);
    flex-shrink: 0;
}

/* Mobile: stack columns, keep natural WPForms width */
@media (max-width: 900px) {
    .cc-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cc-contact-heading {
        font-size: 32px;
    }

    .cc-info-card {
        position: static;
    }
}



/* Contact page: WPForms Submit button */
.cc-contact-main button[type=submit],
.cc-contact-main input[type=submit] {
    background-color: #D4A847 !important;
    color: #2c2c2c !important;
    border: none !important;
    border-radius: 999px !important;
    height: 52px !important;
    padding: 0 40px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 14px rgba(212, 168, 71, 0.35) !important;
    margin-top: 8px !important;
}

.cc-contact-main button[type=submit]:hover,
.cc-contact-main input[type=submit]:hover {
    background-color: #e5b84a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(212, 168, 71, 0.45) !important;
}

/*--------------------------------------------------------------
16.0 Our Story Page
--------------------------------------------------------------*/

/* ---- HERO ---- */
.os-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.os-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 29, 106, 0.82) 0%, rgba(44, 16, 66, 0.7) 100%);
}

.os-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.os-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #D4A847;
    margin-bottom: 20px;
}

.os-hero__heading {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.os-hero__sub {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin: 0;
}

/* ---- SHARED UTILITIES ---- */
.os-section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.os-section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #D4A847;
    margin-bottom: 12px;
}

.os-section-heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.15;
    margin: 0 0 16px;
}

.os-body p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #444;
    margin-bottom: 20px;
}

.os-body p:last-child {
    margin-bottom: 0;
}

/* ---- SPLIT SECTIONS ---- */
.os-split {
    padding: 100px 0;
}

.os-split--cream {
    background-color: #FAF7F2;
}

.os-split--purple {
    background-color: rgba(74, 29, 106, 0.05);
}

.os-split__grid {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 80px;
    align-items: center;
}

.os-split--flip .os-split__grid {
    grid-template-columns: 40fr 60fr;
}

.os-split__text .os-section-label {
    display: block;
    margin-bottom: 10px;
}

.os-split__text .os-section-heading {
    margin-bottom: 28px;
}

.os-split__image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(74, 29, 106, 0.15);
}

.os-split__image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.os-split__image:hover img {
    transform: scale(1.03);
}

/* ---- VALUES CARDS ---- */
.os-values {
    padding: 100px 0;
}

.os-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.os-value-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 28px;
    box-shadow: 0 4px 24px rgba(74, 29, 106, 0.07);
    border: 1px solid rgba(74, 29, 106, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
}

.os-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(74, 29, 106, 0.14);
}

.os-value-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(74, 29, 106, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #4a1d6a;
    transition: background 0.25s;
}

.os-value-card:hover .os-value-card__icon {
    background: #D4A847;
    color: #fff;
}

.os-value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.os-value-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ---- PROCESS ---- */
.os-process {
    padding: 100px 0;
    background: #fff;
}

.os-process__steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.os-step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    max-width: 220px;
}

.os-step__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(74, 29, 106, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: #4a1d6a;
}

.os-step__num {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #D4A847;
    margin-bottom: 10px;
}

.os-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.os-step p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.os-step__connector {
    color: rgba(74, 29, 106, 0.25);
    flex-shrink: 0;
    margin-top: 32px;
    align-self: flex-start;
}

/* ---- TESTIMONIAL ---- */
.os-testimonial {
    padding: 100px 0;
    background: rgba(74, 29, 106, 0.06);
}

.os-testimonial__inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.os-testimonial__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 28px;
}

.os-testimonial__quote {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    font-style: italic;
    color: var(--color-primary);
    line-height: 1.5;
    margin: 0 0 24px;
}

.os-testimonial__author {
    font-size: 0.95rem;
    font-weight: 600;
    color: #888;
    font-style: normal;
}

/* ---- CLOSING CTA ---- */
.os-cta {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #1a0530 0%, #3a1260 50%, #2c1044 100%);
    overflow: hidden;
    text-align: center;
}

.os-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 168, 71, 0.12) 0%, transparent 70%);
}

.os-cta__content {
    position: relative;
    z-index: 2;
}

.os-cta__heading {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.os-cta__sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    text-align: center;
}

.os-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #D4A847;
    color: #2c2c2c;
    font-weight: 700;
    font-size: 1rem;
    padding: 0 44px;
    height: 58px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 24px rgba(212, 168, 71, 0.35);
}

.os-cta__btn:hover {
    background: #e5b84a;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(212, 168, 71, 0.5);
}

/* ---- MOBILE RESPONSIVE ---- */
@media (max-width: 900px) {
    .os-split {
        padding: 60px 0;
    }

    .os-split__grid,
    .os-split--flip .os-split__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .os-split--flip .os-split__image {
        order: -1;
    }

    .os-split__image img {
        height: 300px;
    }

    .os-values {
        padding: 60px 0;
    }

    .os-values__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .os-process {
        padding: 60px 0;
    }

    .os-process__steps {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .os-step__connector {
        transform: rotate(90deg);
        margin: 0;
    }

    .os-step {
        max-width: 100%;
    }

    .os-testimonial {
        padding: 60px 0;
    }

    .os-cta {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .os-values__grid {
        grid-template-columns: 1fr;
    }

    .os-hero {
        min-height: 70vh;
    }
}

/*--------------------------------------------------------------
17.0 Privacy Policy Page
--------------------------------------------------------------*/
.pp-page {
    background: #FAF7F2;
    padding: 80px 0 60px;
}

.pp-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.pp-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(74, 29, 106, 0.1);
}

.pp-header__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(74, 29, 106, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #4a1d6a;
}

.pp-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #4a1d6a;
    margin-bottom: 10px;
}

.pp-updated {
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-align: center;
}

.pp-updated--bottom {
    text-align: left;
    margin: 12px 0 24px;
}

.pp-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
}

/* TOC */
.pp-toc {
    background: #fff;
    border: 1px solid rgba(74, 29, 106, 0.1);
    border-radius: 16px;
    padding: 32px 36px;
    margin-bottom: 56px;
}

.pp-toc__heading {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4a1d6a;
    margin-bottom: 16px;
}

.pp-toc__list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 40px;
}

.pp-toc__list li {
    font-size: 0.9rem;
}

.pp-toc__list a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.pp-toc__list a:hover {
    color: #4a1d6a;
}

/* Sections */
.pp-section {
    padding: 48px 0;
    border-bottom: 1px solid rgba(74, 29, 106, 0.08);
    scroll-margin-top: 100px;
}

.pp-section:last-child {
    border-bottom: none;
}

.pp-section__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(74, 29, 106, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a1d6a;
    margin-bottom: 16px;
}

.pp-section__heading {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: #4a1d6a;
    margin-bottom: 16px;
}

.pp-sub-heading {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    margin: 24px 0 10px;
}

.pp-section p {
    font-size: 1rem;
    line-height: 1.85;
    color: #444;
    margin-bottom: 16px;
}

.pp-section p:last-child {
    margin-bottom: 0;
}

.pp-list {
    padding-left: 20px;
    margin: 0 0 16px;
}

.pp-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 8px;
}

.pp-section a {
    color: #4a1d6a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pp-section a:hover {
    color: #D4A847;
}

/* Highlight boxes */
.pp-highlight {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(74, 29, 106, 0.06);
    border-left: 3px solid #4a1d6a;
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    margin: 20px 0 0;
}

.pp-highlight--strong {
    background: rgba(212, 168, 71, 0.1);
    border-left-color: #D4A847;
}

.pp-highlight svg {
    flex-shrink: 0;
    color: #4a1d6a;
    margin-top: 2px;
}

.pp-highlight--strong svg {
    color: #D4A847;
}

.pp-highlight p {
    margin: 0 !important;
    font-size: 0.95rem;
}

/* Contact Card */
.pp-contact-card {
    background: #fff;
    border: 1px solid rgba(74, 29, 106, 0.1);
    border-radius: 14px;
    padding: 28px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pp-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

.pp-contact-item svg {
    flex-shrink: 0;
    color: #D4A847;
    margin-top: 2px;
}

.pp-contact-item a {
    color: #4a1d6a;
}

/* Footer note */
.pp-footer-note {
    display: flex;
    gap: 14px;
    align-items: center;
    background: rgba(74, 29, 106, 0.06);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 48px 0 24px;
    font-size: 0.9rem;
    color: #555;
}

.pp-footer-note svg {
    flex-shrink: 0;
    color: #4a1d6a;
}

.pp-footer-note p {
    margin: 0;
}

.pp-footer-note a {
    color: #4a1d6a;
    text-decoration: underline;
}

/* Back to top */
.pp-backtop-wrap {
    text-align: center;
    padding-bottom: 40px;
}

.pp-backtop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4a1d6a;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(74, 29, 106, 0.2);
    border-radius: 999px;
    transition: all 0.2s;
}

.pp-backtop:hover {
    background: #4a1d6a;
    color: #fff;
    border-color: #4a1d6a;
}

/* Mobile */
@media (max-width: 640px) {
    .pp-toc__list {
        grid-template-columns: 1fr;
    }

    .pp-toc {
        padding: 24px 20px;
    }

    .pp-section__heading {
        font-size: 22px;
    }
}

/*--------------------------------------------------------------
18.0 FAQ Page
--------------------------------------------------------------*/
.faq-page {
    background: #FAF7F2;
    padding: 80px 0 0;
}

.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #4a1d6a;
    margin-bottom: 12px;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 10px;
}

.faq-intro {
    font-size: 1rem;
    color: #888;
}

.faq-intro a {
    color: #4a1d6a;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Categories */
.faq-category {
    margin-bottom: 48px;
}

.faq-category__heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #4a1d6a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(74, 29, 106, 0.12);
}

.faq-category__heading svg {
    color: #D4A847;
    flex-shrink: 0;
}

/* Accordion items */
.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(74, 29, 106, 0.08);
}

.faq-item:first-child {
    border-top: 1px solid rgba(74, 29, 106, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #4a1d6a;
    cursor: pointer;
    gap: 16px;
    min-height: 44px;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #D4A847;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(74, 29, 106, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a1d6a;
    transition: background 0.2s, transform 0.3s ease;
}

.faq-item--open .faq-icon {
    background: #4a1d6a;
    color: #fff;
    transform: rotate(45deg);
}

/* Answer panel */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 0 20px;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.faq-answer a {
    color: #4a1d6a;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Bottom CTA */
.faq-cta {
    background: rgba(74, 29, 106, 0.06);
    border-radius: 20px;
    text-align: center;
    padding: 60px 40px;
    margin: 20px 0 60px;
}

.faq-cta__heading {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #4a1d6a;
    margin-bottom: 12px;
}

.faq-cta__text {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 28px;
}

.faq-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #D4A847;
    color: #2c2c2c;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0 36px;
    height: 52px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(212, 168, 71, 0.3);
}

.faq-cta__btn:hover {
    background: #e5b84a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 71, 0.4);
}

/* Mobile */
@media (max-width: 600px) {
    .faq-cta {
        padding: 40px 24px;
    }

    .faq-question {
        font-size: 0.95rem;
    }
}

/*--------------------------------------------------------------
19.0 Shipping & Delivery Page
--------------------------------------------------------------*/
.sd-page {
    background: #FAF7F2;
}

/* Hero */
.sd-hero {
    background: linear-gradient(135deg, #2c1044 0%, #4a1d6a 100%);
    text-align: center;
    padding: 80px 24px 70px;
}

.sd-hero__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 168, 71, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #D4A847;
}

.sd-hero__heading {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.sd-hero__sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Wrapper */
.sd-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section base */
.sd-section {
    padding: 80px 0;
}

.sd-section--tinted {
    background: none;
    position: relative;
}

.sd-section--tinted::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(74, 29, 106, 0.04);
    border-radius: 20px;
    margin: 0 -24px;
    pointer-events: none;
}

.sd-section__intro {
    text-align: center;
    margin-bottom: 48px;
}

.sd-section__sub {
    font-size: 1.05rem;
    color: #666;
    margin-top: 8px;
}

.sd-heading {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #4a1d6a;
    margin: 0 0 8px;
}

/* Delivery option cards */
.sd-options {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.sd-option-card {
    flex: 0 1 300px;
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(74, 29, 106, 0.07);
    border: 1px solid rgba(74, 29, 106, 0.06);
    text-align: center;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}

.sd-option-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(74, 29, 106, 0.12);
}

.sd-option-card--featured {
    border-color: #D4A847;
    box-shadow: 0 4px 24px rgba(212, 168, 71, 0.2);
}

.sd-option-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #D4A847;
    color: #2c2c2c;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 999px;
}

.sd-option-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(74, 29, 106, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #4a1d6a;
}

.sd-option-card--featured .sd-option-card__icon {
    background: rgba(212, 168, 71, 0.12);
    color: #D4A847;
}

.sd-option-card__price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #D4A847;
    margin-bottom: 6px;
}

.sd-option-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #4a1d6a;
    margin-bottom: 6px;
}

.sd-option-card p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 12px;
}

.sd-option-card__timeline {
    font-size: 0.85rem;
    font-weight: 700;
    color: #4a1d6a;
    margin-bottom: 8px;
}

.sd-option-card__tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(74, 29, 106, 0.07);
    color: #4a1d6a;
    padding: 4px 12px;
    border-radius: 999px;
}

/* Delivery areas */
.sd-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.sd-area {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px;
    border: 1px solid rgba(74, 29, 106, 0.07);
}

.sd-area strong {
    display: block;
    font-size: 0.95rem;
    color: #333;
}

.sd-area span {
    font-size: 0.85rem;
    color: #888;
}

.sd-area--yes svg {
    color: #2e7d32;
}

.sd-area--no svg {
    color: #c62828;
}

.sd-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(74, 29, 106, 0.06);
    border-left: 3px solid #4a1d6a;
    border-radius: 0 10px 10px 0;
    padding: 14px 18px;
}

.sd-note svg {
    flex-shrink: 0;
    color: #4a1d6a;
    margin-top: 2px;
}

.sd-note p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

/* Discreet packaging split */
.sd-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

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

.sd-package-icon {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    background: #fff;
    border: 2px dashed rgba(74, 29, 106, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #4a1d6a;
}

.sd-package-label {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

.sd-split__text .sd-heading {
    margin-bottom: 12px;
}

.sd-split__intro {
    font-size: 1rem;
    color: #666;
    margin-bottom: 24px;
}

.sd-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sd-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #444;
}

.sd-checklist svg {
    color: #2e7d32;
    flex-shrink: 0;
}

/* Tracking steps */
.sd-tracking {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 680px;
    margin: 0 auto;
}

.sd-track-step {
    display: grid;
    grid-template-columns: 48px 2px 1fr;
    gap: 0 20px;
    align-items: start;
}

.sd-track-step--last {
    grid-template-columns: 48px 1fr;
}

.sd-track-step--last .sd-track-step__content {
    grid-column: 2;
}

.sd-track-step__num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #4a1d6a;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.sd-track-step__line {
    width: 2px;
    background: rgba(74, 29, 106, 0.15);
    min-height: 80px;
    margin: 0 auto;
    align-self: stretch;
}

.sd-track-step__content {
    padding: 10px 0 32px;
}

.sd-track-step__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(74, 29, 106, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a1d6a;
    margin-bottom: 10px;
}

.sd-track-step__content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #4a1d6a;
    margin: 0 0 6px;
}

.sd-track-step__content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* FAQ accordion */
.sd-faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.sd-faq-item {
    border-bottom: 1px solid rgba(74, 29, 106, 0.08);
}

.sd-faq-item:first-child {
    border-top: 1px solid rgba(74, 29, 106, 0.08);
}

.sd-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a1d6a;
    cursor: pointer;
    gap: 16px;
    min-height: 44px;
    transition: color 0.2s;
}

.sd-faq-question:hover {
    color: #D4A847;
}

.sd-faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(74, 29, 106, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a1d6a;
    transition: background 0.2s, transform 0.3s;
}

.sd-faq-item--open .sd-faq-icon {
    background: #4a1d6a;
    color: #fff;
    transform: rotate(45deg);
}

.sd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sd-faq-answer p {
    padding: 0 0 18px;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #555;
    margin: 0;
}

.sd-faq-answer a {
    color: #4a1d6a;
    text-decoration: underline;
}

/* Issue cards */
.sd-issues {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sd-issue-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(74, 29, 106, 0.07);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s;
}

.sd-issue-card:hover {
    transform: translateY(-4px);
}

.sd-issue-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(74, 29, 106, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #4a1d6a;
}

.sd-issue-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #4a1d6a;
    margin-bottom: 10px;
}

.sd-issue-card p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

.sd-issue-btn {
    display: inline-block;
    background: #4a1d6a;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s;
}

.sd-issue-btn:hover {
    background: #D4A847;
    color: #2c2c2c;
}

/* Holiday */
.sd-holiday {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(74, 29, 106, 0.07);
}

.sd-holiday__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(74, 29, 106, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a1d6a;
    flex-shrink: 0;
}

.sd-holiday__content .sd-heading {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.sd-holiday__content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
}

.sd-holiday__list {
    padding-left: 18px;
    margin: 0 0 14px;
}

.sd-holiday__list li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 6px;
}

.sd-holiday__note {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

/* CTA */
.sd-cta {
    background: rgba(74, 29, 106, 0.06);
    border-radius: 20px;
    text-align: center;
    padding: 60px 40px;
    margin: 0 0 80px;
}

.sd-cta__heading {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #4a1d6a;
    margin-bottom: 10px;
}

.sd-cta__text {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 28px;
}

.sd-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    background: #D4A847;
    color: #2c2c2c;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0 36px;
    height: 52px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(212, 168, 71, 0.3);
}

.sd-cta__btn:hover {
    background: #e5b84a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 71, 0.4);
}

/* Mobile */
@media (max-width: 768px) {

    .sd-options {
        flex-direction: column;
        align-items: center;
    }

    .sd-issues {
        grid-template-columns: 1fr;
    }

    .sd-areas {
        grid-template-columns: 1fr;
    }

    .sd-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sd-holiday {
        flex-direction: column;
        gap: 20px;
    }

    .sd-cta {
        padding: 40px 24px;
    }
}

/*--------------------------------------------------------------
20.0 Returns & Refunds Page
--------------------------------------------------------------*/
.rr-page {
    background: #FAF7F2;
}

/* Hero */
.rr-hero {
    background: linear-gradient(135deg, #1a0530 0%, #4a1d6a 100%);
    text-align: center;
    padding: 70px 24px;
}

.rr-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 71, 0.15);
    border: 1px solid rgba(212, 168, 71, 0.4);
    color: #D4A847;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.rr-hero__heading {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.rr-hero__sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Wrapper */
.rr-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Guarantee */
.rr-guarantee {
    margin: 56px 0;
}

.rr-guarantee__inner {
    background: linear-gradient(135deg, rgba(74, 29, 106, 0.06) 0%, rgba(212, 168, 71, 0.06) 100%);
    border: 2px solid rgba(212, 168, 71, 0.3);
    border-radius: 20px;
    text-align: center;
    padding: 56px 48px;
}

.rr-guarantee__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(74, 29, 106, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #4a1d6a;
}

.rr-guarantee__heading {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: #4a1d6a;
    margin-bottom: 16px;
}

.rr-guarantee__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 660px;
    margin: 0 auto;
}

/* Sections */
.rr-section {
    padding: 64px 0;
}

.rr-section--tinted {
    background: rgba(74, 29, 106, 0.04);
    margin: 0 -24px;
    padding: 64px 24px;
}

.rr-section__intro {
    text-align: center;
    margin-bottom: 44px;
}

.rr-section__sub {
    font-size: 1rem;
    color: #666;
    margin-top: 8px;
}

.rr-heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700;
    color: #4a1d6a;
    margin: 0 0 8px;
}

/* Cards */
.rr-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rr-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(74, 29, 106, 0.07);
    text-align: center;
    transition: transform 0.25s;
}

.rr-card:hover {
    transform: translateY(-5px);
}

.rr-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(74, 29, 106, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #4a1d6a;
}

.rr-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #4a1d6a;
    margin-bottom: 8px;
}

.rr-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Eligibility */
.rr-eligibility {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.rr-eligibility__col {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(74, 29, 106, 0.06);
}

.rr-eligibility__col--yes {
    border-top: 3px solid #2e7d32;
}

.rr-eligibility__col--no {
    border-top: 3px solid #c62828;
}

.rr-eligibility__heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.rr-eligibility__col--yes .rr-eligibility__heading {
    color: #2e7d32;
}

.rr-eligibility__col--no .rr-eligibility__heading {
    color: #c62828;
}

.rr-eligibility__col ul {
    padding-left: 16px;
    margin: 0;
}

.rr-eligibility__col li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.rr-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(74, 29, 106, 0.06);
    border-left: 3px solid #4a1d6a;
    border-radius: 0 10px 10px 0;
    padding: 14px 18px;
}

.rr-note svg {
    flex-shrink: 0;
    color: #4a1d6a;
    margin-top: 2px;
}

.rr-note p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

/* Return steps */
.rr-steps {
    display: flex;
    flex-direction: column;
    max-width: 660px;
    margin: 0 auto;
}

.rr-step {
    display: grid;
    grid-template-columns: 48px 2px 1fr;
    gap: 0 20px;
    align-items: start;
}

.rr-step--last {
    grid-template-columns: 48px 1fr;
}

.rr-step--last .rr-step__content {
    grid-column: 2;
}

.rr-step__num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #D4A847;
    color: #2c2c2c;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}

.rr-step__line {
    width: 2px;
    background: rgba(212, 168, 71, 0.3);
    min-height: 68px;
    margin: 0 auto;
    align-self: stretch;
}

.rr-step__content {
    padding: 10px 0 28px;
}

.rr-step__content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #4a1d6a;
    margin: 0 0 6px;
}

.rr-step__content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.rr-step__content a {
    color: #4a1d6a;
    text-decoration: underline;
}

/* Refund grid */
.rr-refund-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rr-refund-item {
    background: #fff;
    border-radius: 14px;
    padding: 28px 22px;
    box-shadow: 0 3px 16px rgba(74, 29, 106, 0.06);
}

.rr-refund-item__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(74, 29, 106, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a1d6a;
    margin-bottom: 14px;
}

.rr-refund-item h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #4a1d6a;
    margin-bottom: 8px;
}

.rr-refund-item p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Damaged */
.rr-damaged {
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.05) 0%, rgba(74, 29, 106, 0.05) 100%);
    border: 1px solid rgba(198, 40, 40, 0.15);
    border-radius: 20px;
    padding: 40px;
}

.rr-damaged__content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.rr-damaged__icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(198, 40, 40, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c62828;
    flex-shrink: 0;
}

.rr-damaged__content .rr-heading {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.rr-damaged__tagline {
    font-size: 1rem;
    color: #c62828;
    font-weight: 600;
    margin-bottom: 16px;
}

.rr-damaged__list {
    padding-left: 18px;
    margin: 0 0 20px;
}

.rr-damaged__list li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.rr-damaged__list a {
    color: #4a1d6a;
    text-decoration: underline;
}

.rr-damaged__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #c62828;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s;
}

.rr-damaged__btn:hover {
    background: #b71c1c;
    color: #fff;
}

/* Wrong item split */
.rr-split {
    display: flex;
    gap: 36px;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(74, 29, 106, 0.07);
}

.rr-split__icon {
    color: #4a1d6a;
    flex-shrink: 0;
    opacity: 0.4;
}

.rr-split__text .rr-heading {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.rr-split__tagline {
    font-size: 1rem;
    color: #D4A847;
    font-weight: 600;
    margin-bottom: 16px;
}

.rr-split__list {
    padding-left: 18px;
    margin: 0;
}

.rr-split__list li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Exchange */
.rr-exchange {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    background: rgba(74, 29, 106, 0.04);
    border-radius: 16px;
    padding: 40px;
}

.rr-exchange__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    color: #4a1d6a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(74, 29, 106, 0.1);
}

.rr-exchange__content .rr-heading {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.rr-exchange__content>p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 16px;
}

.rr-exchange__steps {
    padding-left: 18px;
    margin: 0 0 20px;
}

.rr-exchange__steps li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.rr-exchange__note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 71, 0.1);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #8a6200;
}

.rr-exchange__note svg {
    color: #D4A847;
    flex-shrink: 0;
}

/* FAQ */
.rr-faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.rr-faq-item {
    border-bottom: 1px solid rgba(74, 29, 106, 0.08);
}

.rr-faq-item:first-child {
    border-top: 1px solid rgba(74, 29, 106, 0.08);
}

.rr-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a1d6a;
    cursor: pointer;
    gap: 16px;
    min-height: 44px;
    transition: color 0.2s;
}

.rr-faq-question:hover {
    color: #D4A847;
}

.rr-faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(74, 29, 106, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a1d6a;
    transition: background 0.2s, transform 0.3s;
}

.rr-faq-item--open .rr-faq-icon {
    background: #4a1d6a;
    color: #fff;
    transform: rotate(45deg);
}

.rr-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.rr-faq-answer p {
    padding: 0 0 18px;
    font-size: 0.9rem;
    line-height: 1.75;
    color: #555;
    margin: 0;
}

/* Contact dark */
.rr-contact {
    background: linear-gradient(135deg, #1a0530 0%, #3a1260 100%);
    border-radius: 20px;
    text-align: center;
    padding: 60px 40px;
    margin: 0 0 60px;
}

.rr-contact__heading {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.rr-contact__sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}

.rr-contact__details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.rr-contact__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.rr-contact__item svg {
    color: #D4A847;
}

.rr-contact__item a {
    color: #D4A847;
    text-decoration: underline;
}

.rr-contact__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #D4A847;
    color: #2c2c2c;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0 36px;
    height: 52px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.rr-contact__btn:hover {
    background: #e5b84a;
    transform: translateY(-2px);
}

/* Trust footer */
.rr-trust {
    background: rgba(74, 29, 106, 0.06);
    border-radius: 20px;
    text-align: center;
    padding: 50px 40px;
    margin: 32px 0 60px;
}

.rr-trust__icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(74, 29, 106, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #c62828;
}

.rr-trust h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a1d6a;
    margin-bottom: 10px;
}

.rr-trust p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {

    .rr-cards,
    .rr-refund-grid {
        grid-template-columns: 1fr;
    }

    .rr-eligibility {
        grid-template-columns: 1fr;
    }

    .rr-damaged__content,
    .rr-split,
    .rr-exchange {
        flex-direction: column;
        gap: 20px;
    }

    .rr-contact {
        padding: 40px 24px;
    }

    .rr-contact__details {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .rr-guarantee__inner {
        padding: 36px 24px;
    }

    .rr-trust {
        padding: 36px 24px;
    }
}

/*--------------------------------------------------------------
21.0 Terms & Conditions Page
--------------------------------------------------------------*/
.tc-page {
    background: #FAF7F2;
    padding: 80px 0 60px;
}

.tc-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.tc-header {
    text-align: center;
    margin-bottom: 56px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(74, 29, 106, 0.1);
}

.tc-header__icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(74, 29, 106, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #4a1d6a;
}

.tc-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #4a1d6a;
    margin-bottom: 8px;
}

.tc-updated {
    font-size: 0.875rem;
    color: #999;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    text-align: center;
}

.tc-updated--bottom {
    text-align: left;
    margin: 0 0 16px;
}

.tc-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
}

/* TOC */
.tc-toc {
    background: #fff;
    border: 1px solid rgba(74, 29, 106, 0.1);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 56px;
}

.tc-toc__heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4a1d6a;
    margin-bottom: 16px;
}

.tc-toc__list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 40px;
}

.tc-toc__list li {
    font-size: 0.875rem;
}

.tc-toc__list a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.tc-toc__list a:hover {
    color: #4a1d6a;
}

/* Sections */
.tc-section {
    padding: 44px 0;
    border-bottom: 1px solid rgba(74, 29, 106, 0.07);
}

.tc-section:last-of-type {
    border-bottom: none;
}

.tc-section__heading {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #4a1d6a;
    margin-bottom: 14px;
}

.tc-section p {
    font-size: 1rem;
    line-height: 1.85;
    color: #444;
    margin-bottom: 14px;
}

.tc-section p:last-child {
    margin-bottom: 0;
}

.tc-list {
    padding-left: 20px;
    margin: 0 0 14px;
}

.tc-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 8px;
}

.tc-section a {
    color: #4a1d6a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tc-section a:hover {
    color: #D4A847;
}

/* Highlights */
.tc-highlight {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(74, 29, 106, 0.06);
    border-left: 3px solid #4a1d6a;
    border-radius: 0 10px 10px 0;
    padding: 14px 18px;
    margin: 0 0 16px;
}

.tc-highlight--warn {
    background: rgba(198, 40, 40, 0.05);
    border-left-color: #c62828;
}

.tc-highlight svg {
    flex-shrink: 0;
    color: #4a1d6a;
    margin-top: 2px;
}

.tc-highlight--warn svg {
    color: #c62828;
}

.tc-highlight p {
    margin: 0 !important;
    font-size: 0.95rem;
}

/* Contact card */
.tc-contact-card {
    background: #fff;
    border: 1px solid rgba(74, 29, 106, 0.1);
    border-radius: 12px;
    padding: 22px 24px;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tc-contact-item {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.9rem;
    color: #444;
}

.tc-contact-item svg {
    color: #D4A847;
    flex-shrink: 0;
}

.tc-contact-item a {
    color: #4a1d6a;
}

/* Back to top */
.tc-backtop-wrap {
    text-align: center;
    padding: 32px 0 20px;
}

.tc-backtop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4a1d6a;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(74, 29, 106, 0.2);
    border-radius: 999px;
    transition: all 0.2s;
}

.tc-backtop:hover {
    background: #4a1d6a;
    color: #fff;
    border-color: #4a1d6a;
}

/* Mobile */
@media (max-width: 640px) {
    .tc-toc__list {
        grid-template-columns: 1fr;
    }

    .tc-toc {
        padding: 20px;
    }

    .tc-section__heading {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
22.0 Age Verification Gate
--------------------------------------------------------------*/
body.cc-age-gate-open {
    overflow: hidden;
}

.cc-age-gate {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 4, 36, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 24px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.cc-age-gate--visible {
    opacity: 1;
}

.cc-age-gate--hiding {
    opacity: 0;
    pointer-events: none;
}

.cc-age-gate__modal {
    background: #fff;
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    padding: 44px 40px 36px;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
    animation: cc-gate-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes cc-gate-in {
    from {
        transform: translateY(24px) scale(0.96);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Logo */
.cc-age-gate__logo {
    margin-bottom: 20px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-age-gate__logo-img {
    max-height: 44px;
    width: auto;
}

.cc-age-gate__logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: #4a1d6a;
}

/* Badge */
.cc-age-gate__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a1d6a, #6b2c94);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(74, 29, 106, 0.35);
}

/* Heading */
.cc-age-gate__heading {
    font-family: var(--font-display);
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 700;
    color: #4a1d6a;
    margin-bottom: 16px;
    line-height: 1.2;
}

/* Body */
.cc-age-gate__body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.cc-age-gate__body--small {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 28px;
}

/* Buttons */
.cc-age-gate__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.cc-age-gate__btn {
    display: block;
    width: 100%;
    height: 56px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.02em;
}

.cc-age-gate__btn--enter {
    background: #D4A847;
    color: #2c2c2c;
    box-shadow: 0 6px 20px rgba(212, 168, 71, 0.35);
}

.cc-age-gate__btn--enter:hover {
    background: #e5b84a;
    box-shadow: 0 8px 28px rgba(212, 168, 71, 0.45);
    transform: translateY(-1px);
}

.cc-age-gate__btn--exit {
    background: #fff;
    color: #4a1d6a;
    border-color: rgba(74, 29, 106, 0.3);
}

.cc-age-gate__btn--exit:hover {
    background: rgba(74, 29, 106, 0.06);
    border-color: #4a1d6a;
}

/* Footer note */
.cc-age-gate__cookie-note {
    font-size: 0.75rem;
    color: #bbb;
    margin: 0;
}

/* Mobile */
@media (max-width: 500px) {
    .cc-age-gate__modal {
        padding: 32px 24px 28px;
    }

    .cc-age-gate__btn {
        height: 52px;
    }

    .cc-age-gate__heading {
        font-size: 22px;
    }
}

/* ==========================================================
   REVIEWS PAGE (rv-)
   ========================================================== */

/* Hero */
.rv-hero {
    background: #F5F3F8;
    padding: 80px 24px 64px;
}

.rv-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.rv-hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D4A847;
    margin-bottom: 16px;
}

.rv-hero__heading {
    font-size: clamp(36px, 5vw, 56px);
    color: #2D0B4E;
    margin-bottom: 32px;
    line-height: 1.1;
}

.rv-hero__rating-num {
    font-size: 80px;
    font-weight: 800;
    color: #4A1D6A;
    line-height: 1;
    margin-bottom: 8px;
}

.rv-hero__stars {
    font-size: 36px;
    color: #D4A847;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.rv-hero__count {
    font-size: 1rem;
    color: #666;
    margin-bottom: 8px;
}

.rv-hero__sub {
    font-size: 1rem;
    color: #999;
    font-style: italic;
}

/* Filter bar */
.rv-filter-bar {
    background: #FAF7F2;
    border-bottom: 1px solid #e8e0d5;
    position: sticky;
    top: 0;
    z-index: 90;
    padding: 14px 24px;
}

.rv-filter-bar__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.rv-filter-bar__selects {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rv-select {
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid #d8cfc7;
    border-radius: 50px;
    padding: 8px 20px 8px 16px;
    font-size: 0.875rem;
    color: #4A1D6A;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A1D6A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 10px center;
    padding-right: 32px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.rv-select:focus {
    outline: none;
    border-color: #4A1D6A;
}

.rv-sort-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-left: auto;
}

.rv-sort-pill {
    border: 1.5px solid #d8cfc7;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    background: #fff;
    color: #4A1D6A;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rv-sort-pill:hover {
    border-color: #4A1D6A;
}

.rv-sort-pill--active {
    background: #4A1D6A;
    border-color: #4A1D6A;
    color: #fff;
}

/* Wrap */
.rv-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* Breakdown */
.rv-breakdown {
    background: #fff;
    border: 1.5px solid #ede5da;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 64px;
}

.rv-breakdown__inner {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.rv-breakdown__summary {
    text-align: center;
    min-width: 120px;
}

.rv-breakdown__big {
    font-size: 56px;
    font-weight: 800;
    color: #4A1D6A;
    line-height: 1;
}

.rv-breakdown__stars {
    font-size: 22px;
    color: #D4A847;
    letter-spacing: 2px;
    margin: 6px 0;
}

.rv-breakdown__total {
    font-size: 0.85rem;
    color: #888;
}

.rv-breakdown__bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 260px;
}

.rv-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 0;
    border-radius: 8px;
    transition: background 0.2s;
}

.rv-bar-row:hover {
    background: #faf6f2;
}

.rv-bar-row__label {
    font-size: 0.85rem;
    color: #4A1D6A;
    font-weight: 600;
    min-width: 36px;
    text-align: left;
}

.rv-bar-row__track {
    flex: 1;
    height: 10px;
    background: #ede5da;
    border-radius: 99px;
    overflow: hidden;
}

.rv-bar-row__fill {
    height: 100%;
    background: #D4A847;
    border-radius: 99px;
    transition: width 0.8s ease;
}

.rv-bar-row__pct {
    font-size: 0.8rem;
    color: #666;
    min-width: 32px;
    text-align: right;
}

.rv-bar-row__count {
    font-size: 0.8rem;
    color: #aaa;
    min-width: 36px;
}

/* Section heading */
.rv-section {
    margin-bottom: 64px;
}

.rv-section__intro {
    margin-bottom: 32px;
}

.rv-heading {
    font-size: clamp(26px, 3vw, 36px);
    color: #2D0B4E;
}

.rv-heading__count {
    font-size: 0.9rem;
    font-weight: 500;
    color: #888;
    margin-left: 10px;
    vertical-align: middle;
}

/* Featured grid: 3 cols */
.rv-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* Main reviews grid: 2 cols */
.rv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Review card */
.rv-card {
    background: #fff;
    border: 1.5px solid #ede5da;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.rv-card:hover {
    box-shadow: 0 8px 32px rgba(74, 29, 106, 0.1);
    transform: translateY(-3px);
}

.rv-card--featured {
    border-color: #D4A847;
    border-width: 2px;
}

.rv-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rv-card__stars {
    font-size: 18px;
    color: #D4A847;
    letter-spacing: 2px;
}

.rv-card__date {
    font-size: 0.8rem;
    color: #aaa;
}

.rv-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rv-card__author {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2D0B4E;
}

.rv-card__verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4CAF50;
    background: #f0faf0;
    border-radius: 50px;
    padding: 3px 10px;
}

.rv-card__verified svg {
    stroke: #4CAF50;
}

.rv-card__product {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #888;
}

.rv-card__product-dot {
    width: 8px;
    height: 8px;
    background: #D4A847;
    border-radius: 50%;
    flex-shrink: 0;
}

.rv-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #4A1D6A;
    margin: 0;
    line-height: 1.3;
}

.rv-card__text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555;
    margin: 0;
}

.rv-card__readmore {
    background: none;
    border: none;
    color: #4A1D6A;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    align-self: flex-start;
}

.rv-card__helpful {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    font-size: 0.8rem;
    color: #aaa;
    border-top: 1px solid #f0ebe5;
    padding-top: 12px;
}

.rv-helpful-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #faf6f2;
    border: 1px solid #e8e0d5;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.8rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.rv-helpful-btn:hover {
    border-color: #4A1D6A;
    color: #4A1D6A;
}

.rv-helpful-btn--voted {
    background: #4A1D6A;
    border-color: #4A1D6A;
    color: #fff;
}

.rv-helpful-btn em {
    font-style: normal;
}

/* No results */
.rv-no-results {
    text-align: center;
    padding: 60px 24px;
    color: #999;
}

.rv-no-results svg {
    display: block;
    margin: 0 auto 16px;
    stroke: #ccc;
}

.rv-clear-btn {
    margin-top: 16px;
    background: #4A1D6A;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.rv-clear-btn:hover {
    background: #2D0B4E;
}

/* Load more */
.rv-load-more {
    text-align: center;
    margin-top: 40px;
}

.rv-load-btn {
    background: none;
    border: 2px solid #4A1D6A;
    border-radius: 50px;
    padding: 14px 36px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #4A1D6A;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rv-load-btn:hover:not(:disabled) {
    background: #4A1D6A;
    color: #fff;
}

.rv-load-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Trust strip */
.rv-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    padding: 32px 0;
    border-top: 1px solid #ede5da;
    border-bottom: 1px solid #ede5da;
    margin-bottom: 64px;
}

.rv-trust__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #666;
}

.rv-trust__item svg {
    stroke: #D4A847;
    flex-shrink: 0;
}

.rv-trust__item a {
    color: #4A1D6A;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Write a review CTA */
.rv-write-cta {
    background: linear-gradient(135deg, #2D0B4E 0%, #4A1D6A 100%);
    border-radius: 20px;
    padding: 48px 40px;
    margin-bottom: 40px;
}

.rv-write-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.rv-write-cta__text h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 6px;
}

.rv-write-cta__text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.rv-write-btn {
    background: #D4A847;
    color: #2c2c2c;
    border: none;
    border-radius: 50px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: filter 0.2s, transform 0.2s;
}

.rv-write-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

/* Sticky mobile write button */
.rv-sticky-write {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.rv-sticky-write--visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.rv-sticky-write__btn {
    background: #D4A847;
    color: #2c2c2c;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    transition: filter 0.2s;
}

.rv-sticky-write__btn:hover {
    filter: brightness(1.08);
}

/* Modal */
.rv-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.rv-modal[hidden] {
    display: none;
}

.rv-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 5, 35, 0.65);
    backdrop-filter: blur(4px);
}

.rv-modal__box {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.rv-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f5f0eb;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.rv-modal__close:hover {
    background: #ede5da;
}

.rv-modal__title {
    font-size: 1.6rem;
    color: #2D0B4E;
    margin-bottom: 6px;
}

.rv-modal__sub {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 28px;
}

/* Review form */
.rv-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.rv-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.rv-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.rv-form__label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #4A1D6A;
}

.rv-form__input {
    border: 1.5px solid #d8cfc7;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #2c2c2c;
    background: #faf7f2;
    transition: border-color 0.2s;
    width: 100%;
}

.rv-form__input:focus {
    outline: none;
    border-color: #4A1D6A;
    background: #fff;
}

.rv-form__select {
    appearance: none;
    -webkit-appearance: none;
}

.rv-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.rv-form__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #555;
    cursor: pointer;
}

.rv-form__check input {
    margin-top: 3px;
    accent-color: #4A1D6A;
    flex-shrink: 0;
}

.rv-form__submit {
    background: #D4A847;
    color: #2c2c2c;
    border: none;
    border-radius: 50px;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.2s, transform 0.2s;
}

.rv-form__submit:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.rv-form__success {
    text-align: center;
    padding: 32px 0;
    color: #4CAF50;
}

.rv-form__success svg {
    display: block;
    margin: 0 auto 12px;
    stroke: #4CAF50;
}

.rv-form__success p {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

/* Star selector in form */
.rv-star-select {
    display: flex;
    gap: 6px;
}

.rv-star-select__star {
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: #ddd;
    transition: color 0.15s, transform 0.15s;
    line-height: 1;
    padding: 0;
}

.rv-star-select__star--active,
.rv-star-select__star--hover {
    color: #D4A847;
    transform: scale(1.15);
}

/* Responsive */
@media (max-width: 900px) {
    .rv-featured-grid {
        grid-template-columns: 1fr;
    }

    .rv-grid {
        grid-template-columns: 1fr;
    }

    .rv-breakdown__inner {
        flex-direction: column;
        align-items: center;
    }

    .rv-write-cta__inner {
        flex-direction: column;
    }

    .rv-write-cta__text {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .rv-hero__rating-num {
        font-size: 64px;
    }

    .rv-filter-bar__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .rv-sort-pills {
        margin-left: 0;
    }

    .rv-modal__box {
        padding: 28px 20px;
    }

    .rv-form__row {
        grid-template-columns: 1fr;
    }

    .rv-breakdown {
        padding: 24px;
    }

    .rv-wrap {
        padding: 40px 16px;
    }
}