/* ============================================
   PREMIUM LIGHT WELLNESS DESIGN SYSTEM
   ============================================ */
:root {
  --bg-primary: #FCFAF8;
  --bg-secondary: #F3EFEA;
  --accent-emerald: #2A5C4A;
  --accent-gold: #C19A6B;
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted: #8E8E8E;
  --border-radius: 12px;
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-title { text-align: center; font-family: var(--font-serif); font-size: 2.5rem; margin-bottom: 3rem; color: var(--accent-emerald); }

/* AD Label */
.ad-label {
  background: var(--bg-secondary);
  color: var(--text-muted);
  text-align: center;
  padding: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s;
}

.header-content { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.logo { font-family: var(--font-serif); font-weight: 700; font-size: 1.5rem; color: var(--accent-emerald); }

/* Hero */
.hero { position: relative; height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; color: white; overflow: hidden; }
.hero-image-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.hero-image-container img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); }
.hero-title { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 1rem; }
.hero-subtitle { font-size: 1.1rem; max-width: 600px; margin: 0 auto; opacity: 0.9; }

/* Photos & Cards */
.image-placeholder, .product-image { border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.3s; }
.image-placeholder img { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.05) contrast(1.02); }
.image-placeholder:hover { transform: translateY(-5px); }
.ratio-1-1 { aspect-ratio: 1 / 1; }
.ratio-16-9 { aspect-ratio: 16 / 9; }
.glass-card { background: white; padding: 3rem; border-radius: var(--border-radius); box-shadow: var(--shadow-soft); margin-bottom: 2rem; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

/* Buttons */
.btn { padding: 0.8rem 1.8rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.85rem; transition: all 0.3s; display: inline-block; cursor: pointer; border: none; }
.btn-primary { background: var(--accent-emerald); color: white; }
.btn-primary:hover { background: #1e4537; transform: scale(1.03); }
.btn-secondary { border: 1px solid var(--accent-emerald); color: var(--accent-emerald); background: transparent; }
.btn-link { color: var(--accent-emerald); text-decoration: underline; font-weight: 600; background: transparent; }

/* Components */
.stat-chip { background: var(--bg-secondary); padding: 0.6rem 1.5rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; color: var(--accent-emerald); }
.disclaimer-banner { background: rgba(193, 154, 107, 0.1); border-left: 4px solid var(--accent-gold); padding: 1.5rem; margin: 2rem 0; font-size: 0.9rem; border-radius: 0 8px 8px 0; }
.accordion { margin-bottom: 0.8rem; border: 1px solid var(--bg-secondary); border-radius: 8px; overflow: hidden; }
.accordion-header { background: white; padding: 1.2rem; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; }
.accordion-content { display: none; padding: 1.5rem; background: var(--bg-primary); border-top: 1px solid var(--bg-secondary); }
.accordion-content.active { display: block; }

/* Carousel */
.carousel { position: relative; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.carousel-track { display: flex; transition: transform 0.5s ease; }
.carousel-slide { min-width: 100%; }
.carousel-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.92);
    border: none; width: 48px; height: 48px; border-radius: 50%;
    cursor: pointer; z-index: 10;
    font-size: 1.6rem; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transition: background 0.2s, transform 0.2s;
    color: var(--accent-emerald);
}
.carousel-nav:hover { background: white; transform: translateY(-50%) scale(1.08); }
.carousel-nav.prev { left: 1rem; }
.carousel-nav.next { right: 1rem; }

/* Forms */
.order-form { max-width: 800px; margin: 0 auto; padding: 3rem; background: white; border-radius: var(--border-radius); box-shadow: var(--shadow-soft); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--accent-emerald); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.9rem; border: 1px solid var(--bg-secondary); border-radius: 8px; background: var(--bg-primary); font-family: inherit; }

/* Footer & Cookie Banner */
.footer { background: white; padding: 5rem 0 2rem; border-top: 1px solid var(--bg-secondary); }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer h4 { font-family: var(--font-serif); color: var(--accent-emerald); margin-bottom: 1.5rem; }
.footer ul { list-style: none; }
.footer ul li a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; }
.footer-bottom { text-align: center; border-top: 1px solid var(--bg-secondary); padding-top: 3rem; font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom strong { color: var(--accent-emerald) !important; }

.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: white;
    padding: 1.5rem 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
    z-index: 2000;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-banner-text p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; }
.cookie-banner-text a { color: var(--accent-emerald); font-weight: 700; }
.cookie-banner-buttons { display: flex; gap: 1rem; }
.cookie-banner-buttons .btn { padding: 0.6rem 1.5rem; font-size: 0.8rem; white-space: nowrap; }

/* Navigation */
.nav-buttons { display: flex; gap: 1rem; align-items: center; }

/* Stats Strip */
.stats-strip { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; padding: 2rem 0; }

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

/* References */
.references-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.reference-card { background: white; padding: 2rem; border-radius: var(--border-radius); box-shadow: var(--shadow-soft); border-top: 3px solid var(--accent-emerald); }
.reference-card h4 { font-family: var(--font-serif); color: var(--accent-emerald); margin-bottom: 1rem; }
.reference-card p { font-size: 0.9rem; color: var(--text-secondary); }

/* Legal Block */
.legal-block { background: var(--bg-secondary); padding: 3rem; border-radius: var(--border-radius); text-align: center; }
.legal-block h3 { font-family: var(--font-serif); color: var(--accent-emerald); margin-bottom: 1.5rem; }
.legal-info { margin: 1.5rem 0; }
.legal-info p { color: var(--text-secondary); margin-bottom: 0.5rem; font-size: 0.95rem; }

/* Form Extras */
.checkbox-group { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.checkbox-group input[type="checkbox"] { width: auto; flex-shrink: 0; margin-top: 0.2rem; }
.checkbox-group label { font-size: 0.85rem; color: var(--text-secondary); font-weight: 400; }
.checkbox-group a { color: var(--accent-emerald); }
.error { color: #c0392b; font-size: 0.8rem; display: block; margin-top: 0.25rem; }

/* Price Box */
.price-box { background: linear-gradient(135deg, rgba(42,92,74,0.08), rgba(193,154,107,0.12)); border: 2px solid var(--accent-emerald); border-radius: var(--border-radius); padding: 1.5rem; margin: 1.5rem 0; text-align: center; }
.price-box-lg { padding: 2.5rem; }
.price-label { font-size: 0.9rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 0.5rem; }
.price-amount { font-size: 3.5rem; font-weight: 900; color: var(--accent-emerald); font-family: var(--font-serif); line-height: 1; margin: 0; }
.price-amount span { font-size: 1.5rem; vertical-align: super; }
.price-box-lg .price-amount { font-size: 4rem; }
.price-note { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.5rem; }

/* Footer section */
.footer-section { }

/* Thank You Box */
.thank-you-box { display: none; background: linear-gradient(135deg, rgba(42,92,74,0.08), rgba(193,154,107,0.12)); border: 2px solid var(--accent-emerald); border-radius: var(--border-radius); padding: 3rem; text-align: center; margin: 2rem auto; max-width: 800px; }
.thank-you-box h3 { font-family: var(--font-serif); color: var(--accent-emerald); font-size: 2rem; margin-bottom: 1rem; }
.thank-you-box p { color: var(--text-secondary); font-size: 1.1rem; line-height: 1.7; }

@media (max-width: 900px) {
    .image-gallery { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .cookie-banner-content { flex-direction: column; text-align: center; gap: 1.5rem; }
    .footer-content { text-align: center; }
    .nav-buttons { gap: 0.5rem; }
    .price-amount { font-size: 2.5rem; }
    .price-box-lg .price-amount { font-size: 3rem; }
    .image-gallery { gap: 1rem; }
    .section { padding: 3rem 0; }
}
