/* ============================================
   REDESIGN - Warm Editorial / Bento Style
   ============================================ */

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

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

:root {
    --bg-warm: #f8f4ef;
    --bg-cream: #fffdf9;
    --bg-dark: #1a1612;
    --text-dark: #1a1612;
    --text-muted: #5c5349;
    --accent: #b85c38;
    --accent-hover: #9a4a2a;
    --border: #e8e0d5;
    --card-bg: #ffffff;
    --shadow-soft: 0 2px 12px rgba(26, 22, 18, 0.06);
    --radius-sm: 4px;
    --radius-lg: 0;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
    color: var(--text-dark);
    background: var(--bg-warm);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ========== HEADER ========== */
.header {
    background: var(--bg-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-cream);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

/* ========== HERO ========== */
.hero {
    background: var(--bg-dark);
    color: var(--bg-cream);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(255, 255, 255, 0.02) 40px,
        rgba(255, 255, 255, 0.02) 41px
    );
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-warm), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.02em;
}

/* ========== PRODUCT SECTION ========== */
.product-section {
    padding: 6rem 0;
    background: var(--bg-warm);
    margin-top: -2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-image {
    position: sticky;
    top: 120px;
}

.product-image img {
    width: 100%;
    height: auto;
    border: 2px solid var(--border);
    display: block;
}

/* Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    border: 2px solid var(--border);
    background: var(--card-bg);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
    border: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-dark);
    color: var(--bg-cream);
    border: 2px solid var(--accent);
    padding: 14px 18px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    font-family: inherit;
}

.carousel-btn:hover {
    background: var(--accent);
    color: var(--bg-cream);
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.carousel-dots {
    text-align: center;
    padding: 20px 0;
    background: var(--card-bg);
}

.dot {
    cursor: pointer;
    height: 8px;
    width: 24px;
    margin: 0 4px;
    background: var(--border);
    display: inline-block;
    transition: all 0.2s ease;
}

.dot.active,
.dot:hover {
    background: var(--accent);
}

/* Product Info */
.product-badge {
    display: inline-block;
    background: var(--text-dark);
    color: var(--bg-cream);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.product-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.2;
}

.product-description {
    margin-bottom: 2rem;
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 1.05rem;
}

.product-features {
    margin-bottom: 2rem;
    display: grid;
    gap: 0.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--card-bg);
    border-left: 4px solid var(--accent);
    transition: background 0.2s ease;
}

.feature:hover {
    background: #fdfbf8;
}

.feature-icon {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 24px;
}

.product-specs {
    background: var(--card-bg);
    padding: 2rem;
    border: 2px solid var(--border);
    margin-bottom: 2rem;
}

.product-specs h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
}

.product-specs p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.product-price {
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-cream);
    padding: 1.25rem 2.5rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-dark);
    color: var(--bg-cream);
}

.how-it-works .section-title {
    color: var(--bg-cream);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.comparison-item {
    background: rgba(255, 253, 249, 0.05);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.comparison-item h3 {
    margin-bottom: 1.5rem;
    color: var(--bg-cream);
    font-size: 1.35rem;
    font-weight: 600;
}

.comparison-image {
    margin-bottom: 1.5rem;
}

.comparison-image img {
    width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-item p {
    margin-bottom: 1rem;
    color: rgba(255, 253, 249, 0.85);
    line-height: 1.8;
}

/* ========== SOCIAL RESPONSIBILITY ========== */
.social-responsibility {
    padding: 6rem 0;
    background: var(--bg-cream);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 600;
}

.responsibility-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.responsibility-image {
    margin-bottom: 2.5rem;
}

.responsibility-image img {
    max-width: 100%;
    height: auto;
    border: 2px solid var(--border);
}

.responsibility-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.9;
}

/* ========== GUARANTEE ========== */
.guarantee {
    padding: 5rem 0;
    background: var(--accent);
    text-align: center;
    color: var(--bg-cream);
}

.guarantee .section-title {
    color: var(--bg-cream);
}

.guarantee p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ========== FAQ ========== */
.faq {
    padding: 6rem 0;
    background: var(--bg-warm);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 2px solid var(--border);
    padding: 2rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.9;
}

/* ========== CONTACT ========== */
.contact-section {
    padding: 6rem 0;
    background: var(--bg-cream);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
    padding: 2rem 2.5rem;
    background: var(--bg-warm);
    border: 2px solid var(--border);
    min-width: 220px;
}

.contact-item strong {
    display: block;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-item a {
    color: var(--accent);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-dark);
    color: var(--bg-cream);
    padding: 4rem 0 1.5rem;
}

.footer-legal {
    margin-bottom: 2.5rem;
}

.footer-legal h3 {
    color: var(--bg-cream);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.legal-info {
    margin-bottom: 2rem;
}

.legal-info p {
    color: rgba(255, 253, 249, 0.8);
    margin-bottom: 0.75rem;
    line-height: 1.9;
}

.legal-info strong {
    color: var(--bg-cream);
    font-weight: 600;
}

.health-notice {
    background: rgba(255, 255, 255, 0.06);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.health-notice h4 {
    color: var(--bg-cream);
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.health-notice p {
    color: rgba(255, 253, 249, 0.8);
    line-height: 1.9;
}

.contact-info-footer {
    margin-bottom: 2rem;
}

.contact-info-footer p {
    color: rgba(255, 253, 249, 0.8);
    margin-bottom: 0.75rem;
    line-height: 1.9;
}

.contact-info-footer strong {
    color: var(--bg-cream);
    font-weight: 600;
}

.contact-info-footer a {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 253, 249, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

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

.footer-bottom p {
    color: rgba(255, 253, 249, 0.6);
}

/* ========== LEGAL PAGES ========== */
.legal-page {
    padding: 5rem 0;
    min-height: 60vh;
    background: var(--bg-warm);
}

.legal-page h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-page section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid var(--border);
}

.legal-page section:last-child {
    border-bottom: none;
}

.legal-page h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1.05rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.25rem;
}

.legal-page ul li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.legal-page a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.legal-page a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.withdrawal-form {
    background: var(--card-bg);
    padding: 2.5rem;
    border: 2px solid var(--border);
    margin: 2.5rem 0;
}

.withdrawal-form p {
    margin-bottom: 1.25rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 1rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .product-image {
        position: static;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .subtitle {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .carousel-slides {
        height: 350px;
    }

    .legal-page h1 {
        font-size: 2rem;
    }
}

/* Image fallbacks */
img {
    max-width: 100%;
    height: auto;
}

.product-image img,
.comparison-image img,
.responsibility-image img {
    background-color: var(--bg-warm);
    min-height: 200px;
    display: block;
}
