/* =====================================================
   SERENE GARDEN - Premium Landing Page
   Anti-stress Coloring Book for Busy Women
   Enhanced Mobile-First Design
   ===================================================== */

:root {
    /* Primary Palette - Soft & Premium */
    --bg-cream: #FFFBF7;
    --bg-warm: #FFF8F2;
    --bg-lavender: #F6F2FB;
    --bg-blush: #FDF2F5;

    /* Purple Range */
    --purple-50: #FAF5FF;
    --purple-100: #F3E8FF;
    --purple-200: #E9D5FF;
    --purple-300: #D8B4FE;
    --purple-400: #C084FC;
    --purple-500: #A855F7;
    --purple-600: #9333EA;
    --purple-700: #7E22CE;
    --purple-800: #6B21A8;
    --purple-deep: #9B7EBD;

    /* Rose/Pink Range */
    --rose-100: #FFE4E6;
    --rose-200: #FECDD3;
    --rose-300: #FDA4AF;
    --rose-400: #FB7185;
    --rose-500: #F43F5E;
    --rose-accent: #D4638C;

    /* Sage/Green Accents */
    --sage-100: #F0FDF4;
    --sage-200: #DCFCE7;
    --sage-300: #BBF7D0;
    --sage-400: #86EFAC;

    /* Neutrals */
    --text-dark: #2D2A33;
    --text-body: #4A4553;
    --text-muted: #6B6477;
    --text-light: #9A94A5;

    /* Functional */
    --white: #FFFFFF;
    --border-light: rgba(155, 126, 189, 0.12);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px rgba(155, 126, 189, 0.15);
    --shadow-xl: 0 20px 50px rgba(155, 126, 189, 0.2);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 40px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
}

/* =====================================================
   RESET & BASE
   ===================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-body);
    background: var(--bg-cream);
    overflow-x: hidden;
    min-height: 100vh;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

p { margin-bottom: var(--space-4); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--text-dark); }
small { font-size: 0.85em; opacity: 0.8; }

/* =====================================================
   LAYOUT
   ===================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-5);
}

@media (min-width: 768px) {
    .container { padding: 0 var(--space-8); }
}

/* Section Labels */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--purple-deep);
    background: var(--purple-100);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-3);
}

.section-heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-6);
}

/* =====================================================
   AMBIENT BACKGROUND
   ===================================================== */

.ambient-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: orb-drift 25s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--purple-200), var(--rose-200));
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--sage-200), var(--purple-100));
    bottom: 20%;
    left: -250px;
    animation-delay: -8s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--rose-200), var(--purple-200));
    bottom: -100px;
    right: 10%;
    animation-delay: -16s;
}

@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.05); }
    66% { transform: translate(-30px, 20px) scale(0.95); }
}

/* =====================================================
   MOBILE CTA BAR (Mobile Only)
   ===================================================== */

.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-3) var(--space-4);
    padding-bottom: calc(var(--space-3) + env(safe-area-inset-bottom));
    background: linear-gradient(to top, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-light);
    display: block;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    width: 100%;
    padding: var(--space-4) var(--space-6);
    background: linear-gradient(135deg, var(--purple-500), var(--purple-deep));
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: transform var(--duration-normal) var(--ease-spring);
    min-height: 56px;
}

.mobile-cta-btn:active {
    transform: scale(0.98);
}

.mobile-cta-price {
    background: rgba(255,255,255,0.2);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .mobile-cta-bar { display: none; }
}

/* =====================================================
   DESKTOP FLOATING NAV
   ===================================================== */

.floating-nav {
    display: none;
    position: fixed;
    top: var(--space-5);
    right: var(--space-5);
    z-index: 1000;
    animation: nav-appear 0.6s var(--ease-out) 0.3s both;
}

@media (min-width: 768px) {
    .floating-nav { display: block; }
}

@keyframes nav-appear {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-5);
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-light);
    transition: all var(--duration-normal) var(--ease-out);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 0 1px var(--purple-200);
}

.nav-cta-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.nav-cta-price {
    padding: var(--space-1) var(--space-3);
    background: var(--purple-100);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--purple-deep);
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
    position: relative;
    padding: var(--space-16) 0 var(--space-20);
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-lavender) 100%);
    overflow: hidden;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-5);
}

@media (min-width: 900px) {
    .hero { padding: var(--space-20) 0 var(--space-24); }
    .hero-inner {
        flex-direction: row;
        align-items: center;
        gap: var(--space-12);
        padding: 0 var(--space-8);
    }
}

/* Hero Content */
.hero-content {
    flex: 1;
    text-align: center;
    animation: content-up 0.8s var(--ease-out) 0.1s both;
}

@media (min-width: 900px) {
    .hero-content { text-align: left; }
}

@keyframes content-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-5);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--purple-400);
    border-radius: 50%;
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--purple-deep);
}

.hero-title {
    margin-bottom: var(--space-4);
}

.title-small {
    display: block;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 500;
    color: var(--purple-deep);
    margin-bottom: var(--space-1);
}

.title-large {
    display: block;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.05;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: var(--space-6);
}

.hero-value-prop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-8);
}

@media (min-width: 900px) {
    .hero-value-prop { justify-content: flex-start; }
}

.value-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-text {
    font-size: 1rem;
    color: var(--text-body);
    margin: 0;
}

.value-text strong {
    color: var(--purple-deep);
}

/* Hero Button */
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-5) var(--space-8);
    background: linear-gradient(135deg, var(--purple-500), var(--purple-deep));
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.35);
    transition: all var(--duration-normal) var(--ease-out);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.45);
}

.btn-hero .btn-arrow {
    width: 22px;
    height: 22px;
    transition: transform var(--duration-normal) var(--ease-spring);
}

.btn-hero:hover .btn-arrow {
    transform: translateX(4px);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: visual-up 0.8s var(--ease-out) 0.3s both;
}

@keyframes visual-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.book-container {
    position: relative;
    max-width: 320px;
}

@media (min-width: 900px) {
    .book-container { max-width: 400px; }
}

.book-backdrop {
    position: absolute;
    inset: -15%;
    background: radial-gradient(circle, var(--purple-200) 0%, transparent 70%);
    opacity: 0.6;
    animation: backdrop-pulse 4s ease-in-out infinite;
}

@keyframes backdrop-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.book-cover {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: transform var(--duration-slow) var(--ease-out);
}

.book-container:hover .book-cover {
    transform: translateY(-10px) rotate(-2deg);
}

.book-reflection {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.12) 0%, transparent 70%);
    filter: blur(8px);
}

/* Hero Decorations */
.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.deco {
    position: absolute;
    font-size: 2rem;
    animation: deco-float 5s ease-in-out infinite;
}

.deco-1 { top: 5%; left: 5%; animation-delay: 0s; }
.deco-2 { top: 15%; right: 10%; animation-delay: -1.5s; }
.deco-3 { bottom: 20%; left: 10%; animation-delay: -3s; }

@keyframes deco-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    color: var(--bg-cream);
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

@media (min-width: 768px) {
    .hero-wave svg { height: 100px; }
}

/* =====================================================
   BENEFITS SECTION
   ===================================================== */

.benefits {
    padding: var(--space-16) 0;
    background: var(--bg-cream);
}

.benefits-header {
    text-align: center;
    margin-bottom: var(--space-10);
}

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

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-8);
    }
}

.benefit-card {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all var(--duration-normal) var(--ease-out);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-100);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-5);
    transition: all var(--duration-normal) var(--ease-out);
}

.benefit-card:hover .benefit-icon-wrap {
    background: var(--purple-200);
    transform: scale(1.05);
}

.benefit-emoji {
    font-size: 2rem;
}

.benefit-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-1);
}

.benefit-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    font-style: italic;
    color: var(--purple-deep);
    margin-bottom: var(--space-4);
}

.benefit-content p:last-child {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =====================================================
   QUOTE BANNER
   ===================================================== */

.quote-banner {
    padding: var(--space-12) 0;
    background: linear-gradient(135deg, var(--purple-200) 0%, var(--rose-200) 100%);
    text-align: center;
}

.main-quote {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.main-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3.5vw, 2rem);
    font-weight: 500;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

.quote-open, .quote-close {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--purple-deep);
    opacity: 0.4;
    line-height: 0;
    vertical-align: middle;
}

/* =====================================================
   PRODUCT DETAILS SECTION
   ===================================================== */

.product-details {
    padding: var(--space-16) 0;
    background: var(--white);
}

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

@media (min-width: 900px) {
    .details-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-12);
        align-items: start;
    }
}

/* Details Images */
.details-images {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.main-image-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.details-main-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.thumbnail-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.thumb {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
}

.thumb:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* Details Content */
.details-content {
    padding-top: var(--space-4);
}

@media (min-width: 900px) {
    .details-content { position: sticky; top: var(--space-8); }
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--bg-lavender);
    border-radius: var(--radius-lg);
}

.spec-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.spec-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.spec-text small {
    font-weight: 400;
    color: var(--text-muted);
}

.subsection-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-5);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.category-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out);
}

.category-item:hover {
    background: var(--purple-50);
    transform: translateX(6px);
}

.cat-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.cat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cat-text strong {
    font-size: 0.95rem;
}

.cat-text span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* =====================================================
   PREVIEW SECTION
   ===================================================== */

.preview-section {
    padding: var(--space-12) 0;
    background: var(--bg-cream);
}

.preview-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-8);
    background: linear-gradient(135deg, var(--purple-100), var(--rose-100));
    border-radius: var(--radius-2xl);
}

.preview-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--space-6);
}

.preview-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.preview-gif {
    width: 100%;
    display: block;
}

/* =====================================================
   BONUS SECTION
   ===================================================== */

.bonus-section {
    padding: var(--space-16) 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-lavender) 100%);
}

.bonus-badge-wrap {
    text-align: center;
    margin-bottom: var(--space-6);
}

.bonus-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-5) var(--space-8);
    background: linear-gradient(135deg, var(--rose-accent), var(--purple-deep));
    color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 30px rgba(212, 99, 140, 0.3);
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.badge-percent {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.bonus-heading {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-10);
}

.bonus-heading .highlight {
    color: var(--purple-deep);
}

.bonus-layout {
    display: grid;
    gap: var(--space-8);
}

@media (min-width: 900px) {
    .bonus-layout {
        grid-template-columns: 1fr 1.3fr;
        gap: var(--space-10);
        align-items: start;
    }
}

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

.bundle-img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    margin: 0 auto;
}

.bonus-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.gift-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--purple-deep);
}

.gift-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-deep);
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.gift-content h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-1);
}

.gift-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.bonus-checklist {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--sage-100);
    border-radius: var(--radius-lg);
}

.check-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-300);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.check-item p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.5;
}

/* =====================================================
   PRICING SECTION
   ===================================================== */

.pricing-section {
    padding: var(--space-16) 0 var(--space-20);
    background: radial-gradient(ellipse at center, var(--purple-100) 0%, var(--bg-cream) 70%);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    padding: var(--space-10) var(--space-8);
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.pricing-header {
    margin-bottom: var(--space-6);
}

.price-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

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

.current-price {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--rose-accent);
    line-height: 1;
}

.price-cents {
    font-size: 0.5em;
    vertical-align: super;
}

.price-currency {
    font-size: 0.4em;
    font-weight: 500;
}

.savings-badge {
    display: inline-block;
    margin-top: var(--space-3);
    padding: var(--space-2) var(--space-4);
    background: var(--sage-200);
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.pricing-includes {
    padding: var(--space-5);
    background: var(--purple-50);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-8);
}

.includes-label {
    font-weight: 700;
    color: var(--purple-deep);
    margin-bottom: var(--space-1);
}

.includes-items {
    font-size: 0.95rem;
    color: var(--text-body);
    margin: 0;
}

/* Order Button */
.btn-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    width: 100%;
    padding: var(--space-5) var(--space-8);
    background: linear-gradient(135deg, var(--purple-500), var(--purple-deep));
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
    transition: all var(--duration-normal) var(--ease-out);
    min-height: 64px;
}

.btn-order:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.5);
}

.btn-order-arrow {
    width: 24px;
    height: 24px;
    transition: transform var(--duration-normal) var(--ease-spring);
}

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

.shipping-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-5);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =====================================================
   GUARANTEE SECTION
   ===================================================== */

.guarantee-section {
    padding: var(--space-12) 0;
    background: var(--white);
}

.guarantee-card {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-8);
    background: var(--bg-cream);
    border-radius: var(--radius-xl);
    border: 2px solid var(--purple-100);
    text-align: center;
}

@media (min-width: 768px) {
    .guarantee-card {
        flex-direction: row;
        text-align: left;
        gap: var(--space-8);
    }
}

.guarantee-visual {
    flex-shrink: 0;
}

.guarantee-badge-img {
    width: 100px;
    height: auto;
}

@media (min-width: 768px) {
    .guarantee-badge-img { width: 120px; }
}

.guarantee-content h2 {
    font-size: 1.35rem;
    margin-bottom: var(--space-3);
}

.guarantee-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    padding: var(--space-8) 0;
    padding-bottom: calc(var(--space-8) + 80px); /* Space for mobile CTA */
    background: var(--purple-100);
}

@media (min-width: 768px) {
    .footer { padding-bottom: var(--space-8); }
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(73, 65, 109, 0.15);
    margin-bottom: var(--space-4);
}

@media (min-width: 640px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.footer-brand-section {
    text-align: center;
}

@media (min-width: 640px) {
    .footer-brand-section { text-align: left; }
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--purple-deep);
    margin-bottom: var(--space-1);
}

.footer-tagline {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-muted);
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2) var(--space-4);
}

@media (min-width: 640px) {
    .footer-nav { justify-content: flex-end; }
}

.footer-nav a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--purple-deep);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-contact {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

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

.footer-contact a:hover {
    color: var(--purple-deep);
}

/* =====================================================
   ACCESSIBILITY & REDUCED MOTION
   ===================================================== */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* Focus Styles */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--purple-400);
    outline-offset: 3px;
}

/* =====================================================
   PRINT STYLES
   ===================================================== */

@media print {
    .ambient-bg,
    .mobile-cta-bar,
    .floating-nav,
    .hero-decorations,
    .hero-wave {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero,
    .benefits,
    .quote-banner,
    .product-details,
    .preview-section,
    .bonus-section,
    .order-form-section,
    .guarantee-section {
        background: white !important;
        padding: 2rem 0;
    }
}

/* =====================================================
   ORDER FORM SECTION - Serene Garden Theme Overrides
   ===================================================== */

.order-form-section {
    background: linear-gradient(180deg, var(--bg-lavender) 0%, var(--bg-cream) 100%);
    padding: var(--space-16) 0;
    padding-bottom: calc(var(--space-16) + 80px);
}

@media (min-width: 768px) {
    .order-form-section {
        padding-bottom: var(--space-16);
    }
}

.order-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

@media (min-width: 768px) {
    .order-form-wrapper {
        padding: var(--space-12);
    }
}

.order-form-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.order-form-header .section-label {
    background: var(--purple-100);
    color: var(--purple-deep);
}

.order-form-header .section-heading {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: var(--space-4);
}

.pricing-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
    margin-bottom: var(--space-3);
}

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

.pricing-info .current-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--purple-deep);
    font-family: var(--font-display);
}

.pricing-info .savings-badge {
    background: linear-gradient(135deg, var(--sage-200), var(--sage-300));
    color: #166534;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.includes-note {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 0;
}

/* Form Styling Overrides */
.order-form-section .order-form {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.order-form-section .form-group {
    margin-bottom: var(--space-5);
}

.order-form-section .form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
    font-size: 0.95rem;
}

.order-form-section .form-input {
    width: 100%;
    padding: var(--space-4);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--bg-cream);
    color: var(--text-dark);
    transition: all var(--duration-fast) ease;
}

.order-form-section .form-input:focus {
    outline: none;
    border-color: var(--purple-deep);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(155, 126, 189, 0.15);
}

.order-form-section .form-input::placeholder {
    color: var(--text-light);
}

.order-form-section .form-input.error {
    border-color: #dc2626;
    background: #fef2f2;
}

.order-form-section .error-message {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: var(--space-2);
}

/* Checkbox Group */
.order-form-section .checkbox-group {
    background: linear-gradient(135deg, var(--purple-50), var(--purple-100));
    border: 2px solid var(--purple-200);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    margin: var(--space-6) 0;
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    cursor: pointer;
    transition: all var(--duration-fast) ease;
}

.order-form-section .checkbox-group:hover {
    border-color: var(--purple-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.order-form-section .checkbox-group input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin-top: 2px;
    accent-color: var(--purple-deep);
    cursor: pointer;
    flex-shrink: 0;
}

.order-form-section .checkbox-group label {
    cursor: pointer;
    margin: 0;
    line-height: 1.4;
}

.order-form-section .checkbox-group label strong {
    color: var(--text-dark);
    font-size: 1.05rem;
}

.order-form-section .checkbox-group label small {
    color: var(--purple-deep);
    font-weight: 600;
}

/* Price Display */
.order-form-section .price-display {
    background: linear-gradient(135deg, var(--purple-100), var(--purple-50));
    border: 2px solid var(--purple-200);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    text-align: center;
    margin-bottom: var(--space-6);
}

.order-form-section .price-label {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: var(--space-2);
}

.order-form-section .price-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--purple-deep);
}

.order-form-section .price-amount .original-price {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 400;
    margin-bottom: var(--space-1);
}

.order-form-section .price-amount .discounted-price {
    display: block;
}

/* Submit Button */
.order-form-section .submit-button {
    width: 100%;
    padding: var(--space-5) var(--space-8);
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--rose-accent) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.15rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.order-form-section .submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(155, 126, 189, 0.4);
}

.order-form-section .submit-button:active {
    transform: translateY(-1px);
}

.order-form-section .submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Shipping Note */
.order-form-section .shipping-note {
    text-align: center;
    margin-top: var(--space-4);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.order-form-section .shipping-icon {
    margin-right: var(--space-2);
}

/* Thank You Section */
.order-form-section #thank-you-container {
    text-align: center;
}

.order-form-section .thank-you-icon {
    font-size: 4rem;
    margin-bottom: var(--space-4);
    animation: bounceIn 0.8s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.order-form-section .thank-you-title {
    font-size: 1.75rem;
    color: var(--purple-deep);
    margin-bottom: var(--space-6);
}

.order-form-section .order-summary {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: left;
    margin-bottom: var(--space-6);
}

.order-form-section .order-summary h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-4);
    color: var(--text-dark);
}

.order-form-section .order-detail {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-light);
}

.order-form-section .order-detail:last-child {
    border-bottom: none;
}

.order-form-section .order-products-list {
    margin: var(--space-2) 0;
    padding-left: var(--space-4);
}

.order-form-section .order-products-list li {
    list-style: disc;
    margin: var(--space-2) 0;
    color: var(--text-body);
}

.order-form-section .thank-you-message {
    color: var(--text-body);
    margin-bottom: var(--space-4);
}

.order-form-section .instagram-link {
    display: inline-block;
    color: var(--purple-deep);
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: var(--space-6);
}

.order-form-section .instagram-link:hover {
    color: var(--rose-accent);
}

.order-form-section .new-order-btn {
    background: transparent;
    border: 2px solid var(--purple-deep);
    color: var(--purple-deep);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--duration-fast) ease;
}

.order-form-section .new-order-btn:hover {
    background: var(--purple-deep);
    color: var(--white);
}
