/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a1a;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a1a;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
}

.text-green {
    color: #8B5CF6;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-narrow {
    max-width: 800px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    color: #6B7280;
    font-size: 1.125rem;
    margin-top: 0.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: #8B5CF6;
    color: #fff;
}

.btn-primary:hover {
    background: #6D28D9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.btn-outline {
    border: 2px solid #8B5CF6;
    color: #8B5CF6;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(139, 92, 246, 0.06);
}

.btn-white {
    background: #fff;
    color: #8B5CF6;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-full {
    width: 100%;
}

/* ===== BADGE ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.8);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #8B5CF6;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid #f3f4f6;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8B5CF6;
}

.logo-icon {
    width: 28px;
    height: 28px;
}

.logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.nav-desktop a:hover {
    color: #8B5CF6;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 1rem;
    background: #fff;
    border-top: 1px solid #f3f4f6;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.nav-mobile a:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
}

/* ===== HERO ===== */
.hero {
    padding-top: 64px;
    background: linear-gradient(135deg, #F5F3FF, #EDE9FE);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    gap: 2rem;
    padding: 3rem 0;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 1rem 0;
    line-height: 1.15;
}

.hero-text > p {
    font-size: 1.125rem;
    color: #6B7280;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

.hero-image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: rgba(139, 92, 246, 0.25);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-image img {
    position: relative;
    max-width: 350px;
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ===== PRICE ===== */
.hero-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.price-old {
    font-size: 1.25rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 400;
}

.price-current {
    font-size: 2rem;
    font-weight: 700;
    color: #8B5CF6;
    font-family: 'Inter', sans-serif;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dc2626;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
}

/* ===== BENEFITS ===== */
.benefits {
    padding: 5rem 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    background: rgba(237, 233, 254, 0.7);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: #F5F3FF;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B5CF6;
    transition: background 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: rgba(139, 92, 246, 0.2);
}

.benefit-card h3 {
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.benefit-card p {
    color: #6B7280;
    line-height: 1.6;
}

/* ===== INGREDIENTS ===== */
.ingredients {
    padding: 5rem 0;
    background: #F5F3FF;
}

.ingredients-inner {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.ingredients-image img {
    border-radius: 1rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    width: 100%;
}

.ingredients-content h2 {
    margin-bottom: 1rem;
}

.ingredients-content > p {
    color: #6B7280;
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ingredient-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}

.ingredient-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.ingredient-card h4 {
    color: #8B5CF6;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.ingredient-card p {
    font-size: 0.8125rem;
    color: #6B7280;
    line-height: 1.5;
}

/* ===== WHY NATURAL ===== */
.why-natural {
    padding: 5rem 0;
    background: #fff;
}

.why-natural-inner {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.why-natural-image img {
    border-radius: 1rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    width: 100%;
}

.why-natural-content h2 {
    margin-bottom: 1.5rem;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B5CF6;
    font-weight: 700;
    font-size: 0.875rem;
    margin-top: 0.125rem;
}

.why-item h4 {
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.why-item p {
    color: #6B7280;
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76, 29, 149, 0.95), rgba(129, 140, 248, 0.9));
}

.cta-content {
    position: relative;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.0625rem;
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* ===== PRODUCT DETAILS ===== */
.product-details {
    padding: 5rem 0;
    background: #fff;
}

.product-details-inner {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.product-details-image img {
    border-radius: 1rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    width: 100%;
}

.product-details-content h2 {
    margin-bottom: 1rem;
}

.product-details-content p {
    color: #6B7280;
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.product-details-content .btn {
    margin-top: 0.5rem;
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 5rem 0;
    background: #F5F3FF;
}

.reviews-grid {
    display: grid;
    gap: 1.5rem;
}

.review-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.review-stars {
    color: #8B6914;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-card blockquote p {
    color: #6B7280;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B5CF6;
    font-weight: 700;
    font-size: 0.875rem;
}

.review-author span {
    font-weight: 600;
    font-size: 0.8125rem;
    color: #1a1a1a;
}

/* ===== FAQ ===== */
.faq {
    padding: 5rem 0;
    background: #fff;
}

.faq-list {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #f3f4f6;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #f3f4f6;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.9375rem;
    transition: background 0.2s ease;
    gap: 1rem;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-chevron {
    min-width: 20px;
    color: #9ca3af;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: #8B5CF6;
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: #6B7280;
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ===== ORDER CARD ===== */
.order-section {
    padding: 5rem 0;
    background: #F5F3FF;
}

.order-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: grid;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.order-card-image {
    display: flex;
    justify-content: center;
}

.order-card-image img {
    max-width: 220px;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.order-card-image img:hover {
    transform: scale(1.03);
}

.order-card-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.order-card-content > p {
    color: #6B7280;
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.order-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.order-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.order-features li {
    color: #374151;
    font-size: 0.9375rem;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: #111827;
    color: #fff;
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-logo svg {
    color: #8B5CF6;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-links h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    margin-top: 3rem;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: #6B7280;
    font-size: 0.8125rem;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
}

.cookie-icon {
    font-size: 2rem;
    line-height: 1;
}

.cookie-text {
    flex: 1;
    min-width: 200px;
}

.cookie-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.cookie-text p {
    font-size: 0.8125rem;
    color: #6B7280;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cookie-reject {
    border: 1px solid #d1d5db;
    color: #374151;
    background: #fff;
}

.btn-cookie-reject:hover {
    background: #f3f4f6;
}

.btn-cookie-accept {
    background: #8B5CF6;
    color: #fff;
    border: 1px solid #8B5CF6;
}

.btn-cookie-accept:hover {
    background: #6D28D9;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .order-card {
        grid-template-columns: auto 1fr;
        text-align: left;
    }

    .order-price {
        justify-content: flex-start;
    }
}

/* Desktop */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .nav-desktop {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr 1fr;
        padding: 5rem 0;
    }

    .hero-image img {
        max-width: 400px;
    }

    .ingredients-inner {
        grid-template-columns: 1fr 1fr;
    }

    .why-natural-inner {
        grid-template-columns: 1fr 1fr;
    }

    .why-natural-content {
        order: 1;
    }

    .why-natural-image {
        order: 2;
    }

    .product-details-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-inner {
        padding: 6rem 0;
    }

    .order-form {
        padding: 2.5rem;
    }
}

/* ===== MODALS ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #374151;
    transition: background 0.2s ease;
    cursor: pointer;
    border: none;
    line-height: 1;
}

.modal-close:hover {
    background: #e5e7eb;
}

.modal-content h2 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    padding-right: 3rem;
}

.modal-date {
    font-size: 0.8125rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.modal-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #8B5CF6;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-content p {
    color: #4B5563;
    line-height: 1.7;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.modal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-content li {
    color: #4B5563;
    line-height: 1.7;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.modal-content strong {
    color: #1a1a1a;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}