/* ============================================================
   Eclat Mindset Lab — storefront stylesheet
   Digital mindset & personal-growth ebooks · olive-green palette
   ============================================================ */

:root {
  --bg: #ffffff;
  --ink: #2d3b2a;            /* dark green — primary text / buttons */
  --muted: #6b6b6b;
  --line: #e3e3e3;
  --field: #f3f3f3;
  --accent: #606C38;         /* olive green — accent pop / topbar */
  --dark: #2d3b2a;           /* hero / dark blocks */
  --radius: 6px;
  --maxw: 1200px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.15; font-weight: 700; color: #111; }
.footer h1, .footer h2, .footer h3, .footer h4 { color: #fff; }

p { margin: 0 0 1em; }

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

.section { padding: 56px 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: opacity .15s ease, background .15s ease;
}
.btn:hover { opacity: .85; }

.btn--ghost {
  background: #fff;
  color: var(--ink);
}
.btn--ghost:hover { background: #f6f6f6; opacity: 1; }

.btn--block { display: block; width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: #606C38;
  color: #fff;
  font-size: .8rem;
  text-align: center;
  padding: 8px 12px;
}
.topbar a { color: #fff; }

/* ---------- Header / nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 12px;
}
.nav__left { display: flex; align-items: center; }
.brand { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.brand svg { width: 34px; height: 34px; }
.brand__logo { height: 80px; width: auto; }
.brand__name { font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; }

.nav__links {
  display: flex;
  gap: 22px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .9rem;
}
.nav__links a { padding: 4px 0; border-bottom: 2px solid transparent; }
.nav__links a:hover,
.nav__links a.is-active { border-bottom-color: var(--ink); }

.nav__icons {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--ink);
  position: relative;
  display: inline-flex;
}
.icon-btn svg { width: 22px; height: 22px; }

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--ink);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.cart-count[data-empty="true"] { display: none; }

.nav__toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero__text { padding: 70px 48px; align-self: center; }
.hero__text h1 { font-size: 2.4rem; margin-bottom: 14px; color: #fff; }
.hero__text p { color: #d6d6d6; max-width: 420px; margin-bottom: 26px; }
.hero__img { min-height: 320px; background-size: cover; background-position: center; }

/* ---------- Section header row ---------- */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}
.section-head h2 { font-size: 1.6rem; margin: 0; }

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.product-card__media {
  background: #eef0f7;
  aspect-ratio: 1 / 0.82;
  display: block;
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__body { padding: 14px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.product-card__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 14px;
}
.product-card__title { font-size: .92rem; font-weight: 600; color: #111; }
.product-card__price { font-size: .92rem; font-weight: 600; white-space: nowrap; }
.product-card .btn { margin-top: auto; }

/* ---------- Feature image+text rows ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 40px 0;
}
.feature-row--reverse .feature-row__media { order: 2; }
.feature-row__media img { border-radius: var(--radius); width: 100%; height: 100%; object-fit: cover; }
.feature-row h2 { font-size: 1.5rem; }
.feature-row p { color: #333; max-width: 460px; }

/* ---------- Forms ---------- */
.field { margin-bottom: 14px; }
.field input,
.field textarea {
  width: 100%;
  background: var(--field);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
}
.field input:focus,
.field textarea:focus { outline: none; border-color: #bdbdbd; background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.field--error input,
.field--error textarea { border-color: #d23b3b; background: #fff7f7; }
.field__error { color: #d23b3b; font-size: .78rem; margin-top: 5px; display: none; }
.field--error .field__error { display: block; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .field--full { grid-column: 1 / -1; }

.form-note { color: var(--muted); font-size: .88rem; }
.form-success {
  background: #effaf0;
  border: 1px solid #bfe6c4;
  color: #1d6b2c;
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  display: none;
}
.form-success.is-visible { display: block; }

/* ---------- Cart drawer ---------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
  z-index: 90;
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 390px;
  max-width: 90vw;
  background: #fff;
  z-index: 100;
  transform: translateX(100%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, .12);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.drawer__head h3 { margin: 0; font-size: 1.1rem; }
.drawer__close { background: none; border: none; font-size: 1.4rem; cursor: pointer; line-height: 1; }
.drawer__items { flex: 1; overflow-y: auto; padding: 8px 22px; }
.drawer__empty { color: var(--muted); text-align: center; padding: 40px 0; }
.drawer__foot { border-top: 1px solid var(--line); padding: 20px 22px; }
.drawer__total { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 14px; }
.drawer__agree {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: .76rem;
  line-height: 1.45;
  color: #444;
  margin-bottom: 14px;
  cursor: pointer;
}
.drawer__agree input { margin-top: 2px; flex: none; width: 15px; height: 15px; cursor: pointer; accent-color: var(--ink); }
.drawer__agree a { text-decoration: underline; }
.drawer__agree--error { color: #d23b3b; }
.drawer__agree--error a { color: #d23b3b; }
.drawer__agree--error input { outline: 2px solid #d23b3b; outline-offset: 1px; }
#drawer-checkout.is-disabled { opacity: .45; }

.line-item { display: flex; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.line-item__img { width: 56px; height: 56px; border-radius: 4px; object-fit: cover; background: #eef0f7; flex: none; }
.line-item__info { flex: 1; min-width: 0; }
.line-item__title { font-size: .85rem; font-weight: 600; margin-bottom: 4px; }
.line-item__price { font-size: .85rem; color: var(--muted); }
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-top: 6px;
}
.qty button { background: none; border: none; width: 26px; height: 26px; cursor: pointer; font-size: 1rem; }
.qty span { min-width: 24px; text-align: center; font-size: .85rem; }
.line-item__remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: .76rem; text-decoration: underline; align-self: flex-start; }

/* ---------- Footer ---------- */
.features {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 40px 0;
}
.features__grid h4 { font-size: .95rem; margin-bottom: 6px; }
.features__grid p { font-size: .85rem; color: var(--muted); margin: 0; }

.footer { padding: 48px 0 0; background: var(--ink); color: #fff; }
.footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
}
.footer__cols h4 { font-size: 1rem; margin-bottom: 14px; }
.footer__cols a { color: #fff; font-size: .88rem; }
.footer__cols a:hover { text-decoration: underline; }
.footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: .88rem; color: #fff; }
.footer__contact li { display: flex; gap: 8px; }
.footer__blurb { color: #fff; font-size: .85rem; max-width: 240px; }

.footer__disclaimer-inline {
  font-size: .68rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  margin-top: 10px;
  max-width: 240px;
}

.footer__bar {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  flex-wrap: wrap;
}
.pay-icons { display: flex; gap: 8px; align-items: center; }
.pay-icons svg { height: 24px; width: auto; }
.footer__legal { font-size: .8rem; color: rgba(255,255,255,.8); }
.footer__legal a { color: rgba(255,255,255,.8); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--field); padding: 48px 0; text-align: center; }
.page-hero h1 { font-size: 2rem; }
.page-hero p { color: var(--muted); max-width: 600px; margin: 0 auto; }

.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.3rem; margin-top: 1.6em; }
.prose h3 { font-size: 1.05rem; margin-top: 1.4em; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 6px; }
.prose .muted-date { color: var(--muted); font-size: .85rem; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.faq__q::after { content: "+"; font-size: 1.3rem; color: var(--muted); transition: transform .2s; }
.faq__item.is-open .faq__q::after { content: "\2212"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq__a p { padding-bottom: 20px; color: #333; margin: 0; }

/* ---------- About ---------- */
.about-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 24px; }
.about-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.about-card h3 { font-size: 1.05rem; }
.about-card p { color: #333; margin: 0; font-size: .92rem; }

/* ============================================================
   Shopify-style checkout
   ============================================================ */
:root { --co-blue: #2557d6; --co-link: #1a5fb4; --co-border: #d9d9d9; }

body.co-body { background: #fff; }

/* Checkout header */
.co-header { border-bottom: 1px solid var(--line); background: #fff; }
.co-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.co-brand { display: flex; align-items: center; gap: 12px; }
.co-brand svg { width: 40px; height: 40px; flex: none; }
.co-brand__logo { height: 44px; width: auto; flex: none; }
.co-brand__name { font-weight: 400; font-size: .72rem; color: var(--muted); }
.co-brand__billed { font-size: .72rem; font-weight: 700; color: #222; margin-top: 2px; }
.co-cart { color: var(--co-blue); display: inline-flex; }
.co-cart svg { width: 26px; height: 26px; }

/* Two-column layout */
.co-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 78px); }
.co-left { display: flex; justify-content: flex-end; padding: 40px 40px 80px; }
.co-right { background: #fafafa; border-left: 1px solid var(--line); padding: 40px 40px 80px; display: flex; justify-content: flex-start; }
.co-left__inner { width: 100%; max-width: 480px; }
.co-right__inner { width: 100%; max-width: 420px; position: sticky; top: 40px; align-self: flex-start; }

.co-left h2 { font-size: 1.25rem; margin: 0; }
.co-row-between { display: flex; align-items: center; justify-content: space-between; }
.co-link { color: var(--co-link); font-size: .9rem; }
.co-link:hover { text-decoration: underline; }
.co-section { margin-bottom: 28px; }
.co-subtle { color: var(--muted); font-size: .85rem; margin: 4px 0 14px; }

/* Express checkout + OR */
.co-express { display: grid; gap: 10px; margin-bottom: 22px; }
.co-wallet {
  height: 48px; border: none; border-radius: 6px; cursor: pointer;
  font-weight: 700; font-size: .95rem; display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.co-wallet--shop { background: #5a31f4; }
.co-wallet--paypal { background: #ffc439; color: #003087; }
.co-wallet--gpay { background: #000; }
.co-or { display: flex; align-items: center; gap: 16px; color: var(--muted); font-size: .85rem; margin: 22px 0; }
.co-or::before, .co-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* Inputs */
.co-input, .co-select {
  width: 100%; height: 52px; border: 1px solid var(--co-border); border-radius: 6px;
  padding: 0 14px; font: inherit; color: var(--ink); background: #fff;
}
.co-input::placeholder { color: #8a8a8a; }
.co-input:focus, .co-select:focus { outline: none; border-color: var(--co-blue); box-shadow: 0 0 0 1px var(--co-blue); }
.co-field { margin-bottom: 12px; position: relative; }
.co-field__icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: #9a9a9a; pointer-events: none; }
.co-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.co-grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.co-select-wrap { position: relative; }
.co-select-wrap::after {
  content: ""; position: absolute; right: 16px; top: 50%; width: 8px; height: 8px;
  border-right: 2px solid #777; border-bottom: 2px solid #777; transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.co-select { appearance: none; -webkit-appearance: none; }
.co-floating-label { font-size: .7rem; color: var(--muted); position: absolute; top: 7px; left: 15px; }
.co-field--labeled .co-select, .co-field--labeled .co-input { padding-top: 16px; }

/* Card box (Stripe split fields) */
.co-card {
  border: 1px solid var(--co-blue); border-radius: 8px; overflow: hidden;
  box-shadow: 0 0 0 1px var(--co-blue);
}
.co-card__head {
  background: #eef2fd; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid #d6def8;
}
.co-card__head strong { font-size: .92rem; }
.co-card__brands { display: flex; gap: 6px; align-items: center; }
.co-card__brands svg { height: 22px; width: auto; }
.co-card__body { background: #f7f7f7; padding: 14px 16px; display: grid; gap: 10px; }
.co-stripe-field {
  background: #fff; border: 1px solid var(--co-border); border-radius: 6px; padding: 15px 14px;
  position: relative;
}
.co-stripe-field.StripeElement--focus { border-color: var(--co-blue); box-shadow: 0 0 0 1px var(--co-blue); }
.co-stripe-field .co-field__icon { z-index: 2; }
.co-stripe-field .StripeElement { width: 100%; }
.co-field-label { display: block; font-size: .9rem; font-weight: 500; margin-bottom: 6px; }
#express-checkout-element { margin-bottom: 4px; }
.co-card__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.co-pay-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.co-pay-head h2 { margin: 0; }
.co-card-brands { display: flex; gap: 6px; align-items: center; }
.co-card-brands svg { height: 24px; width: auto; }
.co-paybox {
  border: 1px solid var(--co-border);
  border-radius: 8px;
  background: #fff;
  padding: 18px 16px;
  margin-top: 6px;
}
.co-secured {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: .8rem;
  color: var(--muted);
  margin-top: 12px;
}
.co-secured svg { width: 14px; height: 14px; }
.co-secured strong { color: #635bff; font-weight: 700; }
#payment-element { margin-top: 0; }
#card-errors { color: #d23b3b; font-size: .82rem; margin-top: 8px; min-height: 1em; }
.stripe-note {
  font-size: .78rem; color: var(--muted); background: #fffceb; border: 1px solid #f0e4a8;
  border-radius: 6px; padding: 10px 12px; margin-top: 12px;
}

/* Pay button + footer */
.co-pay {
  width: 100%; height: 54px; background: var(--co-blue); color: #fff; border: none; border-radius: 6px;
  font-size: 1.05rem; font-weight: 700; cursor: pointer; margin-top: 8px;
}
.co-pay:hover { filter: brightness(.96); }
.co-pay:disabled { opacity: .7; cursor: default; }
.co-footer { border-top: 1px solid var(--line); margin-top: 36px; padding-top: 18px; display: flex; gap: 22px; flex-wrap: wrap; }
.co-footer a { color: var(--co-link); font-size: .85rem; }
.co-footer a:hover { text-decoration: underline; }

/* Order summary */
.summary-item { display: flex; gap: 14px; padding: 0 0 18px; align-items: center; }
.summary-item__img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; background: #eef0f7; position: relative; flex: none; border: 1px solid var(--line); }
.summary-item__qty {
  position: absolute; top: -9px; right: -9px;
  background: #4a4a4a; color: #fff; border-radius: 50%;
  width: 22px; height: 22px; font-size: .72rem; display: flex; align-items: center; justify-content: center; font-weight: 600;
}
.summary-item__title { flex: 1; font-size: .9rem; font-weight: 500; }
.summary-item__price { font-size: .9rem; font-weight: 600; }
.summary-totals { padding-top: 6px; }
.summary-totals__row { display: flex; justify-content: space-between; align-items: baseline; font-size: .9rem; }
.summary-totals__row--grand { font-size: 1.5rem; font-weight: 700; }
.summary-totals__row--grand .cur { font-size: .8rem; font-weight: 400; color: var(--muted); margin-right: 8px; }

.checkout-empty { text-align: center; padding: 80px 20px; }

@media (max-width: 800px) {
  .co-grid { grid-template-columns: 1fr; }
  .co-right { border-left: none; border-bottom: 1px solid var(--line); order: -1; padding: 24px; }
  .co-left { justify-content: center; padding: 28px 24px 60px; }
  .co-right__inner { position: static; max-width: 520px; margin: 0 auto; }
}

/* ---------- Product detail page ---------- */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.product-detail__media {
  background: #eef0f7;
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.gallery__main { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery__thumbs {
  display: flex;
  gap: 8px;
  padding: 10px;
  background: #e6e9f5;
}
.gallery__thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: .75;
  transition: opacity .15s, border-color .15s;
}
.gallery__thumb:hover { opacity: 1; }
.gallery__thumb--active { border-color: var(--ink); opacity: 1; }
.product-detail__info h1 { font-size: 1.9rem; margin-bottom: 10px; }
.product-detail__price { font-size: 1.4rem; font-weight: 700; margin-bottom: 18px; }
.product-detail__desc { color: #333; }
.product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tag {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--field);
  color: #555;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.buy-row { display: flex; gap: 12px; align-items: stretch; margin: 22px 0; }
.qty--lg { border: 1px solid var(--line); border-radius: var(--radius); }
.qty--lg button { width: 44px; height: 100%; font-size: 1.2rem; background: none; border: none; cursor: pointer; }
.qty--lg span { min-width: 40px; text-align: center; display: inline-flex; align-items: center; justify-content: center; height: 100%; }
.buy-row .btn { flex: 1; }
.product-meta { border-top: 1px solid var(--line); margin-top: 24px; padding-top: 22px; }
.product-meta h3 { font-size: 1rem; margin-bottom: 8px; }
.product-meta ul { margin: 0 0 20px; padding-left: 18px; color: #333; }
.product-meta li { margin-bottom: 6px; }
.product-meta .product-detail__desc { margin-bottom: 22px; }
.product-terms { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 20px; }
.product-terms p { font-size: .82rem; color: var(--muted); margin-bottom: 10px; line-height: 1.6; }
.product-terms a { color: var(--co-link, #1a5fb4); text-decoration: underline; }
.product-delivery { font-size: .85rem; color: var(--muted); display: flex; align-items: center; gap: 8px; margin-top: 4px; }

@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; gap: 28px; }
  .product-detail__media { position: static; }
}

/* ---------- Floating widget badge (decorative) ---------- */
.widget-badge {
  position: fixed;
  right: 18px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
  z-index: 60;
  font-size: 1.2rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 8px 0;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { width: 100%; text-align: center; }
  .nav__links a { display: block; padding: 12px 0; }
  .nav__toggle { display: inline-flex; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__text { padding: 44px 24px; }
  .hero__img { min-height: 240px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; gap: 24px; }
  .feature-row--reverse .feature-row__media { order: 0; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1fr; }
  .checkout { grid-template-columns: 1fr; }
  .checkout__aside { border-left: none; border-top: 1px solid var(--line); order: -1; }
  .checkout__main { padding: 32px 24px; }
  .checkout__aside { padding: 32px 24px; }
  .about-products { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .product-grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero__text h1 { font-size: 1.9rem; }
  .section-head { flex-direction: column; align-items: flex-start; }
}
