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

:root {
  --brown-dark: #4E342E;
  --brown-primary: #6D4C41;
  --brown-mid: #8D6E63;
  --brown-light: #A1887F;
  --brown-pale: #D7CCC8;
  --brown-bg: #EFEBE9;
  --cream: #FAF8F6;
  --cream-warm: #F5F0EB;
  --text-dark: #3E2723;
  --text-body: #4E342E;
  --text-muted: #795548;
  --white: #FFFFFF;
  --accent-green: #7D8B6A;
  --accent-green-light: #A8B89A;
  --shadow-sm: 0 1px 3px rgba(78,52,46,0.08);
  --shadow-md: 0 4px 16px rgba(78,52,46,0.1);
  --shadow-lg: 0 8px 32px rgba(78,52,46,0.12);
  --radius: 6px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

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

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--brown-pale);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1140px;
  margin: 0 auto;
  height: 72px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown-primary);
  letter-spacing: 0.5px;
}
.logo span { color: var(--brown-light); font-weight: 400; }

/* Desktop nav */
.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.3px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--brown-primary);
  background: var(--brown-bg);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-primary);
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--text-body);
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.mobile-nav a:hover { background: var(--brown-bg); color: var(--brown-primary); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── HERO ── */
.hero {
  padding: 100px 0 80px;
  background: linear-gradient(170deg, var(--cream) 0%, var(--cream-warm) 50%, var(--brown-bg) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141,110,99,0.08) 0%, transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 {
  margin-bottom: 1.25rem;
  font-size: 3.2rem;
  line-height: 1.15;
}
.hero-text p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.8;
}
.hero-image {
  display: flex;
  justify-content: center;
}
.hero-image img {
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(78,52,46,0.12));
}

@media (max-width: 768px) {
  .hero { padding: 60px 0 50px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero-text p { margin: 0 auto 2rem; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 300px; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.4px;
  text-align: center;
}
.btn-primary {
  background: var(--brown-primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--brown-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--brown-primary);
  border: 2px solid var(--brown-primary);
}
.btn-outline:hover {
  background: var(--brown-primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── SECTIONS ── */
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--white);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 8px;
}
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--brown-light);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(109,76,65,0.06);
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.section-alt .card {
  background: var(--cream);
}
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--brown-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

/* ── FORMS ── */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--brown-pale);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brown-mid);
  box-shadow: 0 0 0 3px rgba(141,110,99,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── PAGE BANNER ── */
.page-banner {
  padding: 60px 0 50px;
  background: linear-gradient(170deg, var(--cream-warm) 0%, var(--brown-bg) 100%);
  text-align: center;
  position: relative;
}
.page-banner h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}
.page-banner p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--brown-mid); }
.breadcrumb a:hover { color: var(--brown-primary); }

/* ── FOOTER ── */
.site-footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: var(--brown-pale); }
.footer-brand .logo span { color: var(--brown-light); }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 12px;
  color: rgba(255,255,255,0.6);
}
.site-footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  align-items: flex-start;
}
.footer-contact-item .icon {
  flex-shrink: 0;
  width: 18px;
  text-align: center;
  opacity: 0.7;
}

.medical-disclaimer {
  background: rgba(0,0,0,0.15);
  padding: 20px 0;
  margin-top: 32px;
}
.medical-disclaimer p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-style: italic;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ── COOKIE MODAL ── */
.cookie-overlay {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 20px;
  display: none;
}
.cookie-overlay.show { display: block; }
.cookie-box {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.12);
  padding: 28px 32px;
  border: 1px solid var(--brown-pale);
}
.cookie-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.cookie-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 0.88rem;
}

/* ── MISC ── */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

/* FAQ */
.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(109,76,65,0.08);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.section-alt .faq-item { background: var(--cream); }
.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  color: var(--text-dark);
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--brown-mid);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--brown-pale);
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brown-mid);
  border: 3px solid var(--cream);
}
.section-alt .timeline-item::before {
  border-color: var(--white);
}
.timeline-item h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.timeline-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact info */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info-item .ci-icon {
  width: 44px;
  height: 44px;
  background: var(--brown-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}
.contact-info-item p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin: 0;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  .section { padding: 60px 0; }
  .page-banner { padding: 40px 0 36px; }
  .page-banner h1 { font-size: 2.2rem; }
}

/* Product page specific */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-image-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(109,76,65,0.06);
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown-primary);
  margin: 16px 0;
}
.product-details p {
  color: var(--text-muted);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .product-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* Success page */
.success-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.success-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  color: var(--white);
}

/* Quality badges */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.quality-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(109,76,65,0.06);
  transition: all var(--transition);
}
.quality-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.section-alt .quality-card { background: var(--cream); }
.quality-card .q-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.quality-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.quality-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* Animate on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
