/* ===================================
   Third Eye Crystal - Main Stylesheet
   =================================== */

/* CSS Variables / Design Tokens */
:root {
    /* Colors */
    --color-primary: #E9BE79;
    --color-gold: #E9BE79;
    --color-dark: #000000;
    --color-gray-dark: #404040;
    --color-gray-medium: #5C6368;
    --color-gray-light: #9C9C9C;
    --color-white: #FFFFFF;
    --color-bg-light: #F8F8F8;
    --color-bg-cream: #FFE5BB;
    --color-gradient-purple: linear-gradient(139.29deg, #F4F6F8 51.16%, #909192 133.14%);
    --color-gradient-beige: linear-gradient(113.41deg, #E8E2F1 0%, #EFE9E5 94.4%);
    --color-overlay: rgba(0, 0, 0, 0.3);
    --color-border: rgba(0, 0, 0, 0.25);
    --color-border-light: rgba(0, 0, 0, 0.75);

    /* Typography */
    --font-heading: 'Fraunces', serif;
    --font-subheading: 'Lora', serif;
    --font-body: 'Open Sans', sans-serif;
    --font-button: 'Poppins', sans-serif;
    --font-interface: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 20px;
    --spacing-lg: 32px;
    --spacing-xl: 45px;
    --spacing-2xl: 64px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    --radius-full: 999px;

    /* Shadows */
    --shadow-sm: 0px 1px 2px rgba(16, 24, 40, 0.05);
    --shadow-md: 0px 2px 5px rgba(0, 0, 0, 0.25);

    /* Container */
    --container-max: 1440px;
    --container-narrow: 1183px;
    --container-medium: 1217px;
}

/* ===================================
   Global Styles & Reset
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    margin: 0;
}

header,
footer {
    flex-shrink: 0;
    width: 100%;
}

main {
    flex: 1 0 auto;
    /* Grow to fill space, but don't shrink */
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    flex-shrink: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Prevent Safari from collapsing images in flex containers */
}

/* Flexbox Gap Fallback for older Safari versions */
.flex-gap-fallback {
    display: flex;
    flex-wrap: wrap;
}

[class*="flex"] {
    display: -webkit-flex;
    display: flex;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ===================================
   Typography
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-subheading {
    font-family: var(--font-subheading);
    font-size: 22px;
    line-height: 1.14;
    letter-spacing: 0.002em;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
}

/* ===================================
   Layout Containers
   =================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-wide {
    max-width: 100%;
    padding: 0 var(--spacing-lg);
}

/* ===================================
   Header / Navigation
   =================================== */
.main-header {
    position: relative;
    top: auto;
    z-index: 1000;
    background-color: var(--color-white);
    padding: var(--spacing-md) 0;
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.header-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.site-logo {
    height: 150px;
    width: auto;
}

.main-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

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

.nav-link {
    font-family: var(--font-button);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.003em;
    padding: var(--spacing-xs) var(--spacing-sm);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-shrink: 0;
}

.header-search-row {
    display: flex;
    justify-content: center;
    width: 100%;
}

.search-box {
    position: relative;
}

.search-input {
    width: 600px;
    height: 40px;
    padding: 0 var(--spacing-md);
    border: 0.25px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 12px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.search-input:focus {
    border-color: var(--color-gold);
}

.icon-btn {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.icon-btn:hover {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--color-gold);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: var(--radius-full);
}

/* ===================================
   Hero Banner Section
   =================================== */
.hero-banner {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 1350px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    /* Fix for Safari border-radius overflow */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--color-overlay), var(--color-overlay)),
        url('TE-VIDEO.png');
    background-size: cover;
    background-position: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--color-overlay);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--spacing-lg);
    max-width: 709px;
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.hero-tagline {
    font-family: var(--font-button);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
}

/* ===================================
   Shop by Energy Section
   =================================== */
.shop-by-energy {
    padding: var(--spacing-2xl) 0;
}

.section-intro {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-intro.centered {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-xl);
}

.energy-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    max-width: 1217px;
    /* Adjusted to match container-medium */
    margin: 0 auto;
    align-items: stretch;
}

.energy-card-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 560px;
    /* Taller for the main image */
    display: flex;
    align-items: flex-end;
    /* Align content to bottom */
    padding: 40px;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}

.energy-card-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.energy-card-small {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    flex: 1;
    /* Equal height split */
    min-height: 270px;
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-lg);
}

.energy-card-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform 0.5s ease;
}

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

.card-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.energy-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.energy-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.energy-tag {
    display: inline-block;
    color: var(--color-white);
    font-family: var(--font-interface);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.energy-card-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 24px;
}

.energy-card-title-small {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-white);
}

/* Click to Reveal Interactions */
.click-reveal-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
    pointer-events: none;
    /* Let clicks pass through to the card */
    background: rgba(255, 255, 255, 0.1);
    /* Subtle highlight */
    backdrop-filter: blur(2px);
    /* Slight blur to pop text */
}

/* Reveal on Hover */
.energy-card-main:hover .click-reveal-content,
.energy-card-small:hover .click-reveal-content {
    opacity: 1;
}

.click-reveal-content h3 {
    font-family: var(--font-heading);
    color: #000000;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
    /* Halo for readability */
}

.energy-card-main .click-reveal-content h3 {
    font-size: 38px;
    line-height: 1.2;
}

.energy-card-small .click-reveal-content h3 {
    font-size: 38px;
    line-height: 1.3;
}

/* Make cards clickable link-style */
.energy-card-main,
.energy-card-small {
    cursor: pointer;
}

.btn-text-white {
    color: var(--color-white);
    font-family: var(--font-button);
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-text-white .arrow {
    transition: transform 0.3s ease;
}

.btn-text-white:hover .arrow {
    transform: translateX(5px);
}

/* ===================================
   Product Story Section
   =================================== */
.product-story-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--color-white);
    overflow: hidden;
    position: relative;
}

.story-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centered layout */
    gap: var(--spacing-lg);
    /* Space for arrows */
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.slider-nav {
    width: 39.42px;
    height: 39.42px;
    border-radius: 50%;
    border: 0.79px solid #5C6368;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5C6368;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-nav svg {
    width: 18px;
    height: 18px;
}

.slider-nav:hover {
    border-color: var(--color-dark);
    color: var(--color-dark);
    transform: scale(1.05);
}

.story-layout {
    display: flex;
    align-items: center;
    /* Vertical center alignment */
    justify-content: center;
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    /* Shrink fit to content width */
    margin: 0 auto;
    padding: 0;
}

.story-text-content {
    /* Rectangle 18 - Increased Size */
    width: 630px;
    height: 420px;
    background: linear-gradient(139.29deg, #F4F6F8 51.16%, #909192 133.14%);
    border-radius: 10px;
    padding: 50px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-right: 32px;
    /* Gap */
    flex-shrink: 0;
}

.story-title {
    font-family: 'Fraunces', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    /* Increased font size slightly */
    line-height: 120%;
    color: #000000;
    margin-bottom: 24px;
    width: 100%;
    max-width: 100%;
}

.story-description {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    /* Increased font size slightly */
    line-height: 1.5;
    color: #000000;
    width: 100%;
    max-width: 100%;
}

.story-visuals {
    /* Rectangle 19 - Increased Size */
    width: 530px;
    height: 420px;
    position: relative;
    flex-shrink: 0;
}

.story-main-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

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

/* Hover effect removed as requested */

.story-floating-image {
    /* Rectangle 31 - Adjusted Position */
    position: absolute;
    width: 580px;
    height: 680px;
    border-radius: 10px;

    /* Moved down even further */
    top: 78%;
    left: 54%;
    /* Rotated clockwise from -20deg to 15deg */
    transform: translate(-50%, -50%) rotate(15deg);

    z-index: 20;
    pointer-events: none;
}

.front-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* @keyframes float removed */

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .story-layout {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 60px;
        /* Increase gap for larger crystal */
    }

    .story-text-content {
        width: 100%;
        max-width: 528px;
        margin-right: 0;
        margin-bottom: 20px;
        align-items: center;
        text-align: center;
        height: auto;
        min-height: 300px;
    }

    .story-title,
    .story-description {
        width: 100%;
    }

    .story-visuals {
        width: 100%;
        max-width: 440px;
    }

    .story-floating-image {
        /* Reset for mobile */
        top: auto;
        bottom: -40px;
        left: auto;
        right: -20px;
        transform: rotate(5deg);
        width: 160px;
        height: 160px;
    }

    .story-main-image {
        margin-top: 60px;
    }

    .slider-nav {
        display: none;
    }
}

/* ===================================
   Energy Selector Tabs
   =================================== */
.energy-selector-section {
    padding: var(--spacing-lg) 0;
    margin-bottom: var(--spacing-2xl);
}

.energy-tabs {
    /* Group 36, Rectangle 12 */
    width: 100%;
    max-width: 1072px;
    height: 57px;

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

    background-color: var(--color-white);
    border: 1px solid #000000;
    border-radius: 20px;

    padding: 5px;
    /* Spacing for the inner pill */
    margin: 0 auto;
    position: relative;
}

.energy-tab {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 10px;
    letter-spacing: 0.005em;

    background-color: transparent;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;

    color: #404040;
    /* Default color */
}

.energy-tab.active {
    /* Rectangle 13 */
    background-color: #404040;
    color: #FFFFFF;
}

.energy-tab:hover:not(.active) {
    background-color: rgba(0, 0, 0, 0.05);
}

/* ===================================
   Most Loved Section
   =================================== */
.most-loved-section {
    padding: var(--spacing-2xl) 0 0 0;
}

.horizontal-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    margin: 0 -20px;
    padding: 0 20px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari and Opera */
}

.product-scroll-container {
    display: flex;
    gap: var(--spacing-md);
    padding-bottom: 0;
}

.scroll-product-card {
    flex: 0 0 261px;
    height: 325px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
    /* Add transition for smooth effect */
}

.scroll-product-card:hover {
    transform: translateY(-5px);
    /* Lift effect */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

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

.scroll-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   Quiz Section
   =================================== */
/* ===================================
   Quiz Section
   =================================== */
.quiz-section {
    padding: 0 0 var(--spacing-2xl) 0;
    overflow: hidden;
}

.quiz-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md) var(--spacing-md) var(--spacing-md);
}

.quiz-content-card {
    /* Gradient Background */
    background: linear-gradient(135deg, #EADFF3 0%, #F5F1E8 100%);
    width: 750px;
    padding: 60px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
    /* Below image */
    margin-right: -50px;
    /* Create Overlap */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quiz-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
    text-align: center;
    /* Ensure title remains centered */
    width: 100%;
}

.quiz-description {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-gray-dark);
    margin-bottom: var(--spacing-lg);
    max-width: 350px;
    text-align: left;
    /* specific left alignment as requested */
    width: 100%;
    /* Ensure text align works within the max-width block */
}

.quiz-question-box {
    background-color: var(--color-white);
    padding: 15px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: var(--spacing-lg);
    width: 100%;
    max-width: 380px;
    text-align: left;
    /* Ensure question text is left aligned */
}

.quiz-input {
    display: block;
    height: 48px;
    border: 1px solid #F0F0F0;
    /* Even lighter border */
    border-radius: 12px;
    background: #FFFFFF;
    width: 100%;
    padding: 0 15px;
    /* Add some padding for text */
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-dark);
    outline: none;
}

.quiz-input::placeholder {
    color: #A0A0A0;
    font-style: italic;
    font-weight: 300;
}

.question-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark);
    margin: 0;
}

.btn-quiz-action {
    background-color: #E9BE79;
    /* Gold */
    color: #000000;
    font-family: var(--font-button);
    font-weight: 500;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-quiz-action:hover {
    transform: translateY(-2px);
    background-color: #dcb372;
}

.quiz-visual-card {
    width: 380px;
    margin-top: 400px;
    margin-left: -60px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    /* On top so it doesn't get overlapped */
    pointer-events: none;
    /* Allow clicking through the image to the card/button below */
    /* Above text card */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    /* Make sure image darkens or fits well */
    background-color: #000;
}

.quiz-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.btn-image-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E9BE79;
    /* Gold */
    color: #000000;
    font-family: var(--font-button);
    font-weight: 500;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    pointer-events: auto;
    /* Re-enable clicks for the specific button on the image */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.btn-image-overlay:hover {
    transform: translateX(-50%) scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .quiz-wrapper {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .quiz-content-card {
        width: 100%;
        margin-right: 0;
        padding: 40px 20px;
    }

    .quiz-visual-card {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }
}

/* ===================================
   Latest Gems Promotional Cards
   =================================== */
.latest-gems-section {
    padding: var(--spacing-2xl) 0;
}

.promo-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    max-width: 1204px;
    margin: 0 auto;
}

.promo-card {
    position: relative;
    height: 440px;
    border-radius: 16px;
    overflow: hidden;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Flip the image inside the vibrant promo card */
.promo-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Flip and zoom the image inside the vibrant promo card */
.promo-card-vibrant .promo-card-bg img {
    transform: scale(1.3) scaleX(-1) translate(-50px, 20px);
}

.promo-badges {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.promo-badges .badge:first-child {
    margin-right: auto;
}

.badge {
    padding: 8px 12px;
    border-radius: var(--radius-full);
    font-family: var(--font-interface);
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
}

.badge-white {
    background-color: var(--color-white);
    color: #0F1113;
}

.badge-gray {
    background-color: #D9D9D9;
    color: var(--color-dark);
}

.promo-card-content {
    position: relative;
    z-index: 2;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.promo-title-bold {
    font-family: var(--font-interface);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.promo-text {
    font-family: var(--font-interface);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    max-width: 238px;
}

/* ===================================
   Newsletter Section
   =================================== */
.newsletter-section {
    padding: var(--spacing-2xl) 0;
}

.newsletter-card {
    max-width: var(--container-narrow);
    margin: 0 auto;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl) 249px;
    text-align: center;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-md);
}

.newsletter-subtitle {
    font-family: var(--font-subheading);
    font-size: 22px;
    line-height: 1.14;
    letter-spacing: 0.002em;
    margin-bottom: var(--spacing-lg);
}

.newsletter-form-wrapper {
    position: relative;
    max-width: 685px;
    margin: 0 auto var(--spacing-md);
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
}

.newsletter-input {
    flex: 1;
    height: 48px;
    padding: 0 var(--spacing-md);
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
}

.newsletter-disclaimer {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.67;
    letter-spacing: 0.005em;
    color: var(--color-gray-light);
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    padding: var(--spacing-2xl) 0;
    overflow-x: hidden;
}

.testimonials-scroll {
    display: flex;
    gap: 38.04px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--spacing-md);
    /* Visible scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) #f0f0f0;
}

.testimonials-scroll::-webkit-scrollbar {
    height: 6px;
}

.testimonials-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background-color: var(--color-gold);
    border-radius: 4px;
}

.testimonial-card {
    flex: 0 0 573px;
    background-color: var(--color-white);
    border: 0.951049px solid rgba(20, 20, 20, 0.2);
    border-radius: 11.4126px;
    padding: var(--spacing-lg);
    min-height: 358px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.star-rating {
    display: flex;
    gap: 4px;
}

.star {
    font-size: 24px;
    color: #E76923;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.67;
    letter-spacing: 0.005em;
    text-align: justify;
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviewer-name {
    font-family: 'Aileron', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.48;
    color: #141414;
}

.review-date {
    font-family: 'Aileron', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.63;
    letter-spacing: -0.076px;
    color: rgba(20, 20, 20, 0.5);
}

.review-product-thumb {
    width: 162px;
    height: 165px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.review-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   Footer
   =================================== */
.site-footer {
    background-color: var(--color-bg-cream);
    border-top: 1px solid #D9D9D9;
    padding: 100px 0 var(--spacing-lg);
    margin-top: auto;
    /* Push to bottom if flex container has space */
    width: 100%;
}

.site-footer .container {
    max-width: var(--container-narrow);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.footer-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    width: 100%;
    margin: 0 auto var(--spacing-lg);
}

.footer-links-mobile {
    display: none;
}

.footer-heading {
    font-family: var(--font-interface);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #1E1E1E;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    font-family: var(--font-interface);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #1E1E1E;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    justify-content: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E1E1E;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    color: var(--color-gold);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-button);
    font-size: 16px;
    font-weight: 400;
    line-height: 10px;
    letter-spacing: 0.005em;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-gold);
    border: 1px solid #D0D5DD;
    color: var(--color-dark);
}

.btn-primary:hover {
    background-color: #d4a862;
    transform: translateY(-2px);
    box-shadow: 0px 4px 8px rgba(16, 24, 40, 0.1);
}

.btn-gold {
    background-color: var(--color-gold);
    border: 1px solid var(--color-gold);
    color: #333333;
}

.btn-gold:hover {
    background-color: #d4a862;
    border-color: #d4a862;
}

.btn-subscribe {
    background-color: var(--color-white);
    border: 1px solid #D0D5DD;
    color: var(--color-dark);
    font-family: var(--font-interface);
    font-weight: 600;
    line-height: 24px;
    padding: 12px 24px;
}

.btn-subscribe:hover {
    background-color: var(--color-gold);
}

.quiz-btn {
    width: 170px;
    height: 39px;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    .header-container {
        flex-wrap: wrap;
    }

    .search-box {
        order: 3;
        width: 100%;
        margin-top: var(--spacing-md);
    }

    .search-input {
        width: 100%;
    }

    .story-layout,
    .quiz-layout,
    .promo-cards-grid {
        grid-template-columns: 1fr;
    }

    .energy-cards-grid {
        max-width: 800px;
    }

    .newsletter-card {
        padding: var(--spacing-xl) var(--spacing-lg);
    }
}

@media (max-width: 900px) {
    .energy-cards-grid {
        display: flex;
        overflow-x: auto;
        /* Enable horizontal scrolling */
        -webkit-overflow-scrolling: touch;
        /* Smooth scrolling for iOS */
        scrollbar-width: none;
        /* Hide scrollbar for Firefox */
        white-space: nowrap;
        /* Prevent items from wrapping */
        justify-content: flex-start;
        /* Align items to the start */
        gap: 20px;
        max-width: 100%;
        padding: 0 10px 10px;
    }

    .energy-cards-grid::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar for Chrome, Safari, Edge */
    }

    .energy-card-main {
        min-height: 400px;
    }

    .energy-card-column {
        flex-direction: row;
    }

    .energy-card-small {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-2xl: 40px;
        --spacing-xl: 32px;
    }

    .hero-main-title {
        font-size: 32px;
    }

    .section-heading {
        font-size: 28px;
    }

    .section-subheading {
        font-size: 18px;
    }

    .nav-menu {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .energy-card-column {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
        gap: var(--spacing-xl);
        justify-content: flex-start;
    }

    .footer-column {
        flex: 0 0 45%;
    }

    .newsletter-title {
        font-size: 36px;
    }

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

    .site-logo {
        height: 100px;
    }

    .story-image-rotated {
        transform: rotate(0deg);
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .footer-column {
        flex: 0 0 100%;
    }

    .promo-card {
        height: auto;
    }

    .energy-card-main,
    .energy-card-small {
        min-height: 200px;
        padding: var(--spacing-md);
    }

    .hero-banner {
        height: 300px;
        margin-bottom: var(--spacing-xl);
    }

    .hero-main-title {
        font-size: 28px;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
    text-align: center;
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.hidden {
    display: none;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Smooth transitions for interactive elements */
a,
button,
.energy-tab,
.quiz-question {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Utility classes for responsive visibility */
.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }

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

/* Placeholder for Desktop - Hidden */

/* Mobile Menu Button - Default Hidden */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-dark);
    cursor: pointer;
    padding: 0;
}

.globe-btn {
    display: flex;
}

/* Sidebar Hiding for Desktop */
.mobile-sidebar,
.sidebar-overlay {
    display: none;
}

/* Mobile Specific Styles */
@media (max-width: 768px) {

    /* Header */
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 20;
        /* Ensure it is clickable above logo */
    }

    .main-nav {
        display: none;
    }

    .header-main-row {
        justify-content: space-between;
        padding: 0;
        min-height: 60px;
        align-items: center;
    }

    .header-container {
        padding: 0 10px;
        max-width: 100%;
        overflow: hidden;
    }

    .logo-section {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
    }

    .site-logo {
        height: 100px !important;
        /* Balanced height for a thinner header */
        width: auto;
        display: block;
    }

    .header-search-row {
        margin-top: 0;
    }

    .search-input {
        width: 100%;
        height: 50px;
        font-size: 16px;
        background-color: #FFFFFF;
        border: 1px solid #E5E5E5;
        border-radius: 12px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    }

    .globe-btn {
        display: flex;
    }

    .header-actions {
        gap: 20px;
    }

    /* Hero */
    .hero-banner {
        height: 200px;
        width: 92%;
        margin: 20px auto 15px auto;
        border-radius: 20px;
        overflow: hidden;
    }

    .hero-main-title {
        font-family: var(--font-heading);
        font-weight: 500;
        font-size: 22px;
        line-height: 1.2;
        padding: 0 20px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero-tagline {
        display: none;
    }

    /* Shop by Energy - Row of Items */
    .shop-by-energy {
        padding: 20px 0 0 0;
    }

    .shop-by-energy .section-intro {
        margin-bottom: 30px;
        text-align: center;
    }

    .shop-by-energy .section-heading {
        font-family: var(--font-heading);
        font-size: 22px;
        font-weight: 500;
        margin-bottom: 0;
        color: #000;
    }

    .shop-by-energy .section-description {
        display: none;
    }

    .energy-cards-grid {
        display: flex;
        overflow-x: auto;
        /* Enable horizontal scrolling */
        -webkit-overflow-scrolling: touch;
        /* Smooth scrolling for iOS */
        scrollbar-width: none;
        /* Hide scrollbar for Firefox */
        white-space: nowrap;
        /* Prevent items from wrapping */
        justify-content: flex-start;
        /* Align items to the start */
        gap: 20px;
        max-width: 100%;
        padding: 0 10px 10px;
    }

    .energy-cards-grid::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar for Chrome, Safari, Edge */
    }

    .energy-card-column {
        display: flex;
        /* Ensure column is a flex container */
        flex-direction: row;
        /* Arrange items in a row within the column */
        gap: 20px;
        /* Gap between cards in a column */
    }

    .energy-card-main,
    .energy-card-small {
        flex: 0 0 90px;
        /* Fixed width for cards, prevent shrinking */
        width: 90px;
        height: 90px;
        min-height: 90px;
        border-radius: 50% !important;
        padding: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        position: relative;
    }

    /* Make the images look like floating gems */
    .energy-card-main::after,
    .energy-card-small::after {
        content: '';
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 20px;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        z-index: 0;
        filter: blur(4px);
    }

    .energy-card-image {
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 1;
        border-radius: 50%;
        overflow: visible;
        /* Allow gem to pop out if needed, but safe to clip */
    }

    .card-bg-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* Contain to see the whole ring/gem */
        transform: scale(1.1);
    }

    .click-reveal-content,
    .energy-card-overlay {
        display: none !important;
    }

    /* Product Story */
    .product-story-section {
        padding: 0 0 60px;
    }

    .story-slider-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .story-layout {
        position: relative;
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin: 0;
        padding-bottom: 40px;
        /* Create space for the overflowing crystal */
    }

    .story-text-content {
        background: transparent;
        width: 100%;
        height: auto;
        padding: 0 20px;
        margin: -25px 0 0 0;
        text-align: center;
    }

    .story-title {
        font-family: var(--font-heading);
        font-size: 22px;
        margin-bottom: 5px;
        color: #000;
        line-height: 1.2;
    }

    .story-description {
        font-family: var(--font-body);
        font-size: 14px;
        color: #333;
        line-height: 1.5;
        max-width: 320px;
        margin: 0 auto;
        text-align: center;
    }

    .story-description br {
        display: none;
    }

    .story-visuals {
        width: 100%;
        height: 107px;
        margin-top: -90px;
        position: relative;
    }

    .story-main-image {
        border-radius: 20px;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

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

    /* Green crystal overlay */
    .story-floating-image {
        position: absolute;
        width: 130px;
        height: 130px;
        top: auto;
        bottom: -80px;
        left: auto !important;
        right: 0 !important;
        /* Changed from -20px to 0 to prevent scroll */
        z-index: 9999 !important;
        overflow: visible;
        transform: rotate(5deg) !important;
    }

    .front-img {
        object-fit: cover;
    }

    .slider-nav {
        display: none;
    }

    /* Tabs */
    .energy-selector-section {
        margin: 10px 0 20px 0;
        padding: 0 20px;
    }

    .container-narrow {
        padding: 0;
    }

    .energy-tabs {
        width: 100%;
        max-width: 100%;
        height: 44px;
        border: 1px solid #E5E5E5;
        border-radius: 22px;
        padding: 4px;
    }

    .energy-tab {
        font-size: 13px;
        color: #000;
        font-weight: 500;
        border-radius: 18px;
    }

    .energy-tab.active {
        background-color: #404040;
        color: #fff;
    }

    /* Most Loved */
    .most-loved-section {
        padding-top: 0;
        padding-bottom: 20px;
        overflow: hidden;
        /* Prevent bleed from horizontal wrapper */
    }

    .most-loved-section .section-heading {
        font-family: var(--font-heading);
        font-size: 22px;
        margin-bottom: 15px;
    }

    .most-loved-section .section-subheading {
        display: none;
    }

    .horizontal-scroll-wrapper {
        margin: 0 -20px;
        padding: 0 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .horizontal-scroll-wrapper::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .product-scroll-container {
        display: flex;
        gap: 15px;
        padding-bottom: 20px;
        width: max-content;
    }

    .scroll-product-card {
        display: block !important;
        flex: 0 0 160px;
        height: 200px;
        border-radius: 16px;
        box-shadow: none;
        background-color: #f0f0f0;
        overflow: hidden;
    }

    .scroll-product-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Add ... indicator below */
    .most-loved-section .container::after {
        content: '...';
        display: block;
        text-align: center;
        font-size: 24px;
        color: #ccc;
        margin-top: -10px;
        letter-spacing: 2px;
    }

    /* Quiz */
    .quiz-section {
        padding-bottom: 5px;
        background-color: #FAFAFA;
    }

    .quiz-section .container {
        padding: 0 10px;
    }

    .quiz-wrapper {
        flex-direction: column;
        padding: 5px 0px;
    }

    .quiz-content-card {
        padding: 0;
        background: transparent;
        width: 100%;
        border-radius: 0;
        margin-right: 0;
        box-shadow: none;
        border: none;
    }

    .quiz-heading {
        font-size: 22px;
        font-family: var(--font-heading);
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .quiz-description {
        text-align: center;
        margin: 0 auto 15px;
        font-size: 14px;
        line-height: 1.5;
        color: #555;
        max-width: 100%;
        /* Full width for more words per line */
        padding: 0 10px;
    }

    .quiz-questions-container {
        background: transparent;
        border: 1px solid #F0F0F0;
        border-radius: 20px;
        padding: 15px 15px;
        width: 100%;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .quiz-question-box {
        margin-bottom: 12px;
        width: 100%;
        max-width: 380px;
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
    }

    .question-label {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 10px;
        display: block;
        color: #333;
        font-family: var(--font-body);
        text-align: left;
        line-height: 1.4;
        width: 100%;
        max-width: 100%;
    }

    .question-text {
        display: none;
    }

    .quiz-visual-card {
        display: block;
        width: 100%;
        max-width: 300px;
        height: 300px;
        margin: 20px auto 0;
        position: relative;
        z-index: 1;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-radius: 15px;
        overflow: hidden;
    }

    .btn-quiz-action {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        margin-top: 10px;
        border-radius: 10px;
        background-color: #D4AF68;
        color: #FFF;
        font-weight: 500;
        text-transform: none;
        border: none;
    }

    /* Latest Gems */
    .latest-gems-section {
        padding: 20px 0 45px;
        /* Increased bottom padding to prevent overlap */
    }

    .latest-gems-section .container {
        padding: 0;
    }

    /* Hide existing title text if it conflicts, or style it */
    .latest-gems-section .section-title {
        display: none;
        /* We use pseudo element */
    }

    .latest-gems-section .container::before {
        content: 'Latest Gems';
        display: block;
        text-align: center;
        font-family: var(--font-heading);
        font-size: 22px;
        margin-bottom: 20px;
        color: #000;
    }

    .promo-cards-grid {
        display: block;
        position: relative;
        height: 190px;
        width: 100%;
        overflow: visible;
        padding: 0;
        margin: 0 auto;
    }

    .promo-card {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate3d(-50%, 0, 0);
        height: 180px !important;
        width: 90% !important;
        /* Changed from 330px to 90% for responsiveness */
        max-width: 330px !important;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        border-radius: 20px !important;
        opacity: 0;
        animation: promoLoop 9s infinite;
        overflow: hidden !important;
        z-index: 10;
        background: #000;
        box-sizing: border-box !important;
        border: none !important;
        isolation: isolate;
        -webkit-mask-image: -webkit-radial-gradient(white, black);
        mask-image: radial-gradient(white, black);
    }

    .promo-card-bg,
    .promo-card-bg img {
        position: absolute !important;
        inset: 0 !important;
        z-index: -1 !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 20px !important;
        overflow: hidden !important;
        object-fit: cover !important;
    }

    .promo-card-content {
        position: relative;
        z-index: 10 !important;
        width: 100%;
        text-align: left;
        pointer-events: none;
        /* Let clicks pass to badges if needed */
    }

    .promo-card:nth-child(2) {
        animation-delay: 4s;
    }

    @keyframes promoLoop {
        0% {
            opacity: 0;
            z-index: 1;
        }

        5% {
            opacity: 1;
            z-index: 2;
        }

        45% {
            opacity: 1;
            z-index: 2;
        }

        50% {
            opacity: 0;
            z-index: 1;
        }

        100% {
            opacity: 0;
            z-index: 1;
        }
    }

    .promo-card:first-child {
        display: flex;
        /* Override previous rule */
    }



    .promo-mobile-title {
        display: block !important;
        z-index: 40 !important;
        position: relative !important;
        margin: 0 !important;
        font-family: var(--font-heading) !important;
        font-size: 14px !important;
        color: #FFFFFF !important;
        font-weight: 500 !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }

    .promo-badges {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        position: absolute !important;
        top: 6px !important;
        left: 0 !important;
        padding: 0 15px !important;
        z-index: 50 !important;
        pointer-events: none;
        box-sizing: border-box !important;
    }

    .badge-mobile-trending,
    .badge-mobile-price {
        background: #FFFFFF !important;
        color: #000000 !important;
        padding: 2px 8px !important;
        border-radius: 20px !important;
        font-size: 8px !important;
        font-weight: 600 !important;
        text-transform: lowercase !important;
        white-space: nowrap !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .testimonials-section {
        padding: 60px 0 10px;
        /* Increased top padding to separate from promo cards */
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        clear: both;
        margin-top: 10px;
    }

    .testimonials-scroll {
        display: block !important;
        position: relative !important;
        height: 180px !important;
        /* Tightened height to show one card with less space */
        overflow: hidden !important;
    }

    .testimonial-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        display: block !important;
        background: transparent !important;
        border: none !important;
        padding: 0 20px !important;
        text-align: center !important;
        box-shadow: none !important;
        opacity: 0;
        animation: testimonialLoop 30s infinite;
        /* 5s per review, supporting 6 reviews */
    }

    /* Loop for 6 testimonials in 30s cycle */
    .testimonial-card:nth-child(1) {
        animation-delay: 0s;
    }

    .testimonial-card:nth-child(2) {
        animation-delay: 5s;
    }

    .testimonial-card:nth-child(3) {
        animation-delay: 10s;
    }

    .testimonial-card:nth-child(4) {
        animation-delay: 15s;
    }

    .testimonial-card:nth-child(5) {
        animation-delay: 20s;
    }

    .testimonial-card:nth-child(6) {
        animation-delay: 25s;
    }

    /* Hide any testimonials beyond 6 to prevent overlapping */
    .testimonial-card:nth-child(n+7) {
        display: none !important;
    }

    @keyframes testimonialLoop {

        0%,
        13% {
            opacity: 1;
            z-index: 2;
            visibility: visible;
        }

        16.6%,
        100% {
            opacity: 0;
            z-index: 1;
            visibility: hidden;
        }
    }

    .testimonial-text,
    .testimonial-text-large {
        font-family: var(--font-heading) !important;
        font-size: 16px !important;
        line-height: 1.5 !important;
        color: #000 !important;
        margin-bottom: 25px !important;
        font-weight: 500 !important;
        text-align: center !important;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        display: block !important;
    }

    .testimonial-footer {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        border-top: none !important;
        padding-top: 0 !important;
        width: 100%;
    }

    .reviewer-details {
        text-align: left;
    }

    .reviewer-name {
        font-family: var(--font-heading);
        font-size: 16px;
        font-weight: 600;
        color: #000;
        margin-bottom: 4px;
    }

    .review-date {
        font-size: 12px;
        color: #666;
    }

    .review-product-thumb {
        width: 90px;
        height: 90px;
        background: transparent;
    }

    .review-product-thumb img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Newsletter */
    .newsletter-section {
        padding: 30px 0 50px;
        background-color: #F8F7F2;
        /* Cream background from image */
        overflow: hidden;
        /* Prevent potential overflow from inputs */
    }

    .newsletter-card {
        padding: 0 25px;
        background-color: transparent;
        text-align: center;
    }

    .newsletter-title {
        font-family: var(--font-heading);
        font-size: 32px;
        font-weight: 500;
        color: #000;
        margin-bottom: 1px;
    }

    .newsletter-subtitle {
        font-family: var(--font-body);
        font-size: 16px;
        color: #000;
        margin-bottom: 35px;
        line-height: 1.3;
        font-weight: 400;
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
    }

    .newsletter-form-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .newsletter-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center children */
        gap: 20px;
        width: 100%;
    }

    .newsletter-input {
        flex: none !important;
        height: 40px !important;
        min-height: 40px !important;
        background: #F8F7F2 !important;
        border: 1px solid #E0E0E0 !important;
        border-radius: 15px !important;
        font-size: 16px !important;
        padding: 0 20px !important;
        font-family: var(--font-body) !important;
        text-align: center !important;
        box-sizing: border-box !important;
        display: block !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .newsletter-input::placeholder {
        color: #A0A0A0;
        font-style: italic;
        font-weight: 300;
        text-align: center !important;
    }

    .btn-subscribe {
        width: 100% !important;
        max-width: 100% !important;
        height: 40px !important;
        margin: 10px auto 0 !important;
        background-color: #CDAF71 !important;
        color: #fff !important;
        border: none !important;
        border-radius: 12px !important;
        font-size: 18px !important;
        font-weight: 500 !important;
        letter-spacing: 0.5px !important;
        box-shadow: none !important;
        display: block !important;
    }

    .newsletter-disclaimer {
        display: none;
    }

    /* Footer */
    .site-footer {
        padding: 40px 0;
        background-color: #FFFFFF;
        margin-top: 40px;
        /* Reverted huge margin on mobile */
    }

    .site-footer .container {
        padding: 0 var(--spacing-md);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        display: none;
    }

    .footer-links-mobile {
        display: flex;
        justify-content: center;
        gap: 25px;
        list-style: none;
        padding: 0;
        margin-bottom: 40px;
    }

    .footer-links-mobile a {
        font-family: var(--font-interface);
        font-weight: 500;
        font-size: 15px;
        color: #000;
        text-decoration: none;
    }

    .footer-social {
        border-top: none;
        padding-top: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .social-icons {
        gap: 20px;
    }

    /* Mobile Sidebar Menu */
    .mobile-sidebar {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        /* Making it full width to match the image feel */
        height: 100vh;
        background-color: #FFFFFF;
        z-index: 9999;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 10px 25px;
        flex-direction: column;
        overflow-y: auto;
    }

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

    .sidebar-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .sidebar-header {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-bottom: 25px;
        gap: 20px;
        position: relative;
    }

    .header-icons {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .close-sidebar {
        position: absolute;
        top: 0;
        left: 0;
        background: none;
        font-size: 28px;
        color: #999;
        padding: 0;
        border: none;
    }

    .sidebar-promo-banner {
        margin-bottom: 10px;
    }

    .promo-banner-card {
        background-color: #FFDFE1;
        /* Matches the soft pink in image */
        border-radius: 15px;
        padding: 20px 15px;
        text-align: center;
        position: relative;
        overflow: visible;
    }

    .promo-banner-card .promo-discount-text {
        font-family: var(--font-heading);
        font-size: 16px;
        font-weight: 500;
        color: #000;
        margin-bottom: 3px;
        letter-spacing: 0.02em;
    }

    .promo-banner-card .promo-sub-text {
        font-family: var(--font-body);
        font-size: 13px;
        color: #333;
        margin-bottom: 12px;
    }

    .promo-links {
        font-size: 14px;
        color: #666;
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .promo-links a {
        color: #333;
        font-weight: 500;
        text-decoration: none;
        border-bottom: 1px solid transparent;
    }

    /* Subtle divider link */
    .promo-links span {
        color: #999;
    }

    /* Scallop cutouts on promo card - matching the white circles in the image */
    .promo-banner-card::before,
    .promo-banner-card::after {
        content: '';
        position: absolute;
        width: 28px;
        height: 28px;
        background-color: #FFFFFF;
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
    }

    .promo-banner-card::before {
        left: -14px;
    }

    .promo-banner-card::after {
        right: -14px;
    }

    .sidebar-nav {
        margin-bottom: 20px;
    }

    .sidebar-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sidebar-nav li {
        border-bottom: 1px solid #EEEEEE;
    }

    .sidebar-nav li:first-child {
        border-top: 1px solid #EEEEEE;
        /* Image shows a top border for the first item too */
    }

    .sidebar-nav a {
        display: block;
        padding: 10px 0;
        font-family: var(--font-interface);
        font-size: 15px;
        font-weight: 400;
        color: #333;
        transition: all 0.2s ease;
    }

    .sidebar-nav a:active {
        background-color: #FAFAFA;
        padding-left: 5px;
    }

    .sidebar-footer {
        margin-top: 10px;
        padding: 5px 0 20px;
        display: flex;
        justify-content: center;
    }

    .sidebar-logo {
        height: 80px;
        width: auto;
        display: block;
    }

    .mobile-hidden {
        display: none !important;
    }

    .mobile-hidden-features {
        display: none !important;
    }

    .visual-separator {
        height: 1px;
        background-color: #e0e0e0;
        margin: 30px auto;
        width: 80%;
        max-width: 300px;
    }

}