/* ============================================================
   SYRAFresh — Stylesheet
   ------------------------------------------------------------
   Structure:
     1. Design tokens (colours, type, spacing)  <-- edit here to rebrand
     2. Reset & base
     3. Layout helpers
     4. Buttons & forms
     5. Header / nav
     6. Footer
     7. Components (cards, sections, badges…)
     8. Page-specific blocks
     9. Responsive
   ============================================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand colours — change these to restyle the whole site */
  --cream: #fdf9f1;
  --cream-2: #f6efe1;
  --cream-3: #efe5d2;
  --green-900: #122c22;
  --green-800: #17392c;
  --green-700: #1f4d3a;
  --green-600: #276048;
  --green-500: #33755a;
  --gold: #bf8a2c;
  --gold-light: #e3b862;
  --gold-soft: #f5e3c0;
  --ink: #292623;
  --ink-soft: #5e5850;
  --ink-faint: #8b8377;
  --line: #e7dcc8;
  --white: #ffffff;
  --danger: #b3452f;
  --success: #2f7d52;

  /* Typography */
  --font-head: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;

  /* Radii & shadows */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(41, 38, 35, 0.05),
    0 2px 8px rgba(41, 38, 35, 0.04);
  --shadow-md: 0 4px 12px rgba(41, 38, 35, 0.06),
    0 12px 32px rgba(41, 38, 35, 0.07);
  --shadow-lg: 0 10px 24px rgba(41, 38, 35, 0.08),
    0 24px 60px rgba(41, 38, 35, 0.1);

  /* Layout */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- 2. RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--green-700);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover {
  color: var(--gold);
}
ul,
ol {
  list-style: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
input,
textarea,
select {
  font: inherit;
  color: inherit;
}
:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--green-900);
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.3rem, 5.2vw, 4rem);
}
h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}
h4 {
  font-size: 1.05rem;
}
p {
  text-wrap: pretty;
}

/* ---------- 3. LAYOUT ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}
.wrap-narrow {
  max-width: var(--wrap-narrow);
}
.section {
  padding-block: clamp(56px, 8vw, 104px);
}
.section--tight {
  padding-block: clamp(40px, 5vw, 64px);
}
.section--cream2 {
  background: var(--cream-2);
}
.section--green {
  background: var(--green-800);
  color: var(--cream-2);
}
.section--green h2,
.section--green h3 {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  opacity: 0.6;
}
.section--green .eyebrow {
  color: var(--gold-light);
}
.section--green .eyebrow::before {
  background: var(--gold-light);
}

.lede {
  font-size: 1.09rem;
  color: var(--ink-soft);
  max-width: 62ch;
}
.section--green .lede {
  color: rgba(253, 249, 241, 0.78);
}
.section-head {
  margin-bottom: clamp(32px, 4vw, 52px);
}
.section-head--center {
  text-align: center;
}
.section-head--center .lede {
  margin-inline: auto;
}
.section-head--center .eyebrow::before {
  display: none;
}

.grid {
  display: grid;
  gap: 26px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ---------- 4. BUTTONS & FORMS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
    background 0.18s var(--ease), color 0.18s var(--ease),
    border-color 0.18s var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  background: var(--green-700);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--green-600);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--gold {
  background: var(--gold);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--gold:hover {
  background: #a9761f;
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  border-color: var(--green-700);
  color: var(--green-700);
}
.btn--ghost:hover {
  background: var(--green-700);
  color: var(--cream);
}
.btn--light {
  background: var(--cream);
  color: var(--green-800);
}
.btn--light:hover {
  background: var(--white);
  color: var(--green-900);
}
.btn--outline-light {
  border-color: rgba(253, 249, 241, 0.45);
  color: var(--cream);
}
.btn--outline-light:hover {
  background: var(--cream);
  color: var(--green-800);
}
.btn--sm {
  padding: 9px 18px;
  font-size: 0.86rem;
}
.btn--block {
  width: 100%;
}
.btn--wa {
  background: #25d366;
  color: #fff;
}
.btn--wa:hover {
  background: #1eb455;
  color: #fff;
}
.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}

.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.field .req {
  color: var(--danger);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 15px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3.5px rgba(51, 117, 90, 0.13);
}
.field textarea {
  min-height: 128px;
  resize: vertical;
}
.field-hint {
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin-top: 6px;
}
.form-note {
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-top: 14px;
}
.form-msg {
  padding: 13px 16px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  margin-bottom: 18px;
  display: none;
}
.form-msg--ok {
  display: block;
  background: #e7f3ec;
  color: var(--success);
  border: 1px solid #bfe0cd;
}
.form-msg--err {
  display: block;
  background: #fbeae6;
  color: var(--danger);
  border: 1px solid #f0cabf;
}

/* ---------- 5. HEADER / NAV ---------- */
.launch-banner {
  background: var(--green-900);
  color: var(--gold-soft);
  font-size: 0.83rem;
  text-align: center;
  padding: 9px 24px;
  letter-spacing: 0.01em;
}
.launch-banner strong {
  color: var(--gold-light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(253, 249, 241, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.brand:hover {
  color: inherit;
}
.brand__mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.brand__text {
  font-family: var(--font-head);
  font-size: 1.36rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--green-800);
  line-height: 1;
}
.brand__text em {
  font-style: normal;
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__links a {
  padding: 9px 14px;
  border-radius: var(--r-pill);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.nav__links a:hover {
  background: var(--cream-3);
  color: var(--green-800);
}
.nav__links a[aria-current="page"] {
  color: var(--green-800);
  font-weight: 600;
  background: var(--cream-3);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 17px 10px 15px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-800);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.cart-btn:hover {
  border-color: var(--green-500);
  box-shadow: var(--shadow-sm);
  color: var(--green-800);
}
.cart-btn__count {
  min-width: 21px;
  height: 21px;
  padding-inline: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  background: var(--gold);
  color: #fff;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1;
}
.cart-btn__count[data-empty="true"] {
  background: var(--cream-3);
  color: var(--ink-faint);
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--line);
  background: var(--white);
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 1.8px;
  background: var(--green-800);
  position: relative;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.8px;
  background: var(--green-800);
  transition: transform 0.2s var(--ease);
}
.nav__toggle span::before {
  top: -6px;
}
.nav__toggle span::after {
  top: 6px;
}

/* ---------- 6. FOOTER ---------- */
.site-footer {
  background: var(--green-900);
  color: rgba(253, 249, 241, 0.72);
  padding-top: clamp(48px, 6vw, 76px);
  font-size: 0.93rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px 32px;
  padding-bottom: 48px;
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  font-weight: 600;
}
.site-footer a {
  color: rgba(253, 249, 241, 0.72);
}
.site-footer a:hover {
  color: var(--gold-light);
}
.footer__links li + li {
  margin-top: 9px;
}
.footer__brand .brand__text {
  color: var(--white);
}
.footer__brand p {
  margin-top: 14px;
  max-width: 34ch;
  line-height: 1.6;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(253, 249, 241, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease);
}
.footer__social a:hover {
  background: rgba(253, 249, 241, 0.1);
  border-color: var(--gold-light);
}
.footer__bottom {
  border-top: 1px solid rgba(253, 249, 241, 0.13);
  padding-block: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(253, 249, 241, 0.5);
}

/* ---------- 7. COMPONENTS ---------- */

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(165deg, var(--cream-2) 0%, var(--cream) 55%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -14%;
  top: -30%;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(227, 184, 98, 0.24),
    rgba(227, 184, 98, 0) 68%
  );
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-block: clamp(56px, 8vw, 100px);
}
.hero h1 {
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.hero__trust svg {
  color: var(--green-500);
  flex-shrink: 0;
}

.hero__art {
  position: relative;
  aspect-ratio: 1 / 1.04;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream-3);
}
.hero__art img,
.hero__art svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(253, 249, 241, 0.94);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 15px 18px;
  box-shadow: var(--shadow-md);
}
.hero__badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.03rem;
  color: var(--green-800);
}
.hero__badge span {
  font-size: 0.83rem;
  color: var(--ink-soft);
}

/* Marquee strip */
.strip {
  background: var(--green-800);
  color: var(--gold-soft);
  padding-block: 14px;
  overflow: hidden;
}
.strip__track {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  animation: strip 34s linear infinite;
  width: max-content;
}
.strip__track span {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 44px;
}
.strip__track span::after {
  content: "✦";
  color: var(--gold);
  font-size: 0.7rem;
}
@keyframes strip {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .strip__track {
    animation: none;
  }
}

/* Category card */
.cat-card {
  position: relative;
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cat-card__img {
  aspect-ratio: 4 / 3;
  background: var(--cream-3);
  overflow: hidden;
}
.cat-card__img img,
.cat-card__img svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.cat-card:hover .cat-card__img img,
.cat-card:hover .cat-card__img svg {
  transform: scale(1.05);
}
.cat-card__body {
  padding: 18px 20px 22px;
}
.cat-card__body h3 {
  font-size: 1.12rem;
  margin-bottom: 5px;
}
.cat-card__body p {
  font-size: 0.87rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.cat-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

/* Product card */
.p-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease),
    border-color 0.24s var(--ease);
}
.p-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--cream-3);
}
.p-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--cream-2);
  overflow: hidden;
  display: block;
}
.p-card__media img,
.p-card__media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.p-card:hover .p-card__media img,
.p-card:hover .p-card__media svg {
  transform: scale(1.06);
}
.p-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: var(--green-700);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.p-card__tag--gold {
  background: var(--gold);
}
.p-card__tag--soon {
  background: var(--ink-faint);
}
.p-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.p-card__cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.p-card__name {
  font-family: var(--font-head);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--green-900);
}
.p-card__name a {
  color: inherit;
}
.p-card__name a:hover {
  color: var(--green-600);
}
.p-card__desc {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-card__foot {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 11px;
}
.p-card__foot .price {
  white-space: normal;
}
.price {
  font-family: var(--font-head);
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--green-800);
  white-space: nowrap;
}
.price small {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-faint);
}
.price del {
  font-size: 0.85rem;
  color: var(--ink-faint);
  font-weight: 400;
  margin-left: 6px;
}

.add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: var(--green-700);
  color: var(--cream);
  font-size: 0.84rem;
  font-weight: 600;
  transition: background 0.18s var(--ease), transform 0.18s var(--ease);
  white-space: nowrap;
}
.add-btn:hover {
  background: var(--green-600);
  transform: translateY(-1px);
}
.add-btn[data-added="true"] {
  background: var(--success);
}

/* Filter bar */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 16px 0 30px;
}
.chip {
  padding: 8px 17px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.18s var(--ease);
}
.chip:hover {
  border-color: var(--green-500);
  color: var(--green-700);
}
.chip[aria-pressed="true"] {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--cream);
  font-weight: 600;
}
.filters__search {
  margin-left: auto;
  position: relative;
  min-width: 230px;
}
.filters__search input {
  width: 100%;
  padding: 9px 15px 9px 38px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 0.88rem;
}
.filters__search input:focus {
  outline: none;
  border-color: var(--green-500);
}
.filters__search svg {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-faint);
}
.results-count {
  font-size: 0.86rem;
  color: var(--ink-faint);
  margin-bottom: 20px;
}

/* Feature / value blocks */
.feature {
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.feature__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-pill);
  background: var(--gold-soft);
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature h3 {
  font-size: 1.08rem;
  margin-bottom: 7px;
}
.feature p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.58;
}
.section--green .feature {
  background: rgba(253, 249, 241, 0.06);
  border-color: rgba(253, 249, 241, 0.14);
  box-shadow: none;
}
.section--green .feature p {
  color: rgba(253, 249, 241, 0.75);
}
.section--green .feature__icon {
  background: rgba(227, 184, 98, 0.18);
  color: var(--gold-light);
}

/* Steps */
.steps {
  counter-reset: s;
}
.step {
  position: relative;
  padding-left: 62px;
}
.step::before {
  counter-increment: s;
  content: counter(s, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -2px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
}
.step h3 {
  font-size: 1.06rem;
  margin-bottom: 6px;
}
.step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Quote / testimonial */
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.quote p {
  font-family: var(--font-head);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--green-900);
  font-style: italic;
}
.quote footer {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--ink-faint);
  font-weight: 500;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  border-radius: var(--r-lg);
  padding: clamp(34px, 5vw, 56px);
  color: var(--cream);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(253, 249, 241, 0.8);
  max-width: 52ch;
  margin: 0 auto 26px;
}
.cta-band__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(40px, 6vw, 70px);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.breadcrumb a {
  color: var(--ink-soft);
}
.breadcrumb span {
  opacity: 0.5;
}

/* Notice / empty state */
.notice {
  background: var(--gold-soft);
  border: 1px solid #e8d3a8;
  border-radius: var(--r-md);
  padding: 18px 22px;
  font-size: 0.92rem;
  color: #6d4c14;
}
.notice strong {
  color: #5a3d0c;
}
.empty {
  text-align: center;
  padding: 60px 24px;
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--r-md);
}
.empty h3 {
  margin-bottom: 8px;
}
.empty p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  margin-bottom: 20px;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 140%);
  z-index: 200;
  background: var(--green-900);
  color: var(--cream);
  padding: 13px 22px;
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transition: transform 0.34s var(--ease);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100vw - 40px);
}
.toast[data-show="true"] {
  transform: translate(-50%, 0);
}
.toast svg {
  color: var(--gold-light);
  flex-shrink: 0;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: var(--r-pill);
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s var(--ease);
}
.wa-float:hover {
  transform: scale(1.07);
  color: #fff;
}

/* ---------- 8. PAGE-SPECIFIC ---------- */

/* Product detail */
.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
.pdp__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream-2);
  border: 1px solid var(--line);
  aspect-ratio: 1;
  position: relative;
}
.pdp__media img,
.pdp__media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-block: 8px 12px;
}
.pdp__price {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: 6px;
}
.pdp__buy {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-block: 26px;
  padding-block: 26px;
  border-block: 1px solid var(--line);
}
.pdp__specs {
  margin-top: 26px;
}
.pdp__specs h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}
.spec-list li {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.9rem;
}
.spec-list dt,
.spec-list b {
  min-width: 130px;
  color: var(--green-800);
  font-weight: 600;
}
.spec-list span {
  color: var(--ink-soft);
}

/* Quantity stepper */
.qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--white);
  overflow: hidden;
}
.qty button {
  width: 38px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  font-size: 1.15rem;
  transition: background 0.15s var(--ease);
}
.qty button:hover {
  background: var(--cream-2);
}
.qty input {
  width: 44px;
  height: 42px;
  text-align: center;
  border: 0;
  background: transparent;
  font-weight: 600;
  font-size: 0.95rem;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Cart page */
.cart-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 34px;
  align-items: start;
}
.cart-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cart-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 18px;
  padding: 18px;
  align-items: center;
}
.cart-row + .cart-row {
  border-top: 1px solid var(--line);
}
.cart-row__img {
  width: 92px;
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--cream-2);
}
.cart-row__img img,
.cart-row__img svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-row__name {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 3px;
}
.cart-row__meta {
  font-size: 0.83rem;
  color: var(--ink-faint);
  margin-bottom: 10px;
}
.cart-row__ctrl {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.link-remove {
  font-size: 0.83rem;
  color: var(--ink-faint);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.link-remove:hover {
  color: var(--danger);
}
.cart-row__total {
  text-align: right;
}

.summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--nav-h) + 18px);
}
.summary h3 {
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.summary__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.summary__row--total {
  border-top: 1.5px solid var(--line);
  margin-top: 10px;
  padding-top: 16px;
  font-family: var(--font-head);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--green-900);
}
.summary .btn {
  margin-top: 20px;
}

/* Contact split */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(30px, 5vw, 56px);
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.contact-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
}
.contact-list li + li {
  border-top: 1px solid var(--line);
}
.contact-list svg {
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-list strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-list a,
.contact-list span {
  font-size: 0.98rem;
  color: var(--green-800);
  font-weight: 500;
}

/* About */
.about-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--cream-3);
  aspect-ratio: 4/3;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.prose > * + * {
  margin-top: 16px;
}
.prose h2 {
  margin-top: 34px;
}
.prose h3 {
  margin-top: 26px;
}
.prose p {
  color: var(--ink-soft);
}
.prose ul {
  list-style: none;
}
.prose ul li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  margin-top: 9px;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Stat row */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  color: var(--gold);
  line-height: 1;
}
.stat span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.section--green .stat span {
  color: rgba(253, 249, 241, 0.72);
}

/* FAQ */
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 4px 20px;
  box-shadow: var(--shadow-sm);
}
.faq details + details {
  margin-top: 12px;
}
.faq summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  color: var(--green-800);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-size: 0.98rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}
.faq details[open] summary::after {
  content: "–";
}
.faq details p {
  padding-bottom: 18px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ---- Journal cards ---- */
.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
  overflow: hidden;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.post-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 24px 26px;
  height: 100%;
  color: inherit;
}
.post-card__body:hover {
  color: inherit;
}
.post-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.post-card h3 {
  font-size: 1.2rem;
  line-height: 1.24;
}
.post-card__body:hover h3 {
  color: var(--green-600);
}
.post-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.post-card__meta {
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.8rem;
  color: var(--ink-faint);
}

/* ---- Article (journal post) ---- */
.article {
  max-width: 68ch;
  margin-inline: auto;
}
.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  font-size: 0.84rem;
  color: var(--ink-faint);
  margin-top: 16px;
}
.article__meta .dot::before {
  content: "·";
  margin-right: 12px;
}
.article__body {
  font-size: 1.06rem;
  line-height: 1.75;
}
.article__body > * + * {
  margin-top: 20px;
}
.article__body h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin-top: 40px;
}
.article__body h3 {
  margin-top: 30px;
}
.article__body p {
  color: var(--ink-soft);
}
.article__body strong {
  color: var(--green-800);
}
.article__body ul {
  list-style: none;
}
.article__body ul li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  margin-top: 11px;
}
.article__body ul li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.article__body blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 22px;
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-style: italic;
  color: var(--green-900);
}
.article__end {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

/* ---- Waiting-list signup ---- */
.signup {
  max-width: 520px;
}
.signup__row {
  display: flex;
  gap: 10px;
}
.signup__row input {
  flex: 1;
  min-width: 0;
  padding: 13px 17px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 0.95rem;
}
.signup__row input:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3.5px rgba(51, 117, 90, 0.13);
}
.signup__note {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-top: 11px;
}
.cta-band .signup {
  margin-inline: auto;
}
.cta-band .signup__row input {
  border-color: transparent;
}
.cta-band .signup__note {
  color: rgba(253, 249, 241, 0.65);
}
.cta-band .form-msg {
  text-align: left;
}

/* Utility */
.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 12px;
}
.mt-2 {
  margin-top: 24px;
}
.mt-3 {
  margin-top: 36px;
}
.center {
  text-align: center;
}
.hide {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- 9. RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero__inner,
  .split,
  .pdp,
  .contact-grid,
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .hero__art {
    max-width: 460px;
    margin-inline: auto;
    aspect-ratio: 5/4;
  }
  .hero__inner {
    gap: 38px;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .summary {
    position: static;
  }
}

@media (max-width: 820px) {
  .nav__toggle {
    display: inline-flex;
  }
  .nav__links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 18px;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav__links[data-open="true"] {
    display: flex;
  }
  .nav__links a {
    padding: 12px 14px;
  }
  .nav {
    position: relative;
  }
  .cart-btn span.cart-btn__label {
    display: none;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .filters__search {
    margin-left: 0;
    width: 100%;
  }
  .cart-row {
    grid-template-columns: 74px 1fr;
    row-gap: 12px;
  }
  .cart-row__img {
    width: 74px;
  }
  .cart-row__total {
    grid-column: 2;
    text-align: left;
  }
  .stats {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .step {
    padding-left: 50px;
  }
  .hero__badge {
    display: none;
  }
  .signup__row {
    flex-direction: column;
  }
  .signup__row input,
  .signup__row .btn {
    width: 100%;
  }
}

@media (max-width: 460px) {
  /* keep two products per row on phones — a single column feels endless */
  .p-card__body {
    padding: 13px 14px 15px;
    gap: 5px;
  }
  .p-card__name {
    font-size: 0.96rem;
  }
  .p-card__desc {
    font-size: 0.79rem;
  }
  .p-card__cat {
    font-size: 0.64rem;
    letter-spacing: 0.07em;
  }
  .price {
    font-size: 1rem;
  }
  .price small,
  .price del {
    display: block;
    margin-left: 0;
  }
  .add-btn {
    font-size: 0.8rem;
    padding: 9px 10px;
  }
  .p-card__tag {
    font-size: 0.6rem;
    padding: 4px 8px;
    top: 9px;
    left: 9px;
  }
  .grid {
    gap: 14px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wrap {
    padding-inline: 18px;
  }
}

@media print {
  .site-header,
  .site-footer,
  .wa-float,
  .launch-banner {
    display: none;
  }
}
