:root {
    --bg-color: #FAF5F0; /* Soft warm cream */
    --surface-color: #FFFFFF;
    --primary-color: #EEDDCD; /* Soft sand */
    --primary-dark: #D4BCA6; /* Tan/sand accents */
    --accent-color: #F2E3DB; /* Soft blush */
    --text-main: #5C4F4A; /* Warm dark brown */
    --text-light: #8A7A71;
    --border-color: #E8D8CD;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-accent: 'Playfair Display', serif;
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.03);
    --shadow-md: 0 10px 40px rgba(0,0,0,0.06);
}

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

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

.bg-decoration {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
    mix-blend-mode: multiply;
}

.flower-1 {
    top: -50px;
    left: -100px;
    width: 500px;
    transform: rotate(25deg);
}

.flower-2 {
    top: 60%;
    right: -150px;
    width: 600px;
    transform: rotate(-35deg);
}

.flower-3 {
    top: 25%;
    right: -100px;
    width: 450px;
    transform: rotate(115deg);
}

.flower-4 {
    top: 45%;
    left: -150px;
    width: 550px;
    transform: rotate(65deg) scaleX(-1);
}

.flower-5 {
    top: 85%;
    left: -80px;
    width: 400px;
    transform: rotate(-15deg);
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #333;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title-container {
    position: relative;
    margin-bottom: 2.5rem;
}

.hero-title-container h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.cursive-overlap {
    font-family: var(--font-accent);
    font-size: 4.5rem;
    color: var(--primary-dark);
    position: absolute;
    bottom: -2.5rem;
    right: 5%;
    transform: rotate(-5deg);
    z-index: 10;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-dark);
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--primary-dark);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-banner {
    text-align: center;
    position: relative;
    z-index: 10;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    border-radius: 2px;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-dark);
}

.btn-outline:hover {
    background-color: var(--primary-dark);
    color: #FFFFFF;
}

.btn-nav {
    display: inline-block;
    background-color: var(--primary-dark);
    color: #FFFFFF;
    padding: 0.6rem 1.5rem;
    border-radius: 2px;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: sticky;
    top: 0;
    background-color: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
}

.nav-links a:hover {
    color: #000;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 85vh;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mockup-container {
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.mockup-screen {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    width: 100%;
    border: 4px solid var(--primary-dark);
}

.interactive-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.interactive-slideshow img:nth-child(1) { 
    position: relative;
}

.interactive-slideshow img.active {
    opacity: 1;
}

/* Swatches */
.swatches-container {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2rem;
}

.swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 0;
}

.swatch:hover {
    transform: scale(1.1);
}

.swatch.active {
    transform: scale(1.2);
    box-shadow: 0 0 0 2px var(--primary-dark);
}

/* Sections Common */
section {
    padding: 8rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-card {
    background-color: var(--surface-color);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background-color: var(--bg-color);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* How It Works */
.how-it-works {
    background-color: #fff;
    border-radius: 40px;
    margin: 4rem auto;
    box-shadow: var(--shadow-sm);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

/* Reviews */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background-color: var(--primary-color);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
}

.review-card .stars {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-card p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-card .author {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Checkout Section */
.pricing-subtitle {
    text-align: center;
    margin-top: -2.5rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.checkout-container {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.checkout-card {
    width: 100%;
    background-color: var(--surface-color);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.product-info h3 {
    font-size: 1.3rem;
    margin: 0;
}

.product-info .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    margin-bottom: 0.8rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
}

.upsell-box {
    background-color: var(--bg-color);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: border-color 0.3s;
}

.upsell-box:hover {
    border-color: var(--primary-dark);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    gap: 1rem;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    min-width: 24px;
    height: 24px;
    background-color: #fff;
    border: 2px solid var(--primary-dark);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2px;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-dark);
}

.checkmark:after {
    content: "";
    display: none;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.upsell-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.upsell-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.3rem;
}

.upsell-desc {
    font-size: 0.85rem;
    color: var(--text-light);
}

.upsell-price {
    font-weight: 600;
    color: var(--primary-dark);
    white-space: nowrap;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.pay-btn {
    text-align: center;
    font-size: 1.2rem;
    padding: 1.2rem;
    width: 100%;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--surface-color);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--surface-color);
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.copyright {
    color: #A0A0A0;
    font-size: 0.85rem;
}

/* Legal Pages */
.legal-container {
    max-width: 800px;
    margin: 4rem auto 8rem;
    padding: 0 5%;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.legal-header p {
    color: var(--text-light);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-main);
}

.legal-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: var(--text-light);
}

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

.legal-content a {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Action Section */
.action-section {
    text-align: center;
}

.gif-container {
    max-width: 800px;
    margin: 3rem auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 8px solid #FFFFFF;
}

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

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
        gap: 2rem;
    }
    
    .hero-content p {
        margin: 0 auto 2.5rem;
    }
    
    .navbar {
        padding: 1rem 5%;
        gap: 1rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .btn-nav {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
        text-align: center;
    }

    .hero-title-container {
        margin-bottom: 4rem;
    }

    .hero-title-container h1 {
        font-size: 2.2rem;
    }

    .cursive-overlap {
        font-size: 3.2rem;
        bottom: -2.5rem;
        right: 0;
        left: 0;
        text-align: center;
    }
    
    .feature-grid, .steps-container, .review-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .nav-links {
        display: none;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flower-1, .flower-2 {
        display: none !important;
    }
    
    .checkout-container {
        padding: 0 1rem;
    }
    
    .checkout-card {
        padding: 1.5rem;
    }

    .product-info {
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }

    .product-info h3 {
        font-size: 1.1rem;
    }

    .product-info .price {
        font-size: 1.4rem;
    }

    .features-list {
        margin-bottom: 1.5rem;
    }

    .features-list li {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    
    .upsell-box {
        padding: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .checkbox-container {
        gap: 0.5rem;
        align-items: center;
    }

    .checkmark {
        min-width: 20px;
        height: 20px;
        margin-top: 0;
    }

    .checkmark:after {
        width: 4px;
        height: 8px;
    }

    .upsell-title {
        font-size: 0.85rem;
        margin-bottom: 0;
        line-height: 1.2;
    }

    .upsell-price {
        font-size: 0.85rem;
    }

    .upsell-desc {
        display: none;
    }

    .total-row {
        margin-bottom: 1.5rem;
        padding-top: 0.5rem;
        font-size: 1.2rem;
    }

    .pay-btn {
        padding: 1rem;
        font-size: 1rem;
    }
}
