/* --- CSS Variables & Theming --- */
:root {
    /* Color Palette - European Premium Feel */
    --color-bg: #FDFBF7; /* Very soft warm white */
    --color-bg-light: #F4F1EA; /* Slightly darker warm gray/beige for sections */
    --color-text: #2C352D; /* Very dark green/grey for text */
    --color-text-light: #5A635B;
    --color-primary: #4A5D23; /* Dark olive green */
    --color-primary-hover: #3A4A1C;
    --color-accent: #D4AF37; /* Muted Gold */
    --color-accent-hover: #B8962B;
    --color-white: #FFFFFF;
    --color-border: #E5E0D8;

    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Transitions & Shadows */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 12px rgba(44, 53, 45, 0.05);
    --shadow-md: 0 10px 30px rgba(44, 53, 45, 0.08);
    --shadow-hover: 0 15px 40px rgba(44, 53, 45, 0.12);
    --radius: 8px;
}

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: var(--space-sm);
    color: var(--color-text-light);
}

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

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

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

.bg-light {
    background-color: var(--color-bg-light);
}

.center {
    text-align: center;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* --- Header / Nav --- */
.navbar {
    padding: var(--space-sm) 0;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo span {
    font-style: italic;
    font-weight: 400;
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    gap: var(--space-md);
}

.nav-links a {
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
}

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

/* --- Hero Section --- */
.hero {
    padding: calc(100px + var(--space-xl)) 0 var(--space-xl);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(74, 93, 35, 0.1);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text p {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: flex-start;
}

.guarantee {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--color-text-light);
    margin: 0;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 80%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.floating-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--color-white);
    padding: 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: float 6s ease-in-out infinite;
}

.stars {
    color: var(--color-accent);
    display: flex;
    gap: 2px;
}

.floating-card p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-text);
}

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

/* --- Social Proof --- */
.social-proof {
    padding: var(--space-md) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
    background-color: var(--color-white);
}

.social-proof p {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.logos {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    align-items: center;
    opacity: 0.6;
}

.logos span {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* --- About Grid --- */
.about-section {
    padding: var(--space-xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    aspect-ratio: 4/5;
}

.feature-list {
    list-style: none;
    margin-top: var(--space-md);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.feature-list i {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-top: 2px;
}

/* --- What's Inside --- */
.whats-inside {
    padding: var(--space-xl) 0;
}

.section-header {
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.feature-card {
    background: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-border);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

/* --- Lifestyle Section --- */
.lifestyle-section {
    padding: var(--space-xl) 0;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.lifestyle-text blockquote {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}

.author {
    font-weight: 600;
    color: var(--color-primary);
}

.lifestyle-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* --- Testimonials --- */
.testimonials {
    padding: var(--space-xl) 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.review-card {
    background: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.review-text {
    font-size: 1.05rem;
    margin: var(--space-sm) 0;
    color: var(--color-text);
}

.reviewer {
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
}

.reviewer span {
    color: var(--color-text-light);
    font-weight: 400;
}

/* --- FAQ --- */
.faq-section {
    padding: var(--space-xl) 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 24px;
}

/* --- Final CTA --- */
.final-cta {
    padding: var(--space-xl) 0;
    text-align: center;
    background-color: var(--color-primary);
    color: var(--color-white);
}

.final-cta h2, .final-cta p {
    color: var(--color-white);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.price-block {
    margin: var(--space-md) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-size: 3rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--color-accent);
}

.vat {
    font-size: 0.85rem;
    opacity: 0.8;
}

.checkout-btn {
    background-color: var(--color-accent);
    color: var(--color-text);
    width: 100%;
    font-weight: 600;
}

.checkout-btn:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-text);
}

.secure-checkout {
    margin-top: var(--space-sm);
    font-size: 0.85rem;
    opacity: 0.9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.payment-icons span {
    font-weight: 600;
    margin: 0 4px;
}

/* --- Footer --- */
footer {
    background-color: var(--color-white);
    padding: var(--space-xl) 0 var(--space-sm);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: var(--space-xs);
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.link-column h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

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

.link-column a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: bottom 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 20px 0;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.cookie-content p {
    margin: 0;
    font-size: 0.85rem;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple mobile nav */
    }
    
    .hero-content, .about-grid, .lifestyle-grid, .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-actions {
        align-items: center;
    }
    
    .hero-image img {
        max-width: 100%;
        transform: none;
    }
    
    .hero-image img:hover {
        transform: none;
    }

    .about-image {
        order: -1;
    }

    .floating-card {
        left: 10px;
        bottom: 10px;
        padding: 10px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
