/* =========================================================
   BUILDING DIGITAL EMPIRE LLC — Handmade Store
   style.css
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --cream: #fdfaf5;
  --sand: #f6efe4;
  --sand-2: #efe4d3;
  --line: #e4d8c6;
  --ink: #2e2620;
  --ink-2: #5c5045;
  --ink-3: #8a7c6d;
  --terracotta: #b5533f;
  --terracotta-dk: #973f2e;
  --terracotta-lt: #f3e2dc;
  --clay: #c1743c;
  --sage: #6f8a5b;
  --sage-lt: #eaf0e4;
  --gold: #c99a3f;
  --white: #ffffff;
  --wa: #25d366;
  --wa-dk: #128c7e;
  --danger: #b3261e;
  --danger-bg: #fdecea;

  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 24px;
  --shadow-1: 0 1px 2px rgba(46, 38, 32, .06), 0 4px 14px rgba(46, 38, 32, .06);
  --shadow-2: 0 8px 28px rgba(46, 38, 32, .12);
  --shadow-3: 0 18px 50px rgba(46, 38, 32, .18);
  --ease: cubic-bezier(.22, .61, .36, 1);

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1240px;
  --header-h: 68px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--terracotta); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.2; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: .4rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--tight { padding: clamp(2rem, 4vw, 3rem) 0; }
.section--sand { background: var(--sand); }
.center { text-align: center; }
.muted { color: var(--ink-2); }
.small { font-size: .875rem; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }

.section-head { max-width: 640px; margin: 0 auto 2.5rem; text-align: center; }
.section-head p { color: var(--ink-2); margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: .75rem;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.5rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd);
  border-radius: 999px;
  font-size: .93rem; font-weight: 600; letter-spacing: .01em;
  cursor: pointer; text-decoration: none;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn:active { transform: translateY(0); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .5; pointer-events: none; }
.btn--primary { --btn-bg: var(--terracotta); --btn-bd: var(--terracotta); }
.btn--primary:hover { --btn-bg: var(--terracotta-dk); --btn-bd: var(--terracotta-dk); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--ink); }
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn--wa { --btn-bg: var(--wa-dk); --btn-bd: var(--wa-dk); }
.btn--wa:hover { --btn-bg: #0f7568; --btn-bd: #0f7568; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--sm { padding: .5rem 1rem; font-size: .82rem; }
.btn--block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex: none; fill: currentColor; }

/* ---------- Header ---------- */
.topbar {
  background: var(--ink); color: #f3e9dc;
  font-size: .78rem; letter-spacing: .04em; text-align: center;
  padding: .5rem 1rem;
}
.topbar a { color: #f7c9a8; text-decoration: underline; }

.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(253, 250, 245, .88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 1rem; height: var(--header-h); }

.logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); flex: none; }
.logo:hover { text-decoration: none; }
.logo__mark {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: linear-gradient(140deg, var(--clay), var(--terracotta));
  color: #fff; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.05rem; letter-spacing: -.03em;
  box-shadow: var(--shadow-1);
}
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name { font-family: var(--serif); font-weight: 600; font-size: 1.02rem; }
.logo__sub { font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav__list li { margin: 0; }
.nav__link {
  display: block; padding: .5rem .75rem; border-radius: 999px;
  color: var(--ink-2); font-size: .9rem; font-weight: 500; text-decoration: none;
  transition: background .16s var(--ease), color .16s var(--ease);
}
.nav__link:hover { background: var(--sand-2); color: var(--ink); text-decoration: none; }
.nav__link.is-active { color: var(--ink); font-weight: 700; background: var(--sand-2); }

.header__actions { display: flex; align-items: center; gap: .4rem; flex: none; }
.icon-btn {
  position: relative; width: 42px; height: 42px; display: grid; place-items: center;
  background: transparent; border: 1.5px solid transparent; border-radius: 50%;
  color: var(--ink); cursor: pointer; text-decoration: none;
  transition: background .16s var(--ease), border-color .16s var(--ease);
}
.icon-btn:hover { background: var(--sand-2); text-decoration: none; }
.icon-btn svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.cart-count {
  position: absolute; top: 2px; right: 0;
  min-width: 19px; height: 19px; padding: 0 5px;
  background: var(--terracotta); color: #fff;
  border-radius: 999px; font-size: .68rem; font-weight: 700;
  display: grid; place-items: center; line-height: 1;
  border: 2px solid var(--cream);
}
.cart-count[hidden] { display: none; }
.nav-toggle { display: none; }

/* Mobile nav */
@media (max-width: 980px) {
  .nav-toggle { display: grid; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto; margin: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-2);
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height .3s var(--ease), visibility .3s;
  }
  .nav.is-open { max-height: 78vh; overflow-y: auto; visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 1.25rem 1.25rem; }
  .nav__link { padding: .85rem .5rem; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1rem; }
  .nav__link.is-active { background: transparent; color: var(--terracotta); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--sand) 0%, var(--sand-2) 55%, #e7d7c0 100%);
  border-bottom: 1px solid var(--line);
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.hero::before { width: 460px; height: 460px; top: -180px; right: -120px; background: radial-gradient(circle, rgba(201,154,63,.30), transparent 70%); }
.hero::after { width: 520px; height: 520px; bottom: -260px; left: -160px; background: radial-gradient(circle, rgba(181,83,63,.20), transparent 70%); }
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.hero h1 { margin-bottom: 1rem; }
.hero h1 em { font-style: italic; color: var(--terracotta); }
.hero__lead { font-size: 1.1rem; color: var(--ink-2); max-width: 52ch; margin-bottom: 1.75rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.hero__stats { display: flex; gap: 2.25rem; flex-wrap: wrap; }
.hero__stat strong { display: block; font-family: var(--serif); font-size: 1.65rem; line-height: 1.1; }
.hero__stat span { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.hero__art { position: relative; }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero__tile {
  border-radius: var(--radius-lg); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-2);
  border: 1px solid rgba(255, 255, 255, .7);
}
.hero__tile img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.hero__tile:nth-child(1) { transform: translateY(-14px) rotate(-2deg); }
.hero__tile:nth-child(2) { transform: translateY(14px) rotate(1.5deg); }
.hero__tile:nth-child(3) { transform: translateY(-6px) rotate(2deg); }
.hero__tile:nth-child(4) { transform: translateY(22px) rotate(-1.5deg); }
.hero__badge {
  position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .6rem 1.1rem; box-shadow: var(--shadow-2);
  font-size: .8rem; font-weight: 600; white-space: nowrap;
  display: flex; align-items: center; gap: .5rem;
}
.hero__badge b { color: var(--terracotta); }
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__cta, .hero__stats { justify-content: center; }
  .hero__art { max-width: 460px; margin-inline: auto; }
}

/* ---------- Marquee / trust ---------- */
.trust { border-bottom: 1px solid var(--line); background: var(--white); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.trust__item { background: var(--white); padding: 1.5rem 1.25rem; text-align: center; }
.trust__item svg { width: 26px; height: 26px; margin: 0 auto .6rem; stroke: var(--terracotta); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.trust__item strong { display: block; font-size: .95rem; margin-bottom: .15rem; }
.trust__item span { font-size: .82rem; color: var(--ink-3); }
@media (max-width: 760px) { .trust__grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Category chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.chip {
  padding: .5rem 1.05rem; border-radius: 999px;
  border: 1.5px solid var(--line); background: #fff;
  font-size: .85rem; font-weight: 600; color: var(--ink-2);
  cursor: pointer; text-decoration: none;
  transition: all .16s var(--ease);
}
.chip:hover { border-color: var(--clay); color: var(--ink); text-decoration: none; transform: translateY(-1px); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------- Category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.cat-card {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line); background: #fff;
  text-decoration: none; color: var(--ink); box-shadow: var(--shadow-1);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); text-decoration: none; }
.cat-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.cat-card__body { padding: .9rem 1rem 1.1rem; }
.cat-card__body strong { display: block; font-family: var(--serif); font-size: 1.05rem; }
.cat-card__body span { font-size: .8rem; color: var(--ink-3); }
@media (max-width: 980px) { .cat-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-1);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-3); border-color: #d9c8ae; }
.card__media { position: relative; display: block; overflow: hidden; background: var(--sand); }
.card__media img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__badges { position: absolute; top: .7rem; left: .7rem; display: flex; flex-direction: column; gap: .35rem; align-items: flex-start; z-index: 2; }
.badge {
  padding: .25rem .6rem; border-radius: 999px;
  font-size: .66rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  background: var(--ink); color: #fff; box-shadow: var(--shadow-1);
}
.badge--sale { background: var(--terracotta); }
.badge--new { background: var(--sage); }
.badge--few { background: var(--gold); color: #3a2b12; }
.wish {
  position: absolute; top: .6rem; right: .6rem; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, .92); border: 1px solid var(--line);
  display: grid; place-items: center; cursor: pointer;
  transition: transform .16s var(--ease), background .16s var(--ease);
}
.wish:hover { transform: scale(1.1); }
.wish svg { width: 17px; height: 17px; fill: none; stroke: var(--ink-2); stroke-width: 1.8; }
.wish.is-on svg { fill: var(--terracotta); stroke: var(--terracotta); }
.card__quick {
  position: absolute; left: .7rem; right: .7rem; bottom: .7rem; z-index: 2;
  opacity: 0; transform: translateY(8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.card:hover .card__quick, .card:focus-within .card__quick { opacity: 1; transform: translateY(0); }
@media (hover: none) { .card__quick { opacity: 1; transform: none; } }
.card__body { padding: .95rem 1rem 1.15rem; display: flex; flex-direction: column; flex: 1; }
.card__cat { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .3rem; }
.card__title { font-family: var(--serif); font-size: 1.02rem; line-height: 1.35; margin: 0 0 .4rem; }
.card__title a { color: var(--ink); text-decoration: none; }
.card__title a:hover { color: var(--terracotta); }
.card__rating { display: flex; align-items: center; gap: .35rem; font-size: .78rem; color: var(--ink-3); margin-bottom: .6rem; }
.stars { display: inline-flex; gap: 1px; }
.stars svg { width: 13px; height: 13px; fill: var(--gold); }
.stars svg.is-empty { fill: #ded2be; }
.card__foot { margin-top: auto; display: flex; align-items: baseline; gap: .5rem; }
.price { font-weight: 700; font-size: 1.08rem; }
.price--old { font-weight: 500; font-size: .85rem; color: var(--ink-3); text-decoration: line-through; }
.card__ship { font-size: .72rem; color: var(--sage); font-weight: 600; margin-top: .3rem; }

/* ---------- Shop layout ---------- */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 2.5rem; align-items: start; }
.filters {
  position: sticky; top: calc(var(--header-h) + 1rem);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem;
  box-shadow: var(--shadow-1);
}
.filters h3 { font-size: 1rem; margin-bottom: .75rem; }
.filter-group { padding-bottom: 1.15rem; margin-bottom: 1.15rem; border-bottom: 1px solid var(--line); }
.filter-group:last-of-type { border-bottom: 0; margin-bottom: .5rem; }
.filter-group h4 { font-family: var(--sans); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .6rem; }
.check { display: flex; align-items: center; gap: .55rem; padding: .28rem 0; cursor: pointer; font-size: .88rem; }
.check input { width: 17px; height: 17px; accent-color: var(--terracotta); cursor: pointer; flex: none; }
.check span.count { margin-left: auto; font-size: .74rem; color: var(--ink-3); }
.range-row { display: flex; align-items: center; gap: .5rem; }
.range-row input[type="number"] { width: 100%; }
input[type="range"] { width: 100%; accent-color: var(--terracotta); }

.shop-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: .75rem;
  margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line);
}
.shop-toolbar .count { font-size: .88rem; color: var(--ink-2); margin-right: auto; }
.shop-toolbar .count b { color: var(--ink); }
.filter-open { display: none; }
.active-filters { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.25rem; }
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--terracotta-lt); border: 1px solid #e6c8bf; color: var(--terracotta-dk);
  border-radius: 999px; padding: .25rem .55rem .25rem .75rem; font-size: .78rem; font-weight: 600;
}
.pill button { background: none; border: 0; cursor: pointer; color: inherit; font-size: 1rem; line-height: 1; padding: 0 .15rem; }
@media (max-width: 980px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filter-open { display: inline-flex; }
  .filters {
    position: fixed; z-index: 80; inset: 0 30% 0 0; max-width: 340px;
    border-radius: 0; overflow-y: auto; transform: translateX(-102%);
    transition: transform .3s var(--ease); box-shadow: var(--shadow-3);
  }
  .filters.is-open { transform: none; }
  .filters__close { display: inline-flex !important; }
}
.filters__close { display: none; position: absolute; top: .75rem; right: .75rem; }
.backdrop {
  position: fixed; inset: 0; z-index: 70; background: rgba(46, 38, 32, .45);
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s;
}
.backdrop.is-on { opacity: 1; visibility: visible; }

/* ---------- Forms ---------- */
.field { margin-bottom: 1.05rem; }
.field label, .label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .35rem; }
.req { color: var(--terracotta); }
.input, select.input, textarea.input {
  width: 100%; padding: .72rem .9rem;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.input:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgba(193, 116, 60, .18); }
.input::placeholder { color: #b3a695; }
textarea.input { min-height: 130px; resize: vertical; }
select.input {
  appearance: none; cursor: pointer; padding-right: 2.4rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c5045' stroke-width='2' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right .8rem center; background-size: 16px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-row--3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 640px) { .field-row, .field-row--3 { grid-template-columns: 1fr; } }
.hint { font-size: .76rem; color: var(--ink-3); margin-top: .3rem; }
.error-msg { display: none; font-size: .76rem; color: var(--danger); margin-top: .3rem; font-weight: 600; }
.field.has-error .input { border-color: var(--danger); background: var(--danger-bg); }
.field.has-error .error-msg { display: block; }

.alert { padding: .9rem 1.1rem; border-radius: var(--radius-sm); font-size: .88rem; margin-bottom: 1.25rem; border: 1px solid; }
.alert--err { background: var(--danger-bg); border-color: #f0c2bd; color: #8c1d18; }
.alert--ok { background: var(--sage-lt); border-color: #cfdcc4; color: #3f5a30; }
.alert--info { background: #fdf3e3; border-color: #eddcbd; color: #7a5a20; }

/* ---------- Quantity stepper ---------- */
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; background: #fff; overflow: hidden; }
.qty button {
  width: 38px; height: 38px; border: 0; background: transparent; cursor: pointer;
  font-size: 1.1rem; color: var(--ink-2); display: grid; place-items: center;
  transition: background .15s var(--ease);
}
.qty button:hover { background: var(--sand-2); color: var(--ink); }
.qty button:disabled { opacity: .35; cursor: not-allowed; }
.qty input {
  width: 46px; height: 38px; border: 0; text-align: center;
  font-weight: 700; background: transparent; -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty--sm button { width: 30px; height: 30px; font-size: 1rem; }
.qty--sm input { width: 36px; height: 30px; font-size: .85rem; }

/* ---------- Product page ---------- */
.breadcrumb { font-size: .8rem; color: var(--ink-3); padding: 1rem 0; }
.breadcrumb a { color: var(--ink-2); }
.breadcrumb span { margin: 0 .4rem; opacity: .5; }
.pdp { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.gallery__main {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--sand); box-shadow: var(--shadow-1);
}
.gallery__main img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.gallery__zoom {
  position: absolute; bottom: .8rem; right: .8rem;
  background: rgba(255, 255, 255, .93); border: 1px solid var(--line);
  border-radius: 999px; padding: .35rem .8rem; font-size: .72rem; font-weight: 600; color: var(--ink-2);
  display: flex; align-items: center; gap: .35rem; pointer-events: none;
}
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; margin-top: .7rem; }
.gallery__thumb {
  border: 2px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
  background: var(--sand); cursor: pointer; padding: 0; transition: border-color .16s var(--ease);
}
.gallery__thumb img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.gallery__thumb.is-active { border-color: var(--terracotta); }
.pdp__info { position: sticky; top: calc(var(--header-h) + 1rem); }
.pdp__title { margin-bottom: .5rem; }
.pdp__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-bottom: 1rem; font-size: .84rem; color: var(--ink-3); }
.pdp__price { display: flex; align-items: baseline; gap: .65rem; margin-bottom: .35rem; }
.pdp__price .price { font-size: 2rem; font-family: var(--serif); }
.pdp__save { background: var(--terracotta-lt); color: var(--terracotta-dk); font-size: .74rem; font-weight: 700; padding: .2rem .6rem; border-radius: 999px; }
.pdp__desc { color: var(--ink-2); margin: 1rem 0 1.25rem; }
.opt-group { margin-bottom: 1.1rem; }
.opt-group .label { display: flex; justify-content: space-between; }
.opt-group .label em { font-style: normal; font-weight: 500; color: var(--ink-3); }
.swatches { display: flex; flex-wrap: wrap; gap: .5rem; }
.swatch {
  min-width: 44px; padding: .45rem .85rem;
  border: 1.5px solid var(--line); border-radius: 999px; background: #fff;
  font-size: .84rem; font-weight: 600; cursor: pointer; transition: all .16s var(--ease);
}
.swatch:hover { border-color: var(--clay); }
.swatch.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.pdp__actions { display: flex; gap: .75rem; align-items: center; margin: 1.25rem 0 .85rem; flex-wrap: wrap; }
.pdp__actions .btn { flex: 1; min-width: 180px; }
.stock { display: flex; align-items: center; gap: .45rem; font-size: .84rem; font-weight: 600; margin-bottom: 1rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 3px var(--sage-lt); flex: none; }
.dot--low { background: var(--gold); box-shadow: 0 0 0 3px #f8eed6; }
.dot--out { background: #b9b1a6; box-shadow: 0 0 0 3px #eee9e1; }

.bulk-strip {
  background: linear-gradient(135deg, #eafaf0, #dff5e8);
  border: 1px solid #bfe6cf; border-radius: var(--radius); padding: 1.05rem 1.15rem; margin: 1.25rem 0;
}
.bulk-strip h4 { font-family: var(--sans); font-size: .95rem; margin-bottom: .3rem; display: flex; align-items: center; gap: .45rem; }
.bulk-strip h4 svg { width: 19px; height: 19px; fill: var(--wa-dk); }
.bulk-strip p { font-size: .84rem; color: #38614a; margin-bottom: .75rem; }

.tiers { width: 100%; border-collapse: collapse; margin: .5rem 0 0; font-size: .82rem; }
.tiers th, .tiers td { padding: .45rem .6rem; text-align: left; border-bottom: 1px solid var(--line); }
.tiers th { font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
.tiers tr:last-child td { border-bottom: 0; }
.tiers td b { color: var(--terracotta); }

.accordion { border-top: 1px solid var(--line); margin-top: 1.5rem; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1rem .25rem; background: none; border: 0; cursor: pointer;
  font-family: var(--serif); font-size: 1rem; font-weight: 600; text-align: left; color: var(--ink);
}
.acc-btn::after { content: "+"; font-family: var(--sans); font-size: 1.35rem; color: var(--ink-3); transition: transform .2s var(--ease); flex: none; }
.acc-btn[aria-expanded="true"]::after { content: "−"; }
.acc-panel { display: none; padding: 0 .25rem 1.15rem; font-size: .89rem; color: var(--ink-2); }
.acc-panel.is-open { display: block; }
.spec { display: grid; grid-template-columns: 130px 1fr; gap: .3rem 1rem; font-size: .85rem; }
.spec dt { color: var(--ink-3); }
.spec dd { margin: 0; font-weight: 600; }
@media (max-width: 900px) {
  .pdp { grid-template-columns: 1fr; }
  .pdp__info { position: static; }
}

/* ---------- Reviews ---------- */
.review { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.review:last-child { border-bottom: 0; }
.review__head { display: flex; align-items: center; gap: .65rem; margin-bottom: .4rem; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  background: var(--sand-2); color: var(--ink-2);
  display: grid; place-items: center; font-weight: 700; font-size: .82rem;
}
.review__name { font-weight: 700; font-size: .88rem; }
.review__date { font-size: .74rem; color: var(--ink-3); margin-left: auto; }
.review p { font-size: .88rem; color: var(--ink-2); margin: 0; }
.rating-summary { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.rating-summary .big { font-family: var(--serif); font-size: 2.6rem; line-height: 1; }

/* ---------- Cart ---------- */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
.cart-list { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; box-shadow: var(--shadow-1); }
.cart-row { display: grid; grid-template-columns: 104px 1fr auto; gap: 1rem; padding: 1.1rem; border-bottom: 1px solid var(--line); align-items: start; }
.cart-row:last-child { border-bottom: 0; }
.cart-row__img { border-radius: var(--radius-sm); overflow: hidden; background: var(--sand); border: 1px solid var(--line); }
.cart-row__img img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.cart-row__title { font-family: var(--serif); font-size: 1rem; margin: 0 0 .2rem; }
.cart-row__title a { color: var(--ink); }
.cart-row__opts { font-size: .78rem; color: var(--ink-3); margin-bottom: .55rem; }
.cart-row__ctrl { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.link-btn { background: none; border: 0; padding: 0; color: var(--ink-3); font-size: .78rem; cursor: pointer; text-decoration: underline; }
.link-btn:hover { color: var(--danger); }
.cart-row__price { text-align: right; font-weight: 700; white-space: nowrap; }
.cart-row__each { display: block; font-size: .72rem; color: var(--ink-3); font-weight: 500; }
@media (max-width: 620px) {
  .cart-row { grid-template-columns: 80px 1fr; }
  .cart-row__price { grid-column: 2; text-align: left; }
}

.summary {
  position: sticky; top: calc(var(--header-h) + 1rem);
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 1.35rem; box-shadow: var(--shadow-1);
}
.summary h3 { margin-bottom: 1rem; }
.sum-row { display: flex; justify-content: space-between; gap: 1rem; padding: .4rem 0; font-size: .9rem; }
.sum-row span:last-child { font-weight: 600; }
.sum-row--total { border-top: 1px solid var(--line); margin-top: .6rem; padding-top: .85rem; font-size: 1.1rem; }
.sum-row--total span { font-weight: 700; }
.sum-row--total span:last-child { font-family: var(--serif); font-size: 1.4rem; }
.sum-row .free { color: var(--sage); font-weight: 700; }
.promo { display: flex; gap: .5rem; margin: .9rem 0; }
.promo .input { flex: 1; }
.ship-meter { background: var(--sand); border-radius: var(--radius-sm); padding: .7rem .85rem; margin-bottom: 1rem; font-size: .78rem; }
.meter { height: 6px; background: var(--sand-2); border-radius: 999px; overflow: hidden; margin-top: .45rem; }
.meter i { display: block; height: 100%; background: linear-gradient(90deg, var(--clay), var(--sage)); border-radius: 999px; transition: width .4s var(--ease); }
.pay-icons { display: flex; gap: .35rem; flex-wrap: wrap; justify-content: center; margin-top: .9rem; }
.pay-icons span {
  border: 1px solid var(--line); border-radius: 5px; padding: .2rem .45rem;
  font-size: .6rem; font-weight: 800; letter-spacing: .04em; color: var(--ink-3); background: var(--sand);
}
@media (max-width: 980px) {
  .cart-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
}

.empty { text-align: center; padding: 4rem 1rem; }
.empty svg { width: 76px; height: 76px; margin: 0 auto 1.25rem; stroke: var(--ink-3); fill: none; stroke-width: 1.2; opacity: .55; }

/* ---------- Checkout ---------- */
.steps { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-bottom: 2.25rem; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--ink-3); font-weight: 600; }
.step i {
  width: 26px; height: 26px; border-radius: 50%; background: var(--sand-2); color: var(--ink-3);
  display: grid; place-items: center; font-style: normal; font-size: .74rem; font-weight: 700;
}
.step.is-on { color: var(--ink); }
.step.is-on i { background: var(--terracotta); color: #fff; }
.step.is-done i { background: var(--sage); color: #fff; }
.step-sep { width: 34px; height: 1.5px; background: var(--line); }
.co-block { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 1.35rem; margin-bottom: 1.25rem; box-shadow: var(--shadow-1); }
.co-block h3 { display: flex; align-items: center; gap: .55rem; font-size: 1.1rem; margin-bottom: 1rem; }
.co-block h3 i {
  width: 24px; height: 24px; border-radius: 50%; background: var(--sand-2);
  display: grid; place-items: center; font-style: normal; font-size: .72rem; font-weight: 800; color: var(--ink-2); flex: none;
}
.radio-card { display: flex; gap: .75rem; align-items: flex-start; padding: .85rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; margin-bottom: .6rem; transition: border-color .16s var(--ease), background .16s var(--ease); }
.radio-card:hover { border-color: var(--clay); }
.radio-card:has(input:checked) { border-color: var(--terracotta); background: #fdf6f4; }
.radio-card input { margin-top: .25rem; accent-color: var(--terracotta); width: 17px; height: 17px; flex: none; }
.radio-card strong { display: block; font-size: .9rem; }
.radio-card span { font-size: .78rem; color: var(--ink-3); }
.radio-card .amt { margin-left: auto; font-weight: 700; font-size: .9rem; white-space: nowrap; }
.mini-item { display: flex; gap: .7rem; padding: .55rem 0; border-bottom: 1px solid var(--line); align-items: center; }
.mini-item:last-of-type { border-bottom: 0; }
.mini-item__img { position: relative; width: 52px; flex: none; border-radius: 7px; overflow: hidden; border: 1px solid var(--line); background: var(--sand); }
.mini-item__img img { aspect-ratio: 1; object-fit: cover; }
.mini-item__img b {
  position: absolute; top: -6px; right: -6px; min-width: 19px; height: 19px;
  background: var(--ink); color: #fff; border-radius: 999px; font-size: .66rem;
  display: grid; place-items: center; border: 2px solid #fff;
}
.mini-item__name { font-size: .82rem; font-weight: 600; line-height: 1.3; }
.mini-item__opt { font-size: .7rem; color: var(--ink-3); }
.mini-item__price { margin-left: auto; font-size: .84rem; font-weight: 700; white-space: nowrap; }
.lock-note { display: flex; align-items: center; justify-content: center; gap: .4rem; font-size: .74rem; color: var(--ink-3); margin-top: .75rem; }
.lock-note svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ---------- Confirmation ---------- */
.confirm { max-width: 620px; margin-inline: auto; text-align: center; }
.confirm__check {
  width: 82px; height: 82px; border-radius: 50%; margin: 0 auto 1.5rem;
  background: var(--sage-lt); display: grid; place-items: center;
  animation: pop .5s var(--ease);
}
.confirm__check svg { width: 40px; height: 40px; stroke: var(--sage); fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
@keyframes pop { 0% { transform: scale(.5); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
.order-box { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 1.35rem; text-align: left; margin: 1.75rem 0; box-shadow: var(--shadow-1); }
.order-box__head { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-bottom: .85rem; margin-bottom: .85rem; border-bottom: 1px solid var(--line); }
.order-box__id { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 1.05rem; font-weight: 700; color: var(--terracotta); }

/* ---------- Bulk page ---------- */
.bulk-hero { background: linear-gradient(150deg, #0f3b30, #17614d 60%, #1f7a5e); color: #eafaf0; }
.bulk-hero .eyebrow { color: #8ee6b3; }
.bulk-hero h1 { color: #fff; }
.bulk-hero p { color: #c4e8d5; }
.bulk-hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.bulk-hero .btn--light { --btn-bd: transparent; }
@media (max-width: 900px) { .bulk-hero__inner { grid-template-columns: 1fr; } }
.wa-card {
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-lg); padding: 1.5rem; backdrop-filter: blur(6px);
}
.wa-card ul { list-style: none; padding: 0; margin: 0; }
.wa-card li { display: flex; gap: .65rem; align-items: flex-start; padding: .5rem 0; font-size: .9rem; }
.wa-card li svg { width: 18px; height: 18px; flex: none; margin-top: .22rem; stroke: #8ee6b3; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.step-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.step-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; position: relative; box-shadow: var(--shadow-1); }
.step-card__n {
  width: 34px; height: 34px; border-radius: 50%; background: var(--terracotta); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: .9rem; margin-bottom: .85rem;
}
@media (max-width: 860px) { .step-cards { grid-template-columns: 1fr; } }

.bulk-builder { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; }
@media (max-width: 980px) { .bulk-builder { grid-template-columns: 1fr; } }
.bulk-picker { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-1); overflow: hidden; }
.bulk-picker__head { padding: 1rem 1.15rem; border-bottom: 1px solid var(--line); background: var(--sand); display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }
.bulk-picker__list { max-height: 560px; overflow-y: auto; }
.bulk-item { display: grid; grid-template-columns: 58px 1fr auto; gap: .85rem; align-items: center; padding: .75rem 1.15rem; border-bottom: 1px solid var(--line); }
.bulk-item:last-child { border-bottom: 0; }
.bulk-item img { width: 58px; aspect-ratio: 1; object-fit: cover; border-radius: 7px; border: 1px solid var(--line); background: var(--sand); }
.bulk-item__name { font-size: .88rem; font-weight: 600; line-height: 1.3; }
.bulk-item__meta { font-size: .74rem; color: var(--ink-3); }
.bulk-item.is-picked { background: #fbf6f4; }

/* ---------- FAQ / legal ---------- */
.prose { max-width: 780px; }
.prose h2 { margin-top: 2.25rem; padding-bottom: .4rem; border-bottom: 1px solid var(--line); }
.prose h3 { margin-top: 1.5rem; }
.prose ul { padding-left: 1.15rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: .88rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: .6rem .75rem; text-align: left; }
.prose th { background: var(--sand); font-size: .74rem; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-2); }
.toc { background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.15rem 1.35rem; margin-bottom: 2rem; }
.toc h3 { margin-bottom: .5rem; font-size: .95rem; }
.toc ol { margin: 0; font-size: .88rem; columns: 2; column-gap: 2rem; }
@media (max-width: 620px) { .toc ol { columns: 1; } }
.updated { font-size: .82rem; color: var(--ink-3); }

/* ---------- Page header ---------- */
.page-head { background: var(--sand); border-bottom: 1px solid var(--line); padding: clamp(2rem, 5vw, 3.25rem) 0; }
.page-head h1 { margin-bottom: .5rem; }
.page-head p { color: var(--ink-2); max-width: 62ch; margin-bottom: 0; }

/* ---------- About ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--rev > *:first-child { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--rev > *:first-child { order: 0; } }
.frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-2); background: var(--sand); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 860px) { .value-grid { grid-template-columns: 1fr; } }
.value { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-1); }
.value__ico { width: 44px; height: 44px; border-radius: 12px; background: var(--terracotta-lt); display: grid; place-items: center; margin-bottom: .85rem; }
.value__ico svg { width: 22px; height: 22px; stroke: var(--terracotta); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-band strong { display: block; font-family: var(--serif); font-size: clamp(1.8rem, 3.4vw, 2.5rem); color: var(--terracotta); line-height: 1.1; }
.stat-band span { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
@media (max-width: 760px) { .stat-band { grid-template-columns: 1fr 1fr; gap: 1.75rem; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.35rem; margin-bottom: 1.25rem; box-shadow: var(--shadow-1); }
.info-row { display: flex; gap: .8rem; padding: .7rem 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.info-row:last-child { border-bottom: 0; }
.info-row svg { width: 19px; height: 19px; flex: none; margin-top: .2rem; stroke: var(--terracotta); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.info-row strong { display: block; font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
.info-row a, .info-row address { font-style: normal; font-size: .92rem; color: var(--ink); }

/* ---------- Newsletter ---------- */
.news { background: var(--ink); color: #f3e9dc; }
.news h2 { color: #fff; }
.news p { color: #c9bcab; }
.news__form { display: flex; gap: .6rem; max-width: 440px; margin: 1.25rem auto 0; }
.news__form .input { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .25); color: #fff; }
.news__form .input::placeholder { color: #a89c8c; }
.news__form .input:focus { border-color: var(--clay); box-shadow: 0 0 0 3px rgba(193, 116, 60, .3); }
@media (max-width: 520px) { .news__form { flex-direction: column; } }

/* ---------- Footer ---------- */
.footer { background: #251e19; color: #b9ab9b; font-size: .88rem; padding: 3.5rem 0 0; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 1rem; }
.footer a { color: #b9ab9b; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer__grid ul { list-style: none; padding: 0; margin: 0; }
.footer__grid li { margin-bottom: .5rem; }
.footer .logo__name, .footer .logo { color: #fff; }
.footer .logo__sub { color: #8d8073; }
.footer__about { max-width: 34ch; margin-top: 1rem; line-height: 1.7; }
.footer__contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer__contact svg { width: 16px; height: 16px; flex: none; margin-top: .28rem; stroke: #c1743c; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.socials { display: flex; gap: .5rem; margin-top: 1.15rem; }
.socials a {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255, 255, 255, .07);
  display: grid; place-items: center; transition: background .16s var(--ease);
}
.socials a:hover { background: var(--terracotta); }
.socials svg { width: 16px; height: 16px; fill: #d9cdbf; }
.socials a:hover svg { fill: #fff; }
.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .09); padding: 1.35rem 0;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .8rem;
}
.footer__bar nav { display: flex; gap: 1.1rem; flex-wrap: wrap; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } .footer__bar { justify-content: center; text-align: center; } }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 65;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--wa); color: #fff; padding: .7rem 1.05rem;
  border-radius: 999px; font-size: .86rem; font-weight: 700; text-decoration: none;
  box-shadow: 0 8px 26px rgba(37, 211, 102, .45);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); text-decoration: none; color: #fff; box-shadow: 0 12px 34px rgba(37, 211, 102, .55); }
.wa-float svg { width: 21px; height: 21px; fill: currentColor; flex: none; }
.wa-float__txt { display: inline; }
@media (max-width: 560px) { .wa-float__txt { display: none; } .wa-float { padding: .85rem; right: 14px; bottom: 14px; } }

/* ---------- Toast ---------- */
.toast-wrap { position: fixed; right: 18px; bottom: 84px; z-index: 90; display: flex; flex-direction: column; gap: .5rem; align-items: flex-end; pointer-events: none; }
.toast {
  display: flex; align-items: center; gap: .65rem;
  background: var(--ink); color: #fff; border-radius: var(--radius-sm);
  padding: .75rem 1rem; font-size: .86rem; font-weight: 600;
  box-shadow: var(--shadow-3); max-width: 320px;
  animation: slideIn .3s var(--ease);
}
.toast.is-out { animation: slideOut .3s var(--ease) forwards; }
.toast img { width: 34px; height: 34px; border-radius: 6px; object-fit: cover; flex: none; }
.toast svg { width: 18px; height: 18px; stroke: var(--wa); fill: none; stroke-width: 2.6; flex: none; }
@keyframes slideIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: none; } }
@keyframes slideOut { to { opacity: 0; transform: translateX(30px); } }
@media (max-width: 560px) { .toast-wrap { left: 14px; right: 14px; bottom: 78px; align-items: stretch; } .toast { max-width: none; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Pagination ---------- */
.pager { display: flex; justify-content: center; gap: .4rem; margin-top: 2.5rem; }
.pager button {
  min-width: 38px; height: 38px; padding: 0 .65rem;
  border: 1.5px solid var(--line); background: #fff; border-radius: var(--radius-sm);
  font-size: .86rem; font-weight: 600; cursor: pointer; transition: all .16s var(--ease);
}
.pager button:hover:not(:disabled) { border-color: var(--clay); }
.pager button.is-on { background: var(--ink); border-color: var(--ink); color: #fff; }
.pager button:disabled { opacity: .4; cursor: not-allowed; }

/* ---------- Print ---------- */
@media print {
  .header, .footer, .wa-float, .toast-wrap, .topbar, .news { display: none !important; }
  body { background: #fff; }
  .co-block, .order-box, .summary { box-shadow: none; }
}
