/* =========================================================
   BareBloom — Stylesheet
   Design tokens live at the top as CSS custom properties.
   ========================================================= */

:root {
  /* Colour */
  --ivory: #F7F3EC;
  --cream: #F1EAD9;
  --sage: #8A9A82;
  --sage-dark: #6B7A64;
  --beige: #C9B79C;
  --brown: #8B6F53;
  --rose: #B85C55;
  --charcoal: #3A342C;
  --white: #FFFFFF;

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 32px;
  --shadow-soft: 0 10px 30px rgba(58, 52, 44, 0.08);
  --shadow-lift: 0 16px 40px rgba(58, 52, 44, 0.14);
  --header-height: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 0.5em; color: var(--charcoal); }
p { margin: 0 0 1em; }
a { color: var(--sage-dark); text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

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

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 600;
  margin-bottom: 0.6em;
}
.eyebrow.center { text-align: center; }

.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.section-title.center { text-align: center; }
.section-sub { color: #6b6357; max-width: 620px; }
.section-sub.center { margin: 0 auto 2.5rem; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--sage-dark); color: var(--white); }
.btn-primary:hover { background: var(--charcoal); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-outline { background: transparent; border-color: var(--sage-dark); color: var(--sage-dark); }
.btn-outline:hover { background: var(--sage-dark); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--brown); text-decoration: underline; padding: 0.4em 0.2em; }
.btn-whatsapp { background: var(--rose); color: var(--white); }
.btn-whatsapp:hover { background: #9c4a44; transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-small { padding: 0.55em 1.2em; font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(58, 52, 44, 0.08);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: var(--header-height);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-logo { height: 34px; width: auto; }
.main-nav ul { display: flex; gap: 28px; }
.nav-link {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 2px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-link:hover::after, .nav-link.active-link::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.btn-order-header { position: relative; }
.order-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--rose);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger span { display: block; height: 2px; width: 22px; background: var(--charcoal); transition: transform 0.2s ease, opacity 0.2s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  background: var(--ivory);
  border-top: 1px solid rgba(58, 52, 44, 0.08);
  padding: 20px 24px 28px;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.mobile-nav .nav-link { display: block; font-size: 1.05rem; }

@media (max-width: 860px) {
  .main-nav { display: none; }
  .btn-order-header { display: none; }
  .hamburger { display: flex; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 72px 0 96px; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(10px); opacity: 0.5; z-index: 0; }
.hero-blob-1 { width: 420px; height: 420px; background: var(--cream); top: -140px; left: -140px; }
.hero-blob-2 { width: 320px; height: 320px; background: var(--beige); bottom: -120px; right: -80px; opacity: 0.4; }
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 { font-size: clamp(2.3rem, 4.4vw, 3.6rem); margin-bottom: 0.5em; }
.hero-sub { font-size: 1.1rem; color: #6b6357; max-width: 460px; }
.hero-actions { display: flex; gap: 16px; margin-top: 1.6em; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  animation: hero-rise 0.9s ease both;
}
@keyframes hero-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.hero-copy { animation: hero-rise 0.9s ease both; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
}

/* ---------- Cards / general section rhythm ---------- */
section { padding: 88px 0; }
.card {
  background: var(--white);
  border: 1px solid rgba(58, 52, 44, 0.07);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 32px;
}

/* ---------- Product grid ---------- */
.products-section { background: var(--cream); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 2.5rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(58, 52, 44, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.product-card-image-wrap { aspect-ratio: 1 / 1; overflow: hidden; }
.product-card-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-image { transform: scale(1.05); }
.product-card-body { padding: 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card-body h3 { font-size: 1.15rem; margin-bottom: 0; }
.product-size { font-size: 0.82rem; color: #8a8175; }
.product-price { font-weight: 600; color: var(--rose); font-size: 1.05rem; margin: 2px 0 6px; }
.product-desc { font-size: 0.9rem; color: #5c554a; flex: 1; }
.product-card-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.product-card-buttons { display: flex; gap: 10px; }
.product-card-buttons .btn { flex: 1; padding: 0.7em 1em; font-size: 0.85rem; }

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--beige);
  border-radius: 999px;
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  background: var(--cream);
  border: none;
  width: 34px;
  height: 34px;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--charcoal);
}
.qty-btn:hover { background: var(--beige); }
.qty-input {
  width: 44px;
  text-align: center;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 6px 0;
  background: var(--white);
}
.qty-input:focus { outline: none; }

.added-feedback {
  font-size: 0.8rem;
  color: var(--sage-dark);
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.added-feedback.show { opacity: 1; }

/* ---------- Product modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58, 52, 44, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 300;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  max-width: 780px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  padding: 32px;
  box-shadow: var(--shadow-lift);
  animation: modal-in 0.22s ease both;
}
@keyframes modal-in { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.small-modal { max-width: 420px; text-align: center; }
.policy-modal { max-width: 640px; }
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--white);
  border: 1px solid rgba(58,52,44,0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: var(--charcoal);
}
.modal-close:hover { background: var(--beige); }
.product-modal-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 28px; }
.product-modal-image { border-radius: var(--radius-md); width: 100%; object-fit: cover; aspect-ratio: 1/1; }
.product-modal-price { color: var(--rose); font-weight: 600; font-size: 1.1rem; }
.product-modal-detail { margin-top: 14px; }
.product-modal-detail h4 { font-size: 0.95rem; margin-bottom: 0.3em; }
.product-modal-size { font-size: 0.85rem; color: #8a8175; }
.product-modal-body .qty-control { margin: 16px 0; }
@media (max-width: 640px) {
  .product-modal-grid { grid-template-columns: 1fr; }
  .modal { padding: 24px; }
}

/* ---------- Our Story ---------- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.story-image { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.story-tagline { font-family: var(--font-display); font-size: 1.3rem; color: var(--sage-dark); margin-top: 1.2em; }
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; } }

/* ---------- Why BareBloom ---------- */
.why-section { background: var(--cream); }
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 2.5rem; }
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}
.benefit-card:hover { transform: translateY(-4px); }
.benefit-icon { font-size: 2rem; margin-bottom: 10px; }
.benefit-card h3 { font-size: 1.05rem; }
.benefit-card p { font-size: 0.9rem; color: #5c554a; margin-bottom: 0; }

/* ---------- How it works ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-top: 2.5rem; }
.step-card { text-align: center; padding: 20px; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.step-card p { font-size: 0.92rem; color: #5c554a; }
.how-note { text-align: center; color: var(--brown); font-style: italic; margin-top: 1rem; }

/* ---------- Order section ---------- */
.order-section { background: var(--ivory); }
.order-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 32px; align-items: start; margin-top: 2.5rem; }
@media (max-width: 900px) { .order-layout { grid-template-columns: 1fr; } }

.order-summary { position: sticky; top: calc(var(--header-height) + 20px); }
@media (max-width: 900px) { .order-summary { position: static; } }
.order-empty-state { text-align: center; padding: 20px 0; color: #8a8175; }
.order-lines { display: flex; flex-direction: column; gap: 14px; margin: 1rem 0; }
.order-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(58,52,44,0.12);
}
.order-line-name { font-weight: 600; font-size: 0.92rem; }
.order-line-meta { font-size: 0.8rem; color: #8a8175; }
.order-line-controls { display: flex; align-items: center; gap: 10px; }
.order-line-subtotal { font-weight: 600; font-size: 0.9rem; min-width: 64px; text-align: right; }
.order-line-remove { background: none; border: none; color: var(--rose); cursor: pointer; font-size: 0.8rem; text-decoration: underline; }

.order-totals { margin-top: 1rem; }
.order-totals-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.9rem; }
.order-totals-row dt { color: #6b6357; }
.order-totals-row dd { margin: 0; font-weight: 600; }
.order-total-main { border-top: 1px solid rgba(58,52,44,0.12); margin-top: 6px; padding-top: 12px; font-size: 1.05rem; }
.order-total-main dd { color: var(--rose); }

.order-form h3 { margin-top: 1.6rem; }
.order-form h3:first-child { margin-top: 0; }

.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row.two-col { grid-template-columns: 1fr; } }

.field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); }
.req { color: var(--rose); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.7em 0.9em;
  border: 1.5px solid rgba(58,52,44,0.15);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--charcoal);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sage-dark); }
.field textarea { resize: vertical; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--rose); }
.field-error { color: var(--rose); font-size: 0.8rem; margin: 0; min-height: 1em; }

.checkbox-field { flex-direction: row; align-items: flex-start; gap: 10px; }
.checkbox-field input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--sage-dark); }
.checkbox-field label { font-weight: 400; font-size: 0.9rem; }

.link-button { background: none; border: none; color: var(--sage-dark); text-decoration: underline; cursor: pointer; font-size: inherit; padding: 0; }

.address-fields { border-left: 3px solid var(--sage); padding-left: 16px; margin-bottom: 8px; }

.order-submit-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 1.2rem; }

/* ---------- Confirmation modal ---------- */
.confirmation-modal { text-align: center; max-width: 480px; }
.confirmation-icon { font-size: 2.4rem; margin-bottom: 10px; }
.confirmation-ref { background: var(--cream); border-radius: var(--radius-sm); padding: 10px; font-size: 0.9rem; }

.modal-actions { display: flex; gap: 12px; justify-content: center; margin-top: 1.4rem; }

/* ---------- Contact ---------- */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.social-links { display: flex; gap: 12px; margin-top: 1rem; }
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--sage-dark);
  border: 1px solid rgba(58,52,44,0.1);
  transition: transform 0.2s ease, background 0.2s ease;
}
.social-icon:hover { background: var(--sage-dark); color: var(--white); transform: translateY(-2px); }
.form-success { color: var(--sage-dark); font-weight: 600; margin-top: 10px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: var(--cream); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-logo { height: 30px; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-brand p { color: #c8c2b6; font-size: 0.88rem; }
.site-footer h4 { color: var(--cream); font-size: 0.95rem; margin-bottom: 12px; }
.footer-nav ul, .footer-legal ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-contact a { color: #c8c2b6; font-size: 0.9rem; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--white); }
.footer-legal .link-button { color: #c8c2b6; font-size: 0.9rem; }
.footer-contact p { color: #c8c2b6; font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 24px; text-align: center; font-size: 0.8rem; color: #9a9488; }

/* =========================================================
   CATEGORY LANDING PAGE COMPONENTS
   Reusable across soap.html, hand-cream.html, lip-balm.html.
   Page-level colour accents are set with modifier classes on
   <body>: .category-page--soap / --hand-cream / --lip-balm
   ========================================================= */

/* Category colour modifiers (used sparingly: hero tint + accent) */
.category-page--soap .category-hero { background: linear-gradient(135deg, #FBF6E9 0%, var(--cream) 100%); }
.category-page--hand-cream .category-hero { background: linear-gradient(135deg, var(--ivory) 0%, #EFEAE0 100%); }
.category-page--lip-balm .category-hero { background: linear-gradient(135deg, #F7EDEA 0%, var(--cream) 100%); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding: 16px 0 0; }
.breadcrumbs ol { display: flex; gap: 8px; flex-wrap: wrap; font-size: 0.82rem; color: #8a8175; }
.breadcrumbs a { color: var(--sage-dark); }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #b8ae9e; }

/* ---------- Category hero ---------- */
.category-hero { padding: 56px 0 80px; position: relative; overflow: hidden; }
.category-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.category-hero h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
.category-hero-sub { font-size: 1.05rem; color: #6b6357; max-width: 480px; }
.category-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.4em; }
.category-hero-media { position: relative; }
.category-hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}
.category-hero-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.category-hero-collage img { border-radius: var(--radius-md); box-shadow: var(--shadow-soft); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }
.category-hero-collage img:first-child { grid-row: span 2; aspect-ratio: 1/2.05; }
@media (max-width: 860px) {
  .category-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .category-hero-actions { justify-content: center; }
  .category-hero-sub { margin-left: auto; margin-right: auto; }
}

/* ---------- Category intro ---------- */
.category-intro { padding: 64px 0 24px; text-align: center; }
.category-intro-copy { max-width: 640px; margin: 0 auto; color: #5c554a; }

/* ---------- Landing-page product grid (category collection) ---------- */
.landing-product-grid-section { padding: 24px 0 80px; }

/* ---------- Product spotlight (single hero product, on-page detail) ---------- */
.product-spotlight { padding: 24px 0 80px; }
.spotlight-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.spotlight-image-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spotlight-image { max-width: 100%; border-radius: var(--radius-md); }
.spotlight-body .product-price { font-size: 1.3rem; }
.spotlight-detail { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(58,52,44,0.1); }
.spotlight-detail h3 { font-size: 1rem; }
.spotlight-body .qty-control { margin: 18px 0 14px; }
@media (max-width: 860px) { .spotlight-grid { grid-template-columns: 1fr; } }

/* ---------- Category benefits (icon-based, no emoji) ---------- */
.category-benefits { background: var(--cream); padding: 72px 0; }
.icon-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border: 1.5px solid var(--sage);
  position: relative;
}
.icon-mark::before { content: ""; width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--sage-dark); }
.icon-mark--leaf::before { border-radius: 2px 14px 2px 14px; }
.icon-mark--drop::before { border-radius: 50% 50% 50% 4px; transform: rotate(45deg); }
.icon-mark--sparkle::before { width: 14px; height: 14px; background: var(--sage-dark); border: none; transform: rotate(45deg); border-radius: 2px; }
.icon-mark--home::before { border-radius: 3px; border-top-width: 8px; }

/* ---------- Ingredient highlight cards ---------- */
.ingredient-section { padding: 72px 0; }
.ingredient-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; margin-top: 2.2rem; }
.ingredient-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--beige);
}
.ingredient-card h3 { font-size: 1rem; margin-bottom: 0.4em; }
.ingredient-card p { font-size: 0.88rem; color: #5c554a; margin-bottom: 0; }

/* ---------- Lifestyle / craftsmanship two-column section ---------- */
.lifestyle-section { padding: 72px 0; }
.lifestyle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.lifestyle-grid.reverse .lifestyle-media { order: 2; }
.lifestyle-image { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (max-width: 860px) {
  .lifestyle-grid, .lifestyle-grid.reverse .lifestyle-media { grid-template-columns: 1fr; order: initial; }
}

/* ---------- Directions-for-use compact block ---------- */
.directions-block {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 20px;
}
.directions-block h3 { font-size: 1rem; }

/* ---------- Promotional CTA band ---------- */
.promo-cta-band {
  background: var(--sage-dark);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.promo-cta-band h2, .promo-cta-band p { color: var(--white); }
.promo-cta-band .section-sub.center { color: rgba(255,255,255,0.85); }
.promo-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }
.promo-cta-band .btn-outline { border-color: var(--white); color: var(--white); }
.promo-cta-band .btn-outline:hover { background: var(--white); color: var(--sage-dark); }
.promo-cta-widget { max-width: 360px; margin: 1.6rem auto 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.promo-cta-widget .qty-control { background: var(--white); }

/* ---------- Compact ordering explanation ---------- */
.ordering-note { padding: 48px 0; text-align: center; }
.ordering-note-inner { max-width: 560px; margin: 0 auto; color: #6b6357; }

/* ---------- Order success banner (Add to Order feedback) ---------- */
.order-success-banner {
  margin-top: 14px;
  background: var(--cream);
  border: 1px solid rgba(58,52,44,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  animation: modal-in 0.2s ease both;
}
.order-success-banner p { margin: 0 0 10px; font-weight: 600; color: var(--sage-dark); font-size: 0.9rem; }
.order-success-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.price-note { font-size: 0.75rem; color: #8a8175; font-weight: 500; }

/* ---------- Homepage category navigation cards ---------- */
.category-cards-section { padding: 24px 0 80px; }
.category-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; margin-top: 2rem; }
.category-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(58,52,44,0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.category-card-image-wrap { aspect-ratio: 4/3; overflow: hidden; }
.category-card-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.category-card:hover .category-card-image { transform: scale(1.05); }
.category-card-body { padding: 24px; }
.category-card-body h3 { font-size: 1.15rem; margin-bottom: 0.4em; }
.category-card-body p { font-size: 0.9rem; color: #5c554a; }
.category-card-btn { display: inline-block; margin-top: 10px; pointer-events: none; }

/* ---------- Order page: empty-state browse links ---------- */
.browse-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 14px; }

/* ---------- Scroll reveal ---------- */
.reveal-pending { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.product-card, .benefit-card, .step-card, .story-copy, .story-media, .card { transition: opacity 0.5s ease, transform 0.5s ease; }

/* ---------- Policy modal lists ---------- */
.policy-modal ul { display: flex; flex-direction: column; gap: 10px; padding-left: 18px; list-style: disc; }
