/* ========================================
   LULUTOX — Global Stylesheet
   Palette: Sage #6B8F71 | Cream #FAF7F2 | Charcoal #2C2C2C | Blush #F0C5A3
   ======================================== */

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

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

:root {
  --sage: #6B8F71;
  --sage-dark: #4f6e54;
  --sage-light: #e8f0e9;
  --cream: #FAF7F2;
  --cream-dark: #f0ebe2;
  --charcoal: #2C2C2C;
  --charcoal-light: #555;
  --blush: #F0C5A3;
  --blush-dark: #e0a882;
  --white: #ffffff;
  --border: #e0dbd3;
  --shadow: rgba(44,44,44,0.08);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: 0.25s ease;
  --max-w: 1160px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sage-dark); }
ul, ol { list-style: none; }

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--charcoal-light); }
p:last-child { margin-bottom: 0; }

.text-sage { color: var(--sage); }
.text-blush { color: var(--blush-dark); }
.text-center { text-align: center; }
.text-muted { color: #888; font-size: 0.9rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107,143,113,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--sage);
  border-color: var(--sage);
}
.btn-outline:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-blush {
  background: var(--blush);
  color: var(--charcoal);
  border-color: var(--blush);
}
.btn-blush:hover {
  background: var(--blush-dark);
  border-color: var(--blush-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(240,197,163,0.4);
}

.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }

/* ---- Navigation ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
}

.nav-logo span { color: var(--sage); }

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-icon svg { width: 20px; height: 20px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 6px;
  color: var(--charcoal-light);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--sage-light);
  color: var(--sage-dark);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  padding: 16px 0 24px;
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 12px 24px;
  color: var(--charcoal);
  font-weight: 500;
  border-bottom: 1px solid var(--cream-dark);
}

.mobile-menu a:last-child { border-bottom: none; }

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: var(--sage);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.announcement-bar a { color: var(--blush); font-weight: 600; }

/* ---- Hero Section ---- */
.hero {
  padding: 80px 0 60px;
  background: var(--cream);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107,143,113,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-text { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sage-light);
  color: var(--sage-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--sage);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--charcoal-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-pillars {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
}

.hero-pillar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 40px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #888;
  font-weight: 500;
}

.trust-icon {
  color: var(--sage);
  font-size: 1rem;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-image-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--blush));
}

.hero-product-img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.hero-badge-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: 0 8px 24px var(--shadow);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-badge-float.top-right {
  top: 16px;
  right: -16px;
  color: var(--sage-dark);
}

.hero-badge-float.bottom-left {
  bottom: 16px;
  left: -16px;
  color: var(--charcoal);
}

/* ---- Section Styles ---- */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--white);
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }

.section-sage {
  background: var(--sage);
  color: var(--white);
}

.section-sage h2, .section-sage h3 { color: var(--white); }
.section-sage p { color: rgba(255,255,255,0.85); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.section-dark .section-label { color: var(--blush); }
.section-sage .section-label { color: var(--blush); }

.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* ---- Benefits Grid ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--shadow);
  border-color: var(--sage-light);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.benefit-card h3 { margin-bottom: 12px; font-size: 1.15rem; }

/* ---- Product Detail ---- */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.product-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-img-main img,
.product-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-img-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
}

.product-info .price-block {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
  border: 1px solid var(--border);
}

.price-main {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--charcoal);
}

.price-per {
  font-size: 0.875rem;
  color: #888;
  margin-top: 4px;
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.product-meta-row:last-child { border-bottom: none; }
.product-meta-label { color: #888; }
.product-meta-value { font-weight: 600; }

/* ---- How to Use ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--sage-light), var(--sage), var(--sage-light));
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 3px solid var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sage);
}

.step-card h3 { font-size: 1rem; margin-bottom: 8px; }
.step-card p { font-size: 0.875rem; }

/* ---- Ingredients ---- */
.ingredients-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ingredient-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ingredient-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ingredient-icon {
  width: 44px;
  height: 44px;
  background: var(--sage-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ingredient-item h4 { margin-bottom: 4px; }
.ingredient-item p { font-size: 0.875rem; margin: 0; }

/* ---- FAQ ---- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--cream); }

.faq-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
  color: var(--sage);
  font-size: 0.8rem;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--charcoal-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer { display: block; }

/* ---- Order CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: rgba(255,255,255,0.04);
  transform: skewX(-15deg);
  pointer-events: none;
}

.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Forms ---- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
}

.form-required { color: #e05; margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107,143,113,0.15);
}

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

.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--charcoal-light);
  line-height: 1.5;
}

.form-checkbox-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--sage);
}

.form-hint { font-size: 0.8rem; color: #888; margin-top: 4px; }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-quote {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--sage-light);
  font-family: var(--font-head);
  margin-bottom: 8px;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name { font-weight: 600; font-size: 0.9rem; }
.author-loc { font-size: 0.8rem; color: #888; }

/* ---- Lifestyle Grid ---- */
.lifestyle-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 16px;
  border-radius: var(--radius);
  overflow: hidden;
}

.lifestyle-grid .img-cell {
  overflow: hidden;
}

.lifestyle-grid .img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lifestyle-grid .img-cell:hover img { transform: scale(1.04); }
.lifestyle-grid .img-tall { grid-row: 1 / 3; }

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--charcoal);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 6px;
}

.stat-item p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin: 0;
}

.stat-accent { color: var(--blush); }

/* ---- Footer ---- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand-tagline {
  font-size: 0.8rem;
  color: var(--blush);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a { color: rgba(255,255,255,0.65); }
.footer-bottom a:hover { color: var(--white); }

.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

/* ---- Page Header (inner pages) ---- */
.page-header {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream) 100%);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.page-header h1 { margin-bottom: 12px; }
.page-header p { font-size: 1.1rem; max-width: 600px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--sage); }
.breadcrumb-sep { color: #ccc; }

/* ---- Policy Pages ---- */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.policy-content h2 {
  font-size: 1.4rem;
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--sage-light);
}

.policy-content h2:first-of-type { margin-top: 0; }

.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 1rem;
}

.policy-content ul li { margin-bottom: 6px; color: var(--charcoal-light); }
.policy-content ol { list-style: decimal; padding-left: 24px; margin-bottom: 1rem; }
.policy-content ol li { margin-bottom: 6px; color: var(--charcoal-light); }

.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
}

.policy-content table th {
  background: var(--sage-light);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--sage-dark);
}

.policy-content table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal-light);
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: flex-start;
}

.contact-info {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--sage-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 48px;
}

/* ---- About Page ---- */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
}

.value-card h4 { margin-bottom: 8px; color: var(--sage-dark); }
.value-card p { font-size: 0.875rem; margin: 0; }

/* ---- Order Page ---- */
.order-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.order-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
}

.order-summary {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  position: sticky;
  top: 96px;
}

.order-product-row {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.order-product-img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.order-product-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.qty-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 8px 16px;
  width: fit-content;
}

.qty-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--sage);
  font-weight: 700;
  padding: 0 4px;
}

.qty-num { font-weight: 700; min-width: 24px; text-align: center; }

.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.price-row.total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  padding-top: 12px;
  border-top: 2px solid var(--border);
}

.secure-badges {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.secure-badge {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--charcoal-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---- Cookie Consent Banner ---- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--charcoal);
  color: rgba(255,255,255,0.9);
  padding: 20px 24px;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

#cookie-banner.show { display: block; }

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text { font-size: 0.875rem; line-height: 1.5; }
.cookie-text a { color: var(--blush); text-decoration: underline; }

.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

.cookie-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.cookie-btn-accept {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.cookie-btn-accept:hover { background: var(--sage-dark); border-color: var(--sage-dark); }

.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

/* ---- Notification Toast ---- */
#toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9998;
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 340px;
  border-left: 4px solid var(--sage);
}

#toast.show { transform: translateX(0); }

/* ---- Success Alert ---- */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 16px 0;
  display: none;
}

.alert.show { display: block; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ---- Utility ---- */
.divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.tag {
  display: inline-block;
  background: var(--sage-light);
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}

.highlight-box {
  background: var(--sage-light);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 20px 0;
}

.highlight-box p { color: var(--sage-dark); margin: 0; font-size: 0.9rem; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { max-width: 480px; margin: 0 auto; }
  .hero-badge-float.top-right { right: 0; }
  .hero-badge-float.bottom-left { left: 0; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-grid::before { display: none; }
  .ingredients-layout { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .order-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .lifestyle-grid .img-tall { grid-row: auto; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 48px 0 40px; }
  .section { padding: 56px 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-trust { gap: 12px; }
  .stats-grid { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
