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

:root {
  --purple-deep: #7B1FA2;
  --purple-mid: #8E24AA;
  --purple-light: #CE93D8;
  --purple-pale: #F3E5F5;
  --purple-ghost: #FCF5FE;
  --cream: #FFF8F0;
  --cream-dark: #F5EDE3;
  --warm-brown: #5D4037;
  --warm-brown-light: #8D6E63;
  --text-dark: #3E2723;
  --text-mid: #5D4037;
  --text-light: #8D6E63;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 24px rgba(123, 31, 162, 0.08);
  --shadow-card: 0 8px 32px rgba(123, 31, 162, 0.10);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }

p { margin-bottom: 1rem; color: var(--text-mid); font-size: 0.95rem; }

a { color: var(--purple-deep); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--purple-mid); }

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

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

/* ========= HEADER / NAV ========= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123, 31, 162, 0.06);
  transition: var(--transition);
}

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

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--purple-deep);
  letter-spacing: 1px;
}
.logo span { font-weight: 300; color: var(--purple-light); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--purple-mid);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--purple-deep); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--purple-deep);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========= MOBILE NAV ========= */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    flex-direction: column;
    background: var(--cream);
    padding: 80px 40px 40px;
    gap: 20px;
    box-shadow: -8px 0 32px rgba(0,0,0,0.08);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 998;
  }
  .nav-overlay.open { display: block; }
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--purple-deep);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(123, 31, 162, 0.25);
}
.btn-primary:hover {
  background: var(--purple-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(123, 31, 162, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--purple-deep);
  border: 1.5px solid var(--purple-deep);
}
.btn-outline:hover {
  background: var(--purple-deep);
  color: var(--white);
  transform: translateY(-2px);
}

/* ========= SECTIONS ========= */
section {
  padding: 80px 0;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--purple-mid);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 20px;
}

.section-text {
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.8;
}

/* ========= CARDS ========= */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

/* ========= FORMS ========= */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(123, 31, 162, 0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ========= FOOTER ========= */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .logo { color: var(--purple-light); margin-bottom: 16px; display: inline-block; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.footer-col a:hover { color: var(--purple-light); }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  max-width: 800px;
  margin: 0 auto 8px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ========= COOKIE BANNER ========= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  padding: 20px 24px;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.1);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner.show { display: flex; }
.cookie-banner p {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin: 0;
  max-width: 600px;
}
.cookie-banner p a { text-decoration: underline; }
.cookie-btn {
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  transition: var(--transition);
}
.cookie-accept {
  background: var(--purple-deep);
  color: var(--white);
}
.cookie-accept:hover { background: var(--purple-mid); }
.cookie-decline {
  background: transparent;
  color: var(--text-mid);
  border: 1px solid var(--cream-dark);
}
.cookie-decline:hover { background: var(--cream-dark); }

/* ========= HERO ========= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,31,162,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(206,147,216,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 520px; }

.hero-content .section-label { margin-bottom: 16px; }

.hero-content h1 {
  margin-bottom: 24px;
  font-weight: 300;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--purple-deep);
}

.hero-content p {
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

.hero-image-wrapper {
  position: relative;
  border-radius: 200px 200px 40px 40px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: linear-gradient(135deg, var(--purple-pale), var(--cream));
  padding: 40px 40px 0;
  max-width: 400px;
}

.hero-image-wrapper img {
  width: 100%;
  object-fit: contain;
}

.hero-float-badge {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 500;
}
.hero-float-badge strong {
  display: block;
  font-size: 1.4rem;
  color: var(--purple-deep);
  font-family: 'Cormorant Garamond', serif;
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-content { max-width: 100%; }
  .hero-image-wrapper { max-width: 280px; margin: 0 auto; }
  .hero-float-badge { left: 50%; transform: translateX(-50%); bottom: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
}

/* ========= PAGE HEADER ========= */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--purple-ghost) 0%, var(--cream) 100%);
  position: relative;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,31,162,0.05) 0%, transparent 70%);
}
.page-header h1 { position: relative; z-index: 1; }
.page-header p { position: relative; z-index: 1; max-width: 560px; margin: 12px auto 0; }

/* ========= FAQ ========= */
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 20px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text-dark);
  padding: 0;
  font-weight: 500;
}
.faq-question .icon {
  font-size: 1.4rem;
  color: var(--purple-mid);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}
.faq-answer-inner {
  padding: 16px 0 4px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-mid);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .icon { transform: rotate(45deg); }

/* ========= GRID UTILS ========= */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ========= ANIMATIONS ========= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========= INGREDIENT LIST ========= */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.ingredient-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px;
  border-left: 3px solid var(--purple-light);
  transition: var(--transition);
}
.ingredient-card:hover { box-shadow: var(--shadow-soft); }
.ingredient-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--purple-deep);
}
.ingredient-card p { font-size: 0.85rem; margin: 0; }

/* ========= ROUTINE TIMELINE ========= */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple-light), var(--cream-dark));
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -27px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--purple-mid);
  border: 3px solid var(--cream);
}
.timeline-item h3 { margin-bottom: 8px; }
.timeline-item .time-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--purple-mid);
  margin-bottom: 6px;
}

/* ========= CONTACT INFO ========= */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--purple-deep);
}
.contact-card h4 { font-size: 0.9rem; color: var(--text-light); font-family: 'DM Sans', sans-serif; font-weight: 500; }
.contact-card p { margin: 4px 0 0; font-weight: 500; font-size: 0.95rem; color: var(--text-dark); }
.contact-card a { color: var(--purple-deep); font-weight: 500; }

/* ========= LEGAL PAGES ========= */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.legal-content h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.legal-content p, .legal-content li { font-size: 0.9rem; line-height: 1.8; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 6px; }

/* ========= SUCCESS PAGE ========= */
.success-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}
.success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}
.success-wrap h1 { margin-bottom: 16px; }
.success-wrap p { max-width: 480px; margin: 0 auto 32px; }

/* ========= ORDER FORM SECTION ========= */
.order-section {
  background: linear-gradient(135deg, var(--purple-ghost), var(--cream));
  border-radius: var(--radius);
  padding: 48px;
  margin-top: 48px;
}
.order-section h2 { margin-bottom: 8px; }
.order-section > p { margin-bottom: 28px; }

/* ========= PRODUCT IMAGE ========= */
.product-showcase {
  background: linear-gradient(135deg, var(--purple-pale) 0%, var(--cream) 100%);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(123,31,162,0.06), transparent 60%);
}
.product-showcase img {
  position: relative;
  z-index: 1;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(123,31,162,0.15));
}

.price-tag {
  display: inline-block;
  background: var(--purple-deep);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 20px 0;
}
