@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    /* Color Palette - Wellness Sage & Cream */
    --primary: #1E3A34;
    --primary-light: #2D5A50;
    --accent: #84A98C;
    --accent-light: #CAD2C5;
    --bg-cream: #FAF9F6;
    --bg-sage-pale: #F1F4F1;
    --text-main: #2F3E46;
    --text-muted: #526760;
    --white: #FFFFFF;
    
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(30, 58, 52, 0.1);
    
    --cta-gradient: linear-gradient(135deg, #1E3A34 0%, #354F52 100%);
    
    /* Layout */
    --container-max: 1100px;
    --header-height: 90px;
    
    /* Transitions & Shadows */
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 40px rgba(30, 58, 52, 0.05);
    --shadow-premium: 0 20px 60px rgba(30, 58, 52, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    border-radius: 0.5rem; /* More elegant squared-rounded corners */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(30, 58, 52, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(30, 58, 52, 0.3);
}

.section-padding {
    padding: 140px 0;
}

/* Specific Design Elements */
.promo-bar {
    background-color: var(--primary);
    color: var(--bg-cream);
    text-align: center;
    padding: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

header {
    height: var(--header-height);
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

header.scrolled {
    top: 0;
    background: var(--bg-cream);
    height: 80px;
    box-shadow: var(--shadow-soft);
}

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

.nav-links a {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--primary);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 40px);
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #F1F4F1 0%, #FAF9F6 100%);
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 550px;
}

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

.feature-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 1rem;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(132, 169, 140, 0.1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-premium);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

/* Checkout Form */
.checkout-container {
    background: var(--white);
    border-radius: 2rem;
    padding: 5rem;
    box-shadow: var(--shadow-premium);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid #E2E8F0;
    border-radius: 0.5rem;
    background-color: #F8FAFC;
    font-family: inherit;
    transition: var(--transition-smooth);
}

.form-group input:focus {
    border-color: var(--accent);
    outline: none;
    background-color: var(--white);
}

/* Purchase Badge */
.badge-save {
    background: #E8F3ED;
    color: #1E3A34;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .checkout-container { grid-template-columns: 1fr; gap: 4rem; padding: 3rem; }
    .hero-content h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hero { text-align: center; }
    .hero-content p { margin-left: auto; margin-right: auto; }
}
