/* ===== CSS Variables ===== */
:root {
  --white: #ffffff;
  --off-white: #f9f9f9;
  --light-gray: #f2f2f2;
  --mid-gray: #e0e0e0;
  --text-dark: #1a1a1a;
  --text-medium: #555555;
  --text-light: #888888;
  --red-primary: #c0392b;
  --red-hover: #a93226;
  --red-light: #fdecea;
  --red-accent: #e74c3c;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --radius: 8px;
  --radius-lg: 14px;
  --font-body: 'DM Sans', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --max-width: 1140px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-hover); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 16px; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 10px; }
p { margin-bottom: 14px; color: var(--text-medium); }

/* ===== Header / Navbar ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--mid-gray);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}
.logo span { color: var(--red-primary); }

.main-nav { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.main-nav a {
  font-size: 0.88rem;
  color: var(--text-medium);
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}
.main-nav a:hover { color: var(--red-primary); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--mid-gray);
  }
  .main-nav.active { display: flex; }
}

/* ===== Hero ===== */
.hero {
  padding: 60px 0 50px;
  background: linear-gradient(135deg, var(--white) 0%, var(--red-light) 100%);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-text { max-width: 520px; }
.hero-text .badge {
  display: inline-block;
  background: var(--red-light);
  color: var(--red-primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-text h1 { margin-bottom: 18px; color: var(--text-dark); }
.hero-text h1 span { color: var(--red-primary); }
.hero-text p { font-size: 1.05rem; color: var(--text-medium); margin-bottom: 24px; }
.hero-image { position: relative; text-align: center; }
.hero-image img {
  max-height: 420px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.08));
}
.hero-disclaimer {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--off-white);
  border-left: 3px solid var(--red-primary);
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
  border-radius: 0 var(--radius) var(--radius) 0;
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text { max-width: 100%; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 300px; }
}

/* ===== Section Base ===== */
.section { padding: 60px 0; }
.section--gray { background: var(--off-white); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-header h2 span { color: var(--red-primary); }

/* ===== Content Image Inline ===== */
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.content-with-image.reverse .content-image { order: -1; }
.content-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

@media (max-width: 768px) {
  .content-with-image { grid-template-columns: 1fr; }
  .content-with-image.reverse .content-image { order: 0; }
}

/* ===== Benefits Grid ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--red-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}
.benefit-card h3 { font-family: var(--font-body); font-weight: 600; }
.benefit-card p { font-size: 0.92rem; margin-bottom: 0; }

/* ===== Ingredients ===== */
.ingredients-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.ingredient-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--mid-gray);
}
.ingredient-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: var(--red-primary);
  border-radius: 50%;
  margin-top: 7px;
}
.ingredient-item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.ingredient-item p { font-size: 0.85rem; margin-bottom: 0; }

/* ===== Audience ===== */
.audience-list { list-style: none; max-width: 600px; margin: 0 auto; }
.audience-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-medium);
}
.audience-list li:last-child { border-bottom: none; }
.audience-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-primary);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ===== Usage Steps ===== */
.usage-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.usage-step {
  text-align: center;
  padding: 28px 20px;
}
.step-number {
  width: 44px;
  height: 44px;
  background: var(--red-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}
.usage-step h3 { font-family: var(--font-body); font-weight: 600; }
.usage-step p { font-size: 0.9rem; margin-bottom: 0; }

/* ===== Order Form ===== */
.order-section { background: linear-gradient(135deg, var(--red-light) 0%, var(--white) 100%); }
.order-box {
  max-width: 500px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--mid-gray);
}
.order-box h2 { text-align: center; margin-bottom: 8px; }
.order-box .order-subtitle {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 28px;
}
.order-price {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red-primary);
  margin-bottom: 24px;
  font-family: var(--font-heading);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  background: var(--off-white);
}
.form-group input:focus {
  outline: none;
  border-color: var(--red-primary);
  background: var(--white);
}
.btn-order {
  width: 100%;
  padding: 14px;
  background: var(--red-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.3px;
}
.btn-order:hover { background: var(--red-hover); transform: translateY(-1px); }
.btn-order:active { transform: translateY(0); }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 14px;
}

/* ===== CTA Button Inline ===== */
.btn-cta {
  display: inline-block;
  padding: 13px 32px;
  background: var(--red-primary);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.3px;
}
.btn-cta:hover { background: var(--red-hover); color: var(--white); transform: translateY(-1px); }

/* ===== Footer ===== */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  padding: 40px 0 24px;
  font-size: 0.85rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand .logo { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; display: inline-block; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.83rem; }
.site-footer h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.83rem; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-disclaimer {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--red-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

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

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 18px 24px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-inner p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.75); flex: 1; min-width: 240px; }
.cookie-inner a { color: var(--red-accent); }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-btn {
  padding: 9px 22px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: var(--transition);
}
.cookie-btn--accept { background: var(--red-primary); color: var(--white); }
.cookie-btn--accept:hover { background: var(--red-hover); }
.cookie-btn--decline { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.cookie-btn--decline:hover { background: rgba(255,255,255,0.15); }

/* ===== Legal Pages ===== */
.legal-page { padding: 50px 0; }
.legal-page h1 { margin-bottom: 10px; }
.legal-page .legal-date { font-size: 0.85rem; color: var(--text-light); margin-bottom: 32px; }
.legal-page h2 { font-size: 1.2rem; margin-top: 32px; margin-bottom: 10px; }
.legal-page p, .legal-page li { font-size: 0.92rem; color: var(--text-medium); }
.legal-page ul { padding-left: 20px; margin-bottom: 14px; }
.legal-page li { margin-bottom: 6px; }

/* ===== Success Page ===== */
.success-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.success-box {
  max-width: 520px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
}
.success-icon {
  width: 72px;
  height: 72px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}
.success-box h1 { font-size: 1.8rem; margin-bottom: 14px; }
.success-box p { font-size: 1rem; }

/* ===== Contact Page ===== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.contact-card-icon {
  width: 52px;
  height: 52px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
}
.contact-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; margin-bottom: 6px; }
.contact-card p { font-size: 0.9rem; margin-bottom: 0; }

/* ===== About Page ===== */
.about-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--red-light) 100%);
  text-align: center;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.value-card {
  padding: 28px 24px;
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.value-card h3 { font-family: var(--font-body); font-weight: 600; }

/* ===== Product Page ===== */
.product-hero {
  padding: 50px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--red-light) 100%);
}
.product-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.product-image-main img {
  max-height: 400px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.08));
}
.product-details h1 { margin-bottom: 14px; }
.product-details h1 span { color: var(--red-primary); }
.product-price-tag {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red-primary);
  font-family: var(--font-heading);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .product-hero .container { grid-template-columns: 1fr; text-align: center; }
  .product-image-main { order: -1; }
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.fade-in-d1 { animation-delay: 0.1s; }
.fade-in-d2 { animation-delay: 0.2s; }
.fade-in-d3 { animation-delay: 0.3s; }
