/* =============================================================
   CollagenCraft™ — Main Stylesheet
   Coral / Cream / Warm Terracotta palette
   Mobile-first, pure CSS, no frameworks
   ============================================================= */

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

:root {
  --primary:       #c4614a;
  --primary-dark:  #9e3d28;
  --primary-light: #fde8df;
  --accent:        #e8896e;
  --accent2:       #4a90c4;
  --text:          #2c1a14;
  --text-light:    #6b4c42;
  --bg:            #ffffff;
  --bg-alt:        #fdf6f0;
  --bg-dark:       #1e0f09;
  --border:        #ecd5cb;
  --radius:        10px;
  --radius-lg:     20px;
  --shadow:        0 2px 16px rgba(196,97,74,0.10);
  --shadow-hover:  0 8px 32px rgba(196,97,74,0.20);
  --transition:    0.25s ease;
  --font-body:     'DM Sans', sans-serif;
  --font-serif:    'Playfair Display', serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; border-radius: 4px; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.3rem); }
h3 { font-size: clamp(1rem, 2vw, 1.15rem); }
h4 { font-size: 1.05rem; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}

.section-heading { text-align: center; margin-bottom: 0.6rem; }
.section-sub {
  text-align: center;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

.btn-sm  { padding: 0.5rem 1.2rem; font-size: 0.88rem; }
.btn-lg  { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 68px;
}

.logo { display: flex; align-items: center; gap: 0.45rem; text-decoration: none; }
.logo-icon { font-size: 1.4rem; }
.logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}
.logo-text sup { font-size: 0.5rem; }

.main-nav ul { display: none; gap: 0.25rem; }
.main-nav a {
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--text);
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  background: var(--primary-light);
  color: var(--primary);
}

.btn-header-cta { display: none; }

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  width: 38px; height: 38px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-open .main-nav {
  display: flex;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: #fff;
  padding: 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.nav-open .main-nav ul { display: flex; flex-direction: column; width: 100%; }
.nav-open .main-nav a { display: block; padding: 0.75rem 1rem; font-size: 1.05rem; }
.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) {
  .main-nav ul { display: flex; }
  .btn-header-cta { display: inline-block; }
  .burger { display: none; }
}

/* ── HERO ─────────────────────────────────────────────────── */
section { padding: 4.5rem 0; }
section[id] { scroll-margin-top: 76px; }
section:nth-child(even):not(.hero):not(.testimonials):not(.cta-banner) { background: var(--bg-alt); }

.hero         { background: linear-gradient(135deg, #9e3d28 0%, #c4614a 55%, #d97c5f 100%) !important; }
.testimonials { background: var(--primary) !important; }
.cta-banner   { background: linear-gradient(135deg, #9e3d28 0%, #c4614a 100%) !important; }

.hero {
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -60px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero h1 em {
  font-style: italic;
  font-family: var(--font-serif);
  color: #ffd4c5;
  font-weight: 400;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin-bottom: 2rem;
}

.trust-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.83rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 50px;
}

.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-mockup {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  max-width: 300px;
  width: 100%;
  min-height: 220px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-mockup-emoji { font-size: 4rem; margin-bottom: 0.85rem; }
.hero-mockup h3   { color: #fff; margin-bottom: 0.4rem; font-size: 1.05rem; }
.hero-mockup p    { color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.hero-mockup-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .hero { padding: 6.5rem 0 5.5rem; }
  .hero-inner { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* ── PROOF STRIP ──────────────────────────────────────────── */
.proof-strip {
  background: var(--bg-dark);
  padding: 1.1rem 0;
}
.proof-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  text-align: center;
}
.proof-item { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.proof-item strong { color: #fff; }
.proof-divider { color: rgba(255,255,255,0.2); display: none; }
@media (min-width: 640px) { .proof-divider { display: block; } }

/* ── DISCLAIMER BLOCK ─────────────────────────────────────── */
.disclaimer-block {
  background: #fdf6f0;
  border-left: 4px solid var(--border);
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.disclaimer-block h4 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.65rem;
}
.disclaimer-block p { font-size: 0.84rem; color: #666; line-height: 1.75; }

/* ── SECTION LAYOUT ───────────────────────────────────────── */
.section-center { text-align: center; }

/* ── PRODUCTS ─────────────────────────────────────────────── */
.products-grid { display: grid; gap: 1.75rem; }

.product-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.product-card.featured {
  border-color: var(--primary);
  border-width: 2px;
  position: relative;
  box-shadow: 0 4px 24px rgba(196,97,74,0.18);
}

.product-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
}

.product-image {
  height: 170px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.8rem;
}
.product-body { padding: 1.5rem; }
.product-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.product-desc { color: var(--text-light); font-size: 0.92rem; margin-bottom: 1rem; line-height: 1.6; }
.product-price {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.product-price span { font-size: 0.88rem; font-weight: 400; color: var(--text-light); }

@media (min-width: 640px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how-grid {
  display: grid;
  gap: 1rem;
  align-items: center;
}
.how-step {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.how-step:hover { box-shadow: var(--shadow-hover); }
.how-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}
.how-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.how-step h3 { font-size: 0.98rem; margin-bottom: 0.4rem; }
.how-step p { color: var(--text-light); font-size: 0.88rem; line-height: 1.65; }
.how-arrow {
  display: none;
  font-size: 1.5rem;
  color: var(--border);
  text-align: center;
}

@media (min-width: 768px) {
  .how-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0.5rem;
  }
  .how-arrow { display: block; }
}

/* ── FEATURES ─────────────────────────────────────────────── */
.features-grid { display: grid; gap: 1.25rem; }
.feature-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-hover); }
.feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-light);
  border-radius: 10px;
}
.feature-text h3 { font-size: 0.98rem; margin-bottom: 0.35rem; }
.feature-text p { color: var(--text-light); font-size: 0.88rem; }

@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials .section-heading { color: #fff; }
.testimonials .section-sub { color: rgba(255,255,255,0.75); }
.testimonials .section-label { background: rgba(255,255,255,0.15); color: #fff; }

.testimonials-grid { display: grid; gap: 1.25rem; }
.testimonial-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.testimonial-stars { color: #ffd4a8; font-size: 1.05rem; margin-bottom: 0.75rem; }
.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.92rem; color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: #fff; font-size: 0.92rem; }
.testimonial-location { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

@media (min-width: 640px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(4, 1fr); } }

/* ── SERVICE / WHY US ─────────────────────────────────────── */
.service-grid { display: grid; gap: 1.25rem; }
.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.service-emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.service-card h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.service-card p { color: var(--text-light); font-size: 0.86rem; }

@media (min-width: 640px)  { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── FAQ ACCORDION ────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.65rem; }
.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition), color var(--transition);
}
.faq-question:hover,
.faq-question[aria-expanded="true"] { background: var(--primary-light); color: var(--primary-dark); }
.faq-icon {
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform var(--transition);
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; border-top: 1px solid var(--border); }
.faq-answer.open { display: block; }
.faq-answer p { color: var(--text-light); font-size: 0.93rem; line-height: 1.8; padding-top: 1rem; }
.faq-answer p a { color: var(--primary); font-weight: 600; text-decoration: underline; }

/* ── COMPARISON TABLE ─────────────────────────────────────── */
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-top: 1rem;
}
.compare-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.91rem;
}
.compare-table thead th {
  background: var(--primary-dark);
  color: #fff;
  padding: 1.1rem 1.25rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.4;
}
.compare-table thead th.compare-feature-col { text-align: left; background: var(--bg-dark); }
.compare-table thead th.compare-featured    { background: var(--primary); }
.compare-price { display: block; font-size: 1.05rem; font-weight: 700; color: #ffd4c5; margin-top: 0.2rem; }
.compare-table tbody tr:nth-child(even) td { background: var(--bg-alt); }
.compare-table tbody tr:nth-child(even) td.compare-featured { background: #fde8df; }
.compare-table tbody td {
  padding: 0.8rem 1.25rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--text-light);
}
.compare-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--text); }
.compare-table tbody td.compare-featured {
  background: #fdf0eb;
  font-weight: 700;
  color: var(--primary-dark);
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}
.compare-table tbody tr:last-child td.compare-featured { border-bottom: 2px solid var(--primary); }
.compare-cta-row td { padding: 1.25rem !important; border-bottom: none !important; background: #fff !important; }
.compare-cta-row td.compare-featured { background: #fdf0eb !important; }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner { padding: 4.5rem 0; }
.cta-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
.cta-banner-text h2 { color: #fff; margin-bottom: 0.6rem; }
.cta-banner-text p { color: rgba(255,255,255,0.82); max-width: 520px; font-size: 1.05rem; }
.cta-banner-actions { display: flex; flex-direction: column; align-items: center; gap: 0.85rem; }
.cta-banner-sub { font-size: 0.84rem; color: rgba(255,255,255,0.7); font-weight: 600; }
.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary-dark);
  border-color: #fff;
}
.cta-banner .btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--primary-dark);
}
@media (min-width: 1024px) {
  .cta-banner-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .cta-banner-actions { align-items: flex-end; }
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); padding-top: 3.5rem; }
.footer-grid { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
.footer-logo { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; }
.footer-slogan { font-family: var(--font-serif); font-style: italic; color: var(--accent); font-size: 0.93rem; margin-bottom: 0.8rem; }
.footer-mission { font-size: 0.87rem; line-height: 1.7; }
.site-footer h4 { color: #fff; font-size: 0.83rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-contact { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-contact li { font-size: 0.88rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--accent); }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 0; background: rgba(0,0,0,0.2); }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-disclaimer { font-size: 0.76rem !important; }
@media (min-width: 768px) {
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ── COOKIE BANNER ────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 9999;
  padding: 1rem 1.25rem;
  display: none;
}
.cookie-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 1rem; justify-content: space-between;
}
.cookie-inner p { font-size: 0.87rem; color: rgba(255,255,255,0.78); flex: 1; min-width: 220px; }
.cookie-inner p a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ── FLOATING MOBILE CTA ──────────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 990;
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
@media (max-width: 767px) { .site-footer { padding-bottom: 5rem; } }

/* ── ORDER PAGE ───────────────────────────────────────────── */
.order-page { padding: 3rem 0; }
.order-grid { display: grid; gap: 2.5rem; }
.order-product-card {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.order-product-image {
  height: 150px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.8rem; margin-bottom: 1.25rem;
}
.order-product-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.35rem; }
.order-product-price { font-size: 1.9rem; font-weight: 700; color: var(--primary); margin-bottom: 1.25rem; }
.order-includes h4 {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-light); margin-bottom: 0.6rem;
}
.order-includes ul { display: flex; flex-direction: column; gap: 0.45rem; }
.order-includes li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.91rem; }
.order-includes li::before { content: '✅'; font-size: 0.83rem; flex-shrink: 0; margin-top: 0.1rem; }
.order-trust { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.order-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.86rem; font-weight: 600; color: var(--text-light); }

.order-form-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-section-title {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-light);
  margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border);
}
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

label { display: block; font-size: 0.87rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
label .req { color: var(--primary); margin-left: 2px; }

input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
  width: 100%; height: 48px; padding: 0 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.93rem;
  color: var(--text); background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none; -webkit-appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b4c42' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
textarea { height: auto; min-height: 120px; padding: 0.85rem 1rem; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196,97,74,0.12);
}
input.error, select.error { border-color: #e53e3e; }
.error-msg { display: none; color: #e53e3e; font-size: 0.79rem; margin-top: 0.3rem; }
.error-msg.visible { display: block; }

.checkbox-group { display: flex; align-items: flex-start; gap: 0.65rem; margin-bottom: 1.5rem; }
.checkbox-group input[type="checkbox"] {
  width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0;
  accent-color: var(--primary); appearance: none; -webkit-appearance: none;
}
.checkbox-group label { margin-bottom: 0; font-size: 0.86rem; font-weight: 400; line-height: 1.5; }
.checkbox-group label a { font-weight: 600; color: var(--primary); }
.submit-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border);
}
.submit-trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--text-light); font-weight: 600; }
.server-error {
  background: #fff5f5; border: 1px solid #fed7d7; color: #c53030;
  padding: 0.85rem 1rem; border-radius: var(--radius); font-size: 0.88rem; margin-bottom: 1.25rem;
}
@media (min-width: 1024px) { .order-grid { grid-template-columns: 1fr 1.5fr; } }

/* ── THANK YOU ────────────────────────────────────────────── */
.thankyou-page { padding: 5rem 0; text-align: center; }
.thankyou-icon { font-size: 4.5rem; margin-bottom: 1.25rem; }
.thankyou-page h1 { margin-bottom: 0.5rem; }
.thankyou-order {
  display: inline-block;
  background: var(--primary-light); color: var(--primary-dark);
  font-weight: 700; padding: 0.45rem 1.25rem; border-radius: 50px; margin: 1rem 0 2rem;
}
.steps-list { display: flex; flex-direction: column; gap: 1rem; max-width: 560px; margin: 0 auto 2.5rem; text-align: left; }
.step-item { display: flex; gap: 1rem; align-items: flex-start; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-content h4 { font-size: 0.96rem; margin-bottom: 0.25rem; }
.step-content p { font-size: 0.86rem; color: var(--text-light); }
.support-box { background: #fff; border: 2px solid var(--primary); border-radius: var(--radius-lg); padding: 2rem; max-width: 460px; margin: 0 auto 2.5rem; }
.support-box h3 { margin-bottom: 0.3rem; }
.support-box p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 1.25rem; }
.support-phone { font-size: 1.55rem; font-weight: 700; color: var(--primary-dark); display: block; margin-bottom: 0.5rem; }
.support-email { font-weight: 600; display: block; margin-bottom: 0.35rem; }
.support-hours { font-size: 0.86rem; color: var(--text-light); }

/* ── POLICY PAGES ─────────────────────────────────────────── */
.policy-page { max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem; }
.policy-page h1 { color: var(--primary-dark); border-bottom: 2px solid var(--border); padding-bottom: 1rem; margin-bottom: 0.5rem; }
.policy-page .policy-date { font-size: 0.83rem; color: var(--text-light); margin-bottom: 2.5rem; }
.policy-page h2 { font-size: 1.2rem; margin-top: 2.5rem; margin-bottom: 0.75rem; color: var(--primary-dark); }
.policy-page p, .policy-page li { line-height: 1.85; color: #333; margin-bottom: 0.75rem; font-size: 0.95rem; }
.policy-page ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-page table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: 0.87rem; }
.policy-page table th, .policy-page table td { border: 1px solid var(--border); padding: 0.65rem 0.85rem; text-align: left; }
.policy-page table th { background: var(--bg-alt); font-weight: 700; }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-page { padding: 4rem 0; }
.contact-header { text-align: center; margin-bottom: 3rem; }
.contact-grid { display: grid; gap: 2.5rem; }
.contact-form-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); }
.contact-form-card h2 { margin-bottom: 1.5rem; font-size: 1.3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon { font-size: 1.4rem; flex-shrink: 0; width: 44px; height: 44px; background: var(--primary-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.contact-info-content h4 { font-size: 0.88rem; margin-bottom: 0.25rem; }
.contact-info-content p, .contact-info-content a { font-size: 0.88rem; color: var(--text-light); }
.contact-success { background: #f0fff4; border: 1px solid #9ae6b4; color: #276749; padding: 1rem 1.25rem; border-radius: var(--radius); font-size: 0.9rem; margin-bottom: 1.25rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.5fr 1fr; } }

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff; padding: 5rem 0 4rem; text-align: center;
}
.about-hero h1 { color: #fff; }
.about-hero p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 1rem auto 0; }
.about-page { padding: 4rem 0; }
.about-story { max-width: 780px; margin: 3.5rem auto 3.5rem; }
.about-story h2 { margin-bottom: 1.25rem; }
.about-story p { color: var(--text-light); line-height: 1.85; margin-bottom: 1.25rem; font-size: 1.01rem; }
.mission-block {
  background: var(--primary-light);
  border-left: 5px solid var(--primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 2.5rem; max-width: 780px; margin: 0 auto 3.5rem;
}
.mission-block h2 {
  font-family: var(--font-serif); font-weight: 400; font-style: italic;
  color: var(--primary-dark); font-size: clamp(1.1rem, 2.5vw, 1.6rem); line-height: 1.5;
}
.values-grid { display: grid; gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.value-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; box-shadow: var(--shadow); }
.value-emoji { font-size: 2.5rem; margin-bottom: 0.85rem; }
.value-card h3 { margin-bottom: 0.5rem; }
.value-card p { color: var(--text-light); font-size: 0.91rem; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

/* Stats bar */
.stats-bar { background: var(--bg-dark); padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; text-align: center; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-number { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 700; color: #fff; line-height: 1; margin-bottom: 0.4rem; }
.stat-number span { font-size: 0.65em; font-weight: 600; color: var(--accent); }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* Timeline */
.timeline { max-width: 700px; margin: 2rem auto 0; position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 8px; bottom: 8px; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 2.25rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: -2.5rem; top: 6px; width: 20px; height: 20px; border-radius: 50%; background: var(--primary); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--primary); z-index: 1; }
.timeline-year { display: inline-block; background: var(--primary-light); color: var(--primary-dark); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.75rem; border-radius: 50px; margin-bottom: 0.6rem; }
.timeline-content h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.timeline-content p { color: var(--text-light); font-size: 0.91rem; line-height: 1.75; }

/* Team */
.team-grid { display: grid; gap: 1.5rem; max-width: 960px; margin: 0 auto; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.team-avatar { width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; color: #fff; margin: 0 auto 1rem; box-shadow: 0 4px 16px rgba(196,97,74,0.25); }
.team-card h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.team-role { font-size: 0.78rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.85rem; }
.team-card p { font-size: 0.86rem; color: var(--text-light); line-height: 1.7; }

/* Upsell + Share */
.upsell-nudge { max-width: 520px; margin: 2rem auto; background: linear-gradient(135deg, #fffbf0, #fff8e6); border: 2px solid #f4a83a; border-radius: var(--radius-lg); padding: 2rem; text-align: center; }
.upsell-badge { display: inline-block; background: #f4a83a; color: #fff; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 50px; margin-bottom: 0.85rem; }
.upsell-nudge h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.upsell-nudge p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1.25rem; line-height: 1.65; }
.share-block { max-width: 520px; margin: 2rem auto 0; text-align: center; }
.share-label { font-size: 0.86rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.85rem; }
.share-buttons { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.share-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.6rem 1.35rem; border-radius: 8px; font-size: 0.86rem; font-weight: 700; border: 2px solid; transition: all var(--transition); }
.share-fb { border-color: #1877f2; color: #1877f2; }
.share-fb:hover { background: #1877f2; color: #fff; }
.share-tw { border-color: #000; color: #000; }
.share-tw:hover { background: #000; color: #fff; }

/* ── FADE-IN ANIMATION ────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── PRINT ────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .cookie-banner, .mobile-cta, .upsell-nudge, .share-block, .btn-outline, .btn-primary { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  .thankyou-page { padding: 1rem 0; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.75em; color: #555; }
}

/* ── UTILITIES ────────────────────────────────────────────── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.text-center { text-align: center; }
