/* Base Styles and Variables */
:root {
    --cosmic-black: #0A0A1A;
    --neon-moon-white: #FFFFFF;
    --possum-brown: #5A4A42;
    --possum-grey: #9E9E9E;
    --starfield-blue: #4A90E2;
    --accent-purple: #6C4AE2;
    --accent-pink: #E24A9F;
    --cosmic-glow: #e2f0ff;
    --cosmic-gradient: linear-gradient(135deg, var(--starfield-blue), var(--accent-purple), var(--accent-pink));

    --heading-font: 'Bebas Neue', 'Anton', sans-serif;
    --body-font: 'Inter', sans-serif;
    --quote-font: 'Merriweather', serif;

    /* Consistent width variables */
    --content-max-width: 1200px;
    --content-width: min(90%, var(--content-max-width));
    --card-width: min(400px, 100%);
    --section-padding: clamp(2rem, 5vw, 5rem);
    --desktop-side-margin: 8%;
}

/* Phrase animation styles */
#phrase-container {
    position: relative;
    display: inline-block;
    text-shadow: none !important;
}

.phrase {
    white-space: nowrap;
    background: var(--cosmic-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    text-shadow: none !important;
}

.phrase.visible {
    display: inline;
}

.phrase.hidden {
    display: none;
}

/* Happy Family box styling */
.happy-family-box {
    min-width: 350px !important;
    width: 350px !important;
    padding: 0 5px !important;
    margin: 0 5px !important;
}

.happy-family-box img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

.happy-family-box .image-caption {
    width: 100% !important;
    text-align: center !important;
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--neon-moon-white);
    background-color: var(--cosmic-black);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
}

/* Global Container */
.container {
    width: var(--content-width);
    margin: 0 auto;
    position: relative;
}

/* Desktop Margins */
@media screen and (min-width: 1200px) {
    section, .hero-section, .prophecy-section, .reviews-section,
    .cosmic-checkout-container, .details-section, .final-testimonial,
    .amazon-footer, .product-image-box, .product-images-container {
        width: calc(100% - (var(--desktop-side-margin) * 2));
        margin-left: auto;
        margin-right: auto;
        max-width: 1400px;
    }
    
    /* Let's create a completely different layout for desktop product images */
    .product-images-container {
        max-width: 800px !important;
        margin: 0 auto !important;
    }
    
    .product-images-container .image-scroll {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px !important;
        max-width: 800px !important;
        margin: 0 auto !important;
    }
    
    .product-images-container .image-scroll .product-image-box {
        width: 120px !important;
        height: 150px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin: 0 auto !important;
        overflow: hidden !important;
    }
    
    .product-images-container .image-scroll .product-image-box .product-detail-image {
        height: 100px !important;
        width: 100px !important;
        object-fit: contain !important;
    }
    
    .product-images-container .image-scroll .product-image-box .image-caption {
        font-size: 0.8rem !important;
        padding-top: 5px !important;
        text-align: center !important;
    }
}

/* Global image responsiveness */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 1.5px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    hyphens: none;
    word-break: normal;
    white-space: normal;
    padding: 0 10px;
}

p {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    hyphens: none;
    word-break: normal;
}

/* Stars Animation Background */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.55;
    animation: twinkle 4s infinite;
}

/* Each star layer stacks ~20 radial-gradient point lights at hand-
   randomized x/y positions across the viewport, so the pattern reads
   as a scattered starfield instead of a grid. Three layers vary star
   SIZE (1px → 1.5px → 2.5px) to mimic depth — small/faint stars sit
   far away, bigger ones feel closer. Two extra layers add a sparse
   wash of bright highlights and a tight cluster near the corner. */

.star-1 {
    /* 22 tiny background-grade stars (1px) — far galaxy dust */
    background-image:
        radial-gradient(1px 1px at 3vw  17vh,  #fff, transparent 100%),
        radial-gradient(1px 1px at 8vw  62vh,  #fff, transparent 100%),
        radial-gradient(1px 1px at 12vw 38vh,  #fff, transparent 100%),
        radial-gradient(1px 1px at 17vw 84vh,  #fff, transparent 100%),
        radial-gradient(1px 1px at 22vw 9vh,   #fff, transparent 100%),
        radial-gradient(1px 1px at 26vw 53vh,  #fff, transparent 100%),
        radial-gradient(1px 1px at 31vw 27vh,  #fff, transparent 100%),
        radial-gradient(1px 1px at 36vw 71vh,  #fff, transparent 100%),
        radial-gradient(1px 1px at 41vw 42vh,  #fff, transparent 100%),
        radial-gradient(1px 1px at 46vw 96vh,  #fff, transparent 100%),
        radial-gradient(1px 1px at 50vw 12vh,  #fff, transparent 100%),
        radial-gradient(1px 1px at 55vw 60vh,  #fff, transparent 100%),
        radial-gradient(1px 1px at 60vw 33vh,  #fff, transparent 100%),
        radial-gradient(1px 1px at 65vw 77vh,  #fff, transparent 100%),
        radial-gradient(1px 1px at 70vw 24vh,  #fff, transparent 100%),
        radial-gradient(1px 1px at 75vw 49vh,  #fff, transparent 100%),
        radial-gradient(1px 1px at 80vw 88vh,  #fff, transparent 100%),
        radial-gradient(1px 1px at 84vw 6vh,   #fff, transparent 100%),
        radial-gradient(1px 1px at 88vw 41vh,  #fff, transparent 100%),
        radial-gradient(1px 1px at 92vw 68vh,  #fff, transparent 100%),
        radial-gradient(1px 1px at 96vw 19vh,  #fff, transparent 100%),
        radial-gradient(1px 1px at 99vw 92vh,  #fff, transparent 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    animation-delay: 0s;
    opacity: 0.4;
}

.star-2 {
    /* 18 mid-distance stars (1.5px) */
    background-image:
        radial-gradient(1.5px 1.5px at 5vw  44vh, #fff, transparent 100%),
        radial-gradient(1.5px 1.5px at 14vw 7vh,  #fff, transparent 100%),
        radial-gradient(1.5px 1.5px at 19vw 73vh, #fff, transparent 100%),
        radial-gradient(1.5px 1.5px at 28vw 31vh, #fff, transparent 100%),
        radial-gradient(1.5px 1.5px at 33vw 89vh, #fff, transparent 100%),
        radial-gradient(1.5px 1.5px at 39vw 18vh, #fff, transparent 100%),
        radial-gradient(1.5px 1.5px at 44vw 56vh, #fff, transparent 100%),
        radial-gradient(1.5px 1.5px at 52vw 81vh, #fff, transparent 100%),
        radial-gradient(1.5px 1.5px at 58vw 37vh, #fff, transparent 100%),
        radial-gradient(1.5px 1.5px at 63vw 4vh,  #fff, transparent 100%),
        radial-gradient(1.5px 1.5px at 68vw 65vh, #fff, transparent 100%),
        radial-gradient(1.5px 1.5px at 73vw 21vh, #fff, transparent 100%),
        radial-gradient(1.5px 1.5px at 78vw 53vh, #fff, transparent 100%),
        radial-gradient(1.5px 1.5px at 82vw 94vh, #fff, transparent 100%),
        radial-gradient(1.5px 1.5px at 86vw 30vh, #fff, transparent 100%),
        radial-gradient(1.5px 1.5px at 91vw 76vh, #fff, transparent 100%),
        radial-gradient(1.5px 1.5px at 95vw 11vh, #fff, transparent 100%),
        radial-gradient(1.5px 1.5px at 98vw 47vh, #fff, transparent 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    animation-delay: 1s;
    opacity: 0.55;
}

.star-3 {
    /* 10 close, brighter stars (2.5px) — the "near" parallax layer */
    background-image:
        radial-gradient(2.5px 2.5px at 7vw  22vh,  rgba(255,255,255,0.95), transparent 100%),
        radial-gradient(2.5px 2.5px at 24vw 58vh,  rgba(255,255,255,0.95), transparent 100%),
        radial-gradient(2.5px 2.5px at 38vw 11vh,  rgba(255,255,255,0.95), transparent 100%),
        radial-gradient(2.5px 2.5px at 47vw 84vh,  rgba(255,255,255,0.95), transparent 100%),
        radial-gradient(2.5px 2.5px at 56vw 28vh,  rgba(255,255,255,0.95), transparent 100%),
        radial-gradient(2.5px 2.5px at 67vw 51vh,  rgba(255,255,255,0.95), transparent 100%),
        radial-gradient(2.5px 2.5px at 76vw 76vh,  rgba(255,255,255,0.95), transparent 100%),
        radial-gradient(2.5px 2.5px at 84vw 16vh,  rgba(255,255,255,0.95), transparent 100%),
        radial-gradient(2.5px 2.5px at 90vw 39vh,  rgba(255,255,255,0.95), transparent 100%),
        radial-gradient(2.5px 2.5px at 97vw 64vh,  rgba(255,255,255,0.95), transparent 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    animation-delay: 2s;
    opacity: 0.7;
}

.star-4 {
    /* Sparse, gold-tinted "moonlit" highlights */
    background-image:
        radial-gradient(2px 2px at 11vw 41vh, rgba(233, 196, 106, 0.7), transparent 100%),
        radial-gradient(2px 2px at 34vw 67vh, rgba(233, 196, 106, 0.7), transparent 100%),
        radial-gradient(2px 2px at 49vw 14vh, rgba(233, 196, 106, 0.7), transparent 100%),
        radial-gradient(2px 2px at 71vw 9vh,  rgba(233, 196, 106, 0.7), transparent 100%),
        radial-gradient(2px 2px at 81vw 47vh, rgba(233, 196, 106, 0.7), transparent 100%),
        radial-gradient(2px 2px at 93vw 82vh, rgba(233, 196, 106, 0.7), transparent 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    animation-delay: 1.5s;
    opacity: 0.45;
}

.star-5 {
    /* A loose cluster — top-right corner has a denser little group, like
       you're staring into a dim nebula. */
    background-image:
        radial-gradient(1px 1px at 86vw 14vh, #fff, transparent 100%),
        radial-gradient(1px 1px at 88vw 19vh, #fff, transparent 100%),
        radial-gradient(1.5px 1.5px at 91vw 22vh, #fff, transparent 100%),
        radial-gradient(1px 1px at 94vw 17vh, #fff, transparent 100%),
        radial-gradient(1px 1px at 89vw 27vh, #fff, transparent 100%),
        radial-gradient(1px 1px at 19vw 86vh, #fff, transparent 100%),
        radial-gradient(1.5px 1.5px at 22vw 92vh, #fff, transparent 100%),
        radial-gradient(1px 1px at 26vw 88vh, #fff, transparent 100%),
        radial-gradient(1px 1px at 14vw 90vh, #fff, transparent 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    animation-delay: 2.5s;
    opacity: 0.5;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.85; }
}

/* Brand Header Styles */
.brand-header {
    text-align: center;
    padding: 0.5rem 0 0.3rem;
    position: relative;
    z-index: 10;
    width: 100%;
    background-color: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(5px);
}

.brand-name {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    color: var(--neon-moon-white);
    letter-spacing: 4px;
    margin: 0 auto;
    display: block;
    text-align: center;
}

/* Highlight Text */
.highlight {
    background: var(--cosmic-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 8vw; /* Larger font size, but still reasonable */
    color: transparent;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.highlight.no-glow {
    text-shadow: none !important;
}

/* Flip Text Animation */
#flip-text {
    display: inline-block;
    position: relative;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(76, 29, 249, 0.6);
    }
    100% {
        text-shadow: 0 0 20px rgba(76, 29, 249, 0.9), 0 0 30px rgba(76, 29, 249, 0.7);
    }
}

.scramble-letter {
    display: inline-block;
    animation: scramble 0.05s infinite;
}

@keyframes scramble {
    0% { transform: translateY(-2px); }
    50% { transform: translateY(2px); }
    100% { transform: translateY(-2px); }
}

/* Impact Text with special styling */
.impact-text {
    font-family: 'Montserrat', sans-serif;
    font-size: min(7vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
    white-space: pre-line;
    display: inline-block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(76, 29, 249, 0.8), 0 0 40px rgba(76, 29, 249, 0.4);
}

.highlight:after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    color: transparent;
    text-shadow: 2px 2px 10px rgba(74, 144, 226, 0.6);
}

.impact-text.highlight:after {
    left: 0;
    width: 100%;
    top: 0;
    transform: none;
    white-space: pre-line;
    text-align: center;
}

/* Layout Components with Smooth Transitions */
section {
    padding: var(--section-padding);
    max-width: var(--content-max-width);
    margin: 0 auto;
    position: relative;
    margin-top: -1px; /* Prevents tiny gaps between sections */
    z-index: 1;
}

/* Creates a smooth transition between sections */
section:not(:first-child)::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, 
                transparent 0%,
                rgba(10, 10, 26, 0.7) 100%);
    z-index: -1;
    pointer-events: none;
}

section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, 
                transparent 0%,
                rgba(10, 10, 26, 0.7) 100%);
    z-index: -1;
    pointer-events: none;
}

section + section {
    padding-top: 15px;
    margin-top: 0;
}

.section-heading {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
    width: 100%;
    max-width: 100%;
    word-spacing: 0.05em;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
}

.section-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: var(--section-padding);
    position: relative;
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 0.1rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    background-color: rgba(10, 10, 26, 0.7);
    padding: clamp(0.8rem, 3vw, 1.5rem);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.main-heading {
    font-size: clamp(2.5rem, 2.8vw, 3.5rem);
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    line-height: 1;
}

.sub-heading {
    font-size: clamp(3.5rem, 3.5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--accent-purple);
    text-shadow: 0 0 10px rgba(108, 74, 226, 0.8);
    width: 100%;
    max-width: 800px;
    word-spacing: 0.05em;
}

.hero-text {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    width: 100%;
    max-width: 700px;
}

/* Hero Social Proof */
.hero-social-proof {
    margin: 0.5rem auto 0;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.hero-stars {
    font-size: 1.3rem;
    color: #FF9900;
    text-shadow: 0 0 10px rgba(255, 153, 0, 0.5);
    letter-spacing: 2px;
    margin-bottom: 0.1rem;
}

.hero-reviews-count {
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--neon-moon-white);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.2rem;
    background-color: rgba(255, 153, 0, 0.2);
    padding: 2px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 153, 0, 0.3);
    display: inline-block;
}

/* Product Image */
.product-image-container {
    margin: 0.8rem auto;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 300px;
}

.product-image-placeholder {
    width: 100%;
    padding-top: 110%; /* Maintain aspect ratio */
    position: relative;
    margin: 0 auto;
}

.shirt-silhouette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(108, 74, 226, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(10, 10, 26, 0.7);
    overflow: hidden;
}

.shirt-silhouette::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 70%);
}

.possum-silhouette {
    position: absolute;
    width: 16%;
    height: 25%;
    background-color: var(--possum-grey);
    border-radius: 50% 50% 0 0;
}

.possum-1 { left: 20%; top: 30%; transform: rotate(-15deg); }
.possum-2 { left: 43%; top: 25%; }
.possum-3 { left: 66%; top: 32%; transform: rotate(15deg); }

.moon-silhouette {
    position: absolute;
    width: 30%;
    height: 30%;
    background-color: var(--neon-moon-white);
    border-radius: 50%;
    top: 10%;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

/* Destiny Text Block */
.destiny-text {
    margin: 2rem auto;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    line-height: 1.5;
    padding: 1.5rem;
    background-color: rgba(10, 10, 26, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(108, 74, 226, 0.2);
    box-shadow: 0 5px 20px rgba(108, 74, 226, 0.2);
    text-align: center;
    word-spacing: 0.05em;
    word-break: normal;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 800px;
}

/* Prophecy Section */
.prophecy-section {
    background-image: url('https://pixabay.com/get/gd7cbb141ab53b68fa960a1938faffebd6bd54a5988f7733722b479dacb2d92ce807072227783079b920b3a31e09375c6690fb2e295f5d77d7f7095af3e210459_1280.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.prophecy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 26, 0.8);
}

.prophecy-text {
    text-align: center;
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Image Collage */
.image-collage {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.collage-item {
    flex: 1 1 300px;
    min-width: 250px;
    max-width: 400px;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.collage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
}

.collage-item::after {
    content: attr(data-hover-quote);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: rgba(10, 10, 26, 0.8);
    font-family: var(--quote-font);
    font-style: italic;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collage-item:hover::after {
    opacity: 1;
}

.collage-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--possum-grey);
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-text {
    color: var(--cosmic-black);
    font-weight: bold;
}

/* Reviews Section */
.reviews-section {
    position: relative;
    background-color: var(--cosmic-black);
    padding: var(--section-padding);
    overflow: visible;
}

.reviews-subtitle {
    color: #ffcc00;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 30px;
    font-style: italic;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
    text-align: center;
    width: 100%;
}

/* Reviews Carousel */
.reviews-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 3rem auto;
    width: 100%;
    max-width: var(--content-max-width);
}

.review-card {
    flex: 1 1 300px;
    min-width: 280px;
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 10;
    margin-bottom: 20px;
}

.cosmic-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 74, 226, 0.2);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(108, 74, 226, 0.1) inset;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 15px 30px rgba(74, 144, 226, 0.3),
        0 0 50px rgba(108, 74, 226, 0.2) inset;
    border-color: rgba(108, 74, 226, 0.4);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--cosmic-gradient);
}

.review-image-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--possum-grey);
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    color: var(--cosmic-black);
    border: 2px solid var(--neon-moon-white);
    overflow: hidden;
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.5);
}

.stars {
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: inline-block;
    animation: glow 2s infinite alternate;
    position: relative;
    z-index: 5;
}

@keyframes glow {
    0% { text-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
    100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

.review-text {
    font-family: var(--quote-font);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    z-index: 5;
    text-align: center;
}

.reviewer {
    font-size: 0.9rem;
    opacity: 0.9;
    position: relative;
    z-index: 5;
    text-align: center;
}

.verified-badge {
    display: inline-block;
    background: var(--cosmic-gradient);
    color: var(--neon-moon-white);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 5px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Review Navigation */
.reviews-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    gap: 20px;
    width: 100%;
    max-width: 300px;
}

.nav-btn {
    background: none;
    border: 2px solid var(--starfield-blue);
    color: var(--neon-moon-white);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-btn:hover {
    background-color: var(--starfield-blue);
    transform: scale(1.1);
}

.nav-dots {
    display: flex;
    gap: 8px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background-color: var(--starfield-blue);
    transform: scale(1.2);
}

.nav-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* See More Button */
.see-more-container {
    text-align: center;
    margin: 2rem auto;
    width: 100%;
    max-width: 300px;
}

.see-more-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    border: 1px solid var(--starfield-blue);
    color: var(--neon-moon-white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.3);
    width: 100%;
    max-width: 200px;
}

.see-more-btn:hover {
    background-color: var(--starfield-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.luck-tagline {
    font-size: 1.2rem;
    margin-top: 15px;
    font-style: italic;
    text-align: center;
    background: var(--cosmic-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    padding: 5px 10px;
    letter-spacing: 1px;
}

.price-banner {
    text-align: center;
    margin: 15px auto 5px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 153, 0, 0.3));
    border-radius: 8px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    animation: pulseBanner 2s infinite alternate;
}

.highlight-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

@keyframes pulseBanner {
    0% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.4); }
    100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.7); }
}

/* Aura CTA Section */
.aura-cta-section {
    position: relative;
    padding: 8rem 2rem;
    text-align: center;
    overflow: hidden;
    background-color: rgba(10, 10, 26, 0.95);
    border-top: 1px solid rgba(108, 74, 226, 0.3);
    border-bottom: 1px solid rgba(108, 74, 226, 0.3);
}

.moon-glow-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background-image: url('https://pixabay.com/get/ge53b6f38d86e1c8a880c45b71e241707c470c0a4d666b25b424b4a6fa0fa71379be9ac9559220758643ff78736b93a5e67869d0bd1f6cf501790d73d40e80d49_1280.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    opacity: 0.7;
    z-index: -1;
    box-shadow: 0 0 150px 80px rgba(255, 255, 255, 0.4);
    animation: pulse 6s infinite alternate;
    filter: blur(2px);
}

.cosmic-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-conic-gradient(
        from 0deg,
        transparent 0deg 5deg,
        rgba(108, 74, 226, 0.05) 5deg 10deg
    );
    opacity: 0.8;
    z-index: -1;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 100px 50px rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 0 150px 80px rgba(226, 74, 159, 0.4); }
    100% { box-shadow: 0 0 200px 100px rgba(74, 144, 226, 0.5); }
}

.aura-text {
    position: relative;
    z-index: 2;
    font-size: 1.4rem;
    margin: 0 auto 3rem;
    width: 100%;
    max-width: 700px;
    background-color: rgba(10, 10, 26, 0.7);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(108, 74, 226, 0.2);
}

.aura-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(108, 74, 226, 0.8);
    position: relative;
    width: 100%;
}

.aura-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--cosmic-gradient);
    border-radius: 3px;
}

/* CTA Container */
.cta-container {
    margin: 2rem auto;
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 400px;
}

.mega-cta {
    padding: 18px 35px;
    font-size: 1.3rem;
    letter-spacing: 2px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(108, 74, 226, 0.5);
    margin-bottom: 1rem;
    width: 100%;
    max-width: 350px;
}

.cta-subtext {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
    margin-top: 0.8rem;
    width: 100%;
}

.satisfaction-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 2rem auto 0;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    width: fit-content;
    max-width: 100%;
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

.guarantee-icon {
    font-size: 1.2rem;
    color: gold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.guarantee-text {
    font-size: 0.9rem;
    font-weight: bold;
}

/* Details Section */
.details-section {
    background-color: rgba(10, 10, 26, 0.9);
    position: relative;
    padding: var(--section-padding) var(--section-padding) 20px;
}

.details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://pixabay.com/get/gc4f3f1edf90226f690b6564c54c0a472168a8a1ee699d8d0326d8b82bb66b847bfb17928285bfb95bca5b4e7c8adeadc1136ddf226abf3ed27f4692b29109aff_1280.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}

/* Features Container */
.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    margin: 0 auto 0;
    gap: 30px;
    width: 100%;
    max-width: var(--content-max-width);
}

.features-wrapper {
    flex: 1 1 400px;
    min-width: 280px;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(74, 144, 226, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.features-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--starfield-blue);
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
    text-align: center;
}

.features-list {
    list-style-type: none;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding: 0;
    width: 100%;
}

.features-list li {
    margin-bottom: 1.2rem;
    padding-left: 25px;
    position: relative;
    text-align: left;
}

.features-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--starfield-blue);
}

.size-chart-link {
    text-align: center;
    margin-top: 1.5rem;
    width: 100%;
}

.info-link {
    color: var(--starfield-blue);
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.info-link:hover {
    color: var(--accent-purple);
    text-shadow: 0 0 8px rgba(108, 74, 226, 0.5);
}

.arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.info-link:hover .arrow {
    transform: translateX(5px);
}

/* Quote Overlays */
.quote-overlays {
    flex: 1 1 400px;
    min-width: 280px;
    max-width: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.quote-bubble {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.quote-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.3);
}

.quote-bubble:nth-child(even) {
    align-self: flex-end;
    width: 90%;
}

.quote-icon {
    font-size: 2rem;
    color: var(--starfield-blue);
    opacity: 0.5;
    position: absolute;
    top: -5px;
    left: 10px;
}

.quote-bubble p {
    font-family: var(--quote-font);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 10px;
    padding-left: 10px;
    position: relative;
    z-index: 2;
    text-align: left;
}

.quote-author {
    text-align: right;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cosmic-note {
    background-color: rgba(108, 74, 226, 0.08);
    border-radius: 15px;
    padding: 25px;
    margin: 2rem auto 0;
    text-align: center;
    border: 1px solid rgba(108, 74, 226, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
}

.cosmic-note p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--neon-moon-white);
}

.cosmic-note-highlight {
    font-weight: bold;
    color: #FF9900;
}

.magical-quote {
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.05) 0%,
        rgba(108, 74, 226, 0.08) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-color: rgba(108, 74, 226, 0.3);
    position: relative;
    overflow: hidden;
    transform: scale(1.05);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(108, 74, 226, 0.2);
}

.magical-quote p {
    font-weight: bold;
    color: var(--neon-moon-white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.magical-quote::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(108, 74, 226, 0.05) 0%,
        transparent 70%
    );
    animation: pulse-magic 3s infinite ease-in-out;
    z-index: 1;
}

.magical-burst {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(108, 74, 226, 0.5) 30%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.6;
    z-index: 1;
    animation: pulse-burst 4s infinite alternate;
}

@keyframes pulse-magic {
    0%, 100% { transform: rotate(0deg); opacity: 0.3; }
    50% { transform: rotate(180deg); opacity: 0.5; }
}

@keyframes pulse-burst {
    0% { transform: scale(0.8); opacity: 0.4; }
    100% { transform: scale(1.2); opacity: 0.7; }
}

/* Image Placeholders */
.image-placeholders {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
}

.fabric-placeholder,
.fit-placeholder,
.packaging-placeholder {
    flex: 1 1 300px;
    min-width: 250px;
    max-width: 350px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.fabric-placeholder:hover,
.fit-placeholder:hover,
.packaging-placeholder:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(74, 144, 226, 0.3);
}

/* Final Testimonial */
.final-testimonial {
    text-align: center;
    padding: var(--section-padding);
    background-image: linear-gradient(
        to bottom,
        rgba(10, 10, 26, 0.9),
        rgba(10, 10, 26, 0.7)
    ),
    url('https://pixabay.com/get/g6555b2b60b46f1fc272b10516920ceb79020d6590d8135f19d5db7fd753fe0dadf41ab5f68f7e9640964d338bdb0fb76cdb7b70367aaabc3c130aa399347b034_1280.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.cult-text-no-container {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    display: block;
    margin: 10px auto 25px;
    letter-spacing: 1.2px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    padding: 15px 15px 15px;
    max-width: 90%;
    animation: textGlow 2s infinite alternate;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
    100% { text-shadow: 0 0 25px rgba(255, 255, 255, 0.9), 0 0 35px rgba(108, 74, 226, 0.6); }
}

@keyframes glowPulse {
    0% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); box-shadow: 0 0 10px rgba(108, 74, 226, 0.3); }
    100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8); box-shadow: 0 0 25px rgba(108, 74, 226, 0.6); }
}

.cosmic-energies {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(108, 74, 226, 0.15) 0%, rgba(10, 10, 26, 0) 50%),
        radial-gradient(circle at 80% 70%, rgba(226, 74, 159, 0.15) 0%, rgba(10, 10, 26, 0) 50%);
    z-index: 1;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background-color: rgba(10, 10, 26, 0.6);
    padding: clamp(20px, 5vw, 50px);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 100px rgba(108, 74, 226, 0.2);
    border: 1px solid rgba(108, 74, 226, 0.2);
}

.mega-quote {
    margin-bottom: 3rem;
    position: relative;
    width: 100%;
}

.rizzed-quote {
    margin: 30px auto 50px;
    width: 100%;
    max-width: 600px;
    background-color: rgba(15, 15, 30, 0.9);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(96, 150, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 50px rgba(108, 74, 226, 0.2);
}

.rizzed-quote::before {
    display: none;
}

.rizzed-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.rizzed-image {
    width: 100%;
    display: block;
    filter: brightness(0.8) contrast(1.1);
}

.rizzed-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(10, 10, 25, 0.85);
    text-align: center;
}

.rizzed-overlay .testimonial-quote {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #b67aff;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(182, 122, 255, 0.6);
}

.rizzed-overlay .testimonial-author {
    color: white;
    font-size: 1rem;
    margin-bottom: 5px;
}

.rizzed-overlay .stars-row {
    color: #FFD700;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    padding-left: 0;
}

.mega-quote::before {
    content: '❝';
    font-size: 8rem;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(108, 74, 226, 0.2);
    font-family: serif;
    z-index: -1;
}

.testimonial-quote {
    font-family: var(--quote-font);
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    background: var(--cosmic-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    width: 100%;
}

/* Healing Brother Quote Styling */
.healed-quote {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 30px auto;
    background-color: white;
    border-radius: 15px;
    overflow: visible;
    border: 2px solid #FF9900;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.healed-quote-content {
    padding: 40px 25px 20px;
    text-align: left;
}

.healed-quote .testimonial-quote {
    color: black;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 900;
    background: none;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: none;
    font-style: normal;
}

.healed-quote .testimonial-author {
    color: black;
    font-size: 1.6rem;
    text-align: left;
    padding-left: 0;
    margin-bottom: 5px;
    text-shadow: none;
}

.healed-quote .stars-row {
    color: #FF9900;
    font-size: 1.3rem;
    text-align: left;
    padding-left: 0;
    margin-bottom: 10px;
    text-shadow: none;
}

.quote-mark {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 3rem;
    font-weight: bold;
    color: black;
}

.magical-effect-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #4A90E2, #6C4AE2, #E24A9F);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    transform: rotate(5deg);
    box-shadow: 0 0 15px rgba(108, 74, 226, 0.6);
    z-index: 10;
}

.sales-proof {
    margin: 0 auto 30px;
    text-align: center;
    width: 100%;
}

.sales-proof-image {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(108, 74, 226, 0.3);
}

.transformational-text {
    margin: 20px auto;
    text-align: center;
    width: 100%;
    max-width: 900px;
}

.transformational-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    max-width: 100%;
    overflow: visible;
    padding: 0 10px;
    margin: 0 auto;
    white-space: normal;
    word-wrap: break-word;
    word-break: normal;
    hyphens: none;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.legendary-text {
    color: #6C4AE2;
    text-shadow: 0 0 20px rgba(108, 74, 226, 0.7);
}

.testimonial-author {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    text-align: center;
    width: 100%;
}

.stars-row {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    animation: glow 2s infinite alternate;
    width: 100%;
}

.final-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem auto;
    width: 100%;
    max-width: 600px;
}

.divider-line {
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(to right, transparent, var(--starfield-blue), transparent);
    max-width: 150px;
}

.divider-symbol {
    margin: 0 20px;
    font-size: 1.5rem;
    color: var(--starfield-blue);
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.7);
}

.final-cta-container {
    margin: 4rem auto 2rem;
    width: 100%;
    max-width: 400px;
}

.final-cta-container .primary-cta {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(108, 74, 226, 0.5);
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 20px;
    border-radius: 50px;
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    text-align: center;
    min-width: fit-content;
    max-width: 300px;
}

.primary-cta {
    background: var(--cosmic-gradient);
    color: var(--neon-moon-white);
    animation: pulseCta 3s infinite, floatButton 6s ease-in-out infinite;
}

@keyframes pulseCta {
    0% { box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.8), 0 0 0 0 rgba(226, 74, 159, 0.8); }
    25% { box-shadow: 0 0 0 10px rgba(74, 144, 226, 0), 0 0 0 0 rgba(226, 74, 159, 0.8); }
    50% { box-shadow: 0 0 0 0 rgba(74, 144, 226, 0), 0 0 0 10px rgba(226, 74, 159, 0); }
    75% { box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.8), 0 0 0 0 rgba(226, 74, 159, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.8), 0 0 0 0 rgba(226, 74, 159, 0.8); }
}

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

.primary-cta:hover {
    background: linear-gradient(to right, var(--accent-purple), var(--accent-pink), var(--starfield-blue));
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s ease;
}

.primary-cta:hover::before {
    left: 100%;
}

.primary-cta::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10%;
    width: 80%;
    height: 10px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(5px);
    z-index: -1;
}

/* Sticky Footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(15px);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 
        0 -5px 20px rgba(0, 0, 0, 0.4),
        0 -2px 0 rgba(108, 74, 226, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: var(--content-width);
    margin: 0 auto;
}

.sticky-footer p {
    margin-bottom: 0;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
    font-weight: bold;
    font-family: var(--heading-font);
    letter-spacing: 1px;
}

.footer-cta {
    padding: 10px 20px;
    font-size: 1.1rem;
    background: var(--cosmic-gradient);
    color: var(--neon-moon-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulseFooter 3s infinite;
}

@keyframes pulseFooter {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.footer-cta:hover {
    background: linear-gradient(to right, var(--accent-pink), var(--accent-purple), var(--starfield-blue));
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(226, 74, 159, 0.5);
    transform: translateY(-3px) scale(1.05);
}

/* Stock Counter */
.stock-counter-wrapper {
    margin: 1rem auto;
    width: 100%;
    max-width: 350px;
    text-align: center;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    :root {
        --section-padding: clamp(2rem, 3vw, 4rem);
    }

    .features-container,
    .reviews-carousel {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --section-padding: 2rem 1rem;
    }

    .main-heading {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .sub-heading {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    .section-heading {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }

    .hero-content {
        padding: 1.5rem;
    }

    .features-container {
        flex-direction: column;
    }

    .features-wrapper,
    .quote-overlays {
        max-width: 100%;
    }

    .quote-bubble:nth-child(even) {
        align-self: flex-start;
        width: 100%;
    }

    .testimonial-quote {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
    }

    .sticky-footer-content {
        flex-direction: column;
        gap: 10px;
    }

    .sticky-footer p {
        margin-bottom: 10px;
    }

    .footer-cta {
        width: 100%;
        max-width: 300px;
    }

    .product-image-container {
        max-width: 280px;
    }

    .collage-item {
        height: 200px;
    }

    .mega-cta {
        font-size: 1.1rem;
        padding: 15px 25px;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --section-padding: 1.5rem 1rem;
    }
    
    /* Extra space for mobile scrolling */
    .mobile-scroll-space {
        height: 180px;
        display: block;
        width: 100%;
        clear: both;
    }

    .hero-section {
        padding-top: 1rem;
        padding-bottom: 3rem;
    }
    
    /* More compact checkout for mobile */
    .stock-counter-wrapper {
        margin-bottom: 2px;
    }
    
    .stock-progress-container {
        gap: 4px;
    }
    
    .stock-counter-spacer {
        height: 3px;
    }
    
    .limited-availability {
        padding: 4px;
        margin-top: 4px;
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .amazon-footer {
        padding: 10px 0;
    }

    .hero-text {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 1rem;
        max-width: 250px;
    }

    .product-image-container {
        max-width: 220px;
    }

    .review-card {
        padding: 15px;
    }

    .aura-text {
        padding: 20px;
        font-size: 1.2rem;
    }

    .testimonial-content {
        padding: 20px;
    }

    .magical-effect-tag {
        top: -10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 4px 10px;
    }

    .collage-item {
        height: 180px;
        min-width: 100%;
    }

    /* Stack feature items on mobile */
    .fabric-placeholder,
    .fit-placeholder,
    .packaging-placeholder {
        min-width: 100%;
    }
}

/* Print styles for better paper output */
@media print {
    .stars-container,
    .cosmic-rays,
    .moon-glow-background,
    .sticky-footer {
        display: none !important;
    }

    body {
        background-color: white;
        color: black;
    }

    .hero-content,
    .aura-text,
    .testimonial-content,
    .review-card,
    .features-wrapper,
    .quote-bubble,
    .cosmic-note {
        background-color: white !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }

    .section-heading,
    h1, h2, h3, h4, h5, h6,
    p {
        color: black !important;
        text-shadow: none !important;
    }

    .highlight,
    .testimonial-quote {
        background: none !important;
        color: #6C4AE2 !important;
    }
}

/* Limited Availability Section */
.limited-availability {
    color: #ff3300;
    font-weight: bold;
    text-align: center;
    margin-top: 2px;
    padding: 5px 5px;
    border: 1px dashed #ff3300;
    border-radius: 4px;
    background-color: rgba(255, 51, 0, 0.05);
    width: 95%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    animation: urgent-blink 1.5s infinite alternate;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.limit-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    width: 100%;
    text-align: center;
}

.limit-line:nth-child(1) {
    font-size: 0.65rem;
}

.limit-line:nth-child(2) {
    font-size: 0.65rem;
}

.limit-line:nth-child(3) {
    font-size: 0.65rem;
}

.limited-availability #buyers-today {
    font-size: 0.65rem; /* Match the size of surrounding text */
    font-weight: bold;
}

.availability-counter {
    display: inline-block;
    padding: 0 2px;
    margin: 0 2px;
    color: #ff3300;
    font-weight: bold;
}

.main-qty-section {
    margin-bottom: 15px;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-qty-section .quantity-label {
    font-weight: bold;
    color: #333;
}

.main-qty-section .quantity-control {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}

.qty-input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.main-qty-section .quantity-btn {
    width: 36px;
    height: 36px;
    background-color: #f5f5f5;
    border: none;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s;
}

.main-qty-section .quantity-btn:hover {
    background-color: #e0e0e0;
}

@keyframes urgent-blink {
    from { background-color: rgba(255, 51, 0, 0.05); }
    to { background-color: rgba(255, 51, 0, 0.2); }
}

.power-btn {
    background-color: #0074D9 !important;
    color: white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 8px 15px !important;
    font-size: 1rem !important;
    border-radius: 4px !important;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.2s ease;
    transform: translateY(0);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.power-btn:before {
    content: "";
    margin-right: 0;
    font-size: 0.9em;
}

.power-btn:hover {
    background-color: #0063b1 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.power-btn:active {
    transform: translateY(0px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    background-color: #005998 !important;
}
/* ============ Footer socials ============ */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 18px;
    align-items: center;
}
.footer-social a {
    color: rgba(255, 255, 255, 0.48);
    line-height: 0;
    transition: color 180ms ease, transform 180ms ease;
}
.footer-social a:hover {
    color: #E9C46A;
    transform: translateY(-1px);
}
.footer-social svg {
    display: block;
}

/* ============ JS-hydrated mail link (defeats naive crawler scrapes) ============ */
.mm-mail { font-family: inherit; }
.mm-mail:not([href]) { cursor: default; }


/* ============ Judge.me footer widget (dark footer override) ============ */
/* The jdgm-all-reviews-text widget defaults to #108474 teal. Tweak so it
   reads cleanly against the cosmic-black footer without losing the
   "verified" teal accent which is recognizable. */
.footer-bottom .jdgm-all-reviews-text {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.78rem;
}
.footer-bottom .jdgm-all-reviews-text a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.72);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    transition: color 180ms ease;
}
.footer-bottom .jdgm-all-reviews-text:hover a {
    color: #f4eedc;
}
@media (max-width: 600px) {
    .footer-bottom .jdgm-all-reviews-text { font-size: 0.7rem; }
}

/* ============ Bundle context banner (sticky on product pages) ============ */
#mm-bundle-bar {
    position: sticky;
    top: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px clamp(1rem, 4vw, 2rem);
    background: linear-gradient(180deg, rgba(233, 196, 106, 0.14), rgba(233, 196, 106, 0.06));
    border-bottom: 1px solid rgba(233, 196, 106, 0.3);
    color: #f4eedc;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.85rem;
}
.mm-bundle-bar-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #E9C46A;
    color: #1a1208;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    flex: 0 0 auto;
    transition: transform 160ms ease;
}
.mm-bundle-bar-back:hover { transform: translateY(-1px); }
.mm-bundle-bar-hint {
    flex: 1;
    color: rgba(244, 238, 220, 0.72);
    font-size: 0.8rem;
}
.mm-bundle-bar-close {
    background: transparent;
    border: none;
    color: rgba(244, 238, 220, 0.5);
    font-size: 1.4rem;
    line-height: 1;
    padding: 0 4px;
    cursor: pointer;
    transition: color 160ms ease;
    flex: 0 0 auto;
}
.mm-bundle-bar-close:hover { color: #f4eedc; }
@media (max-width: 600px) {
    #mm-bundle-bar {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 1rem;
        font-size: 0.78rem;
    }
    .mm-bundle-bar-hint { flex-basis: 100%; order: 3; font-size: 0.72rem; }
    .mm-bundle-bar-close { order: 2; }
}
