/* POLLY — editorial "paper gallery" theme (light, ink, bordeaux accent) */
:root {
  --paper: #fbf0ef;
  --paper-2: #f7e7e7;
  --panel: #ffffff;
  --img-bg: #f6e3e5;
  --ink: #4a373b;
  --ink-soft: #6f565b;
  --muted: #a08a8e;
  --line: #f1dcde;
  --line-strong: #e6c7cc;
  --accent: #d56e88;
  --accent-soft: #eca3b4;
  --accent-deep: #bd5572;
  --serif: "Georgia", "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --radius: 12px;
  --maxw: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--paper);
  /* soft garden wash — a faint rose glow + a soft sage-green, very gentle */
  background-image:
    radial-gradient(58% 48% at 90% 0%, rgba(213, 110, 136, 0.1), transparent 70%),
    radial-gradient(64% 56% at 0% 100%, rgba(150, 178, 130, 0.32), transparent 72%),
    radial-gradient(58% 48% at 100% 84%, rgba(150, 178, 130, 0.22), transparent 70%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.hidden { display: none !important; }

/* Small caps label helper */
.kicker, .card-cat, .checkout-section, .size-label, .banner-count, .verse-src,
.benefit span, .quick-cat, .sidenav-title, .nav-cat-title {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.menu-btn {
  justify-self: start;
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 3px 0;
}
.menu-btn span { height: 1.5px; width: 100%; background: var(--ink); transition: 0.2s; }
.menu-btn:hover span { background: var(--accent); }
.wordmark {
  justify-self: center;
  font-family: var(--serif);
  font-size: 1.65rem;
  letter-spacing: 0.42em;
  padding-left: 0.42em;
  color: var(--ink);
  font-weight: 400;
}
.wordmark-bfly { display: none; } /* drop the mark from the header for a clean wordmark */
.cart-btn {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.cart-btn:hover { color: var(--accent); }
.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 600;
}

/* ===== Side menu ===== */
.sidenav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 340px;
  max-width: 86vw;
  background: var(--paper);
  border-right: 1px solid var(--line);
  z-index: 110;
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 26px 30px;
}
.sidenav.hidden { transform: translateX(-104%); }
.sidenav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.sidenav-title { font-size: 0.72rem; color: var(--muted); }
.nav-welcome { display: flex; flex-direction: column; gap: 2px; margin-bottom: 24px; }
.nav-welcome span { font-family: var(--serif); font-size: 1.5rem; color: var(--accent); line-height: 1.2; }
.nav-welcome small { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.nav-list { list-style: none; margin: 0; padding: 0; }
.nav-list li { margin-bottom: 2px; }
.nav-link {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  padding: 7px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--accent); padding-left: 8px; }
.nav-categories { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.nav-cat-title { font-size: 0.66rem; color: var(--muted); margin-bottom: 10px; }
.nav-cat {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 0.95rem;
  padding: 6px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.nav-cat:hover, .nav-cat.active { color: var(--accent); padding-left: 6px; }
.nav-info { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.nav-info a { color: var(--muted); font-size: 0.85rem; }
.nav-info a:hover { color: var(--accent); }
.sidenav-foot { margin-top: auto; color: var(--muted); font-family: var(--serif); letter-spacing: 0.3em; font-size: 0.9rem; }
.sidenav-foot .bfly { display: none; }

/* ===== Hero (editorial, left-aligned) ===== */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 28px 64px;
  border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: 760px; }
.hero-kicker { font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin: 0 0 22px; }
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub { color: var(--ink-soft); max-width: 440px; margin: 26px 0 30px; font-size: 1.05rem; }
.hero-cta {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.hero-cta:hover { color: var(--accent); border-color: var(--accent); }
.hero-scroll { display: none; }

/* ===== Benefits strip ===== */
.benefits {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px 24px;
}
.benefit { display: flex; align-items: center; gap: 12px; color: var(--ink); flex: 1 1 200px; }
.benefit svg { width: 24px; height: 24px; flex: none; color: var(--accent); }
.benefit svg.bfly { fill: var(--accent); }
.benefit span { display: flex; flex-direction: column; line-height: 1.3; font-size: 0.64rem; color: var(--muted); }
.benefit strong { color: var(--ink); font-size: 0.9rem; font-weight: 600; letter-spacing: 0; text-transform: none; }
a.benefit:hover strong { color: var(--accent); }

/* ===== Shop layout ===== */
.container { max-width: var(--maxw); margin: 0 auto; padding: 48px 28px 90px; }
.store-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 36px; flex-wrap: wrap; }
.store-head-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.store-head h2 { font-family: var(--serif); font-weight: 400; font-size: 2rem; margin: 0; }
.back-link {
  font: inherit;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  padding: 7px 13px;
  border-radius: var(--radius);
  cursor: pointer;
}
.back-link:hover { color: var(--accent); border-color: var(--accent); }
.search {
  font: inherit;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  min-width: 220px;
  background: var(--panel);
  color: var(--ink);
}
.search::placeholder { color: var(--muted); }
.search:focus { outline: none; border-color: var(--ink); }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 44px 30px; }

/* ===== Category banners (image + name below) ===== */
.grid-banners {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: 1fr; /* share the row equally — all fit on one line, no scroll */
  gap: 26px;
  overflow-x: visible;
}
.banner { display: block; width: 100%; text-align: left; padding: 0; background: none; border: none; cursor: pointer; color: var(--ink); }
.banner-media { display: block; overflow: hidden; background: var(--img-bg); aspect-ratio: 4 / 5; border-radius: var(--radius); box-shadow: 0 4px 14px rgba(189, 85, 114, 0.07); transition: box-shadow 0.3s; }
.banner-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
.banner:hover .banner-media img { transform: scale(1.05); }
.banner:hover .banner-media { box-shadow: 0 14px 34px rgba(189, 85, 114, 0.2); }
.banner-info { padding-top: 14px; display: flex; flex-direction: column; gap: 4px; }
.banner-count { font-size: 0.66rem; color: var(--muted); }
.banner-name { font-family: var(--serif); font-size: 1.5rem; line-height: 1.1; }
.banner-cta { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-top: 4px; }

/* ===== Product cards ===== */
.card { display: flex; flex-direction: column; }
.card-open { cursor: pointer; }
.card-media { position: relative; overflow: hidden; background: var(--img-bg); aspect-ratio: 3 / 4; border-radius: var(--radius); box-shadow: 0 4px 14px rgba(189, 85, 114, 0.07); transition: box-shadow 0.3s; }
.card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
.card-open:hover .card-img { transform: scale(1.05); }
.card-open:hover .card-media { box-shadow: 0 14px 34px rgba(189, 85, 114, 0.2); }
.card-img.placeholder { display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }
.card.is-sold-out .card-img { opacity: 0.55; }
.sold-badge { position: absolute; top: 12px; left: 12px; background: var(--paper); color: var(--ink); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 9px; border: 1px solid var(--line-strong); }
.card-cat { margin-top: 14px; font-size: 0.64rem; color: var(--muted); }
.card-name { margin: 5px 0 0; font-family: var(--serif); font-size: 1.16rem; font-weight: 400; }
.card-prices { margin-top: 6px; display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }
.price-final { font-weight: 500; }
.price-final.on-sale { color: var(--accent); }
.price-was { color: var(--muted); text-decoration: line-through; font-size: 0.88rem; }
.sale-tag { font-size: 0.66rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent); padding: 1px 6px; }
.card-add { margin-top: 16px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 24px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.08s;
}
.btn:hover { background: var(--accent); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(213, 110, 136, 0.3); }
.btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; box-shadow: 0 10px 26px rgba(189, 85, 114, 0.4); }
.btn-primary:disabled { opacity: 0.45; cursor: default; }
.btn-block { display: block; width: 100%; }
.icon-btn { border: none; background: none; color: var(--muted); font-size: 1.5rem; line-height: 1; cursor: pointer; }
.icon-btn:hover { color: var(--ink); }

/* ===== Scroll reveal (subtle) ===== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Quick view ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(28, 27, 24, 0.4); z-index: 60; }
.quick {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 70;
  width: min(900px, calc(100vw - 28px));
  max-height: 92vh;
  overflow-y: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(74, 55, 59, 0.28);
  animation: quickIn 0.25s ease;
}
.quick.hidden { display: none !important; }
@keyframes quickIn { from { opacity: 0; transform: translate(-50%, -47%); } }
.quick-close { position: absolute; top: 12px; right: 14px; z-index: 2; border: none; background: var(--paper); color: var(--ink); width: 34px; height: 34px; font-size: 1.4rem; line-height: 1; cursor: pointer; }
.quick-grid { display: grid; grid-template-columns: 1fr 1fr; }
.quick-media { position: relative; background: var(--img-bg); }
.quick-img { width: 100%; height: 100%; max-height: 92vh; object-fit: cover; display: block; }
.quick-thumbs { position: absolute; left: 0; right: 0; bottom: 0; display: flex; gap: 8px; padding: 10px; overflow-x: auto; background: linear-gradient(to top, rgba(28,27,24,0.35), transparent); }
.quick-thumb { flex: none; width: 46px; height: 58px; padding: 0; border: 1px solid rgba(255,255,255,0.7); overflow: hidden; cursor: pointer; background: none; opacity: 0.8; }
.quick-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.quick-thumb.active, .quick-thumb:hover { opacity: 1; border-color: var(--accent); }
.quick-info { padding: 40px 36px; display: flex; flex-direction: column; }
.quick-cat { font-size: 0.64rem; color: var(--accent); }
.quick-name { font-family: var(--serif); font-weight: 400; font-size: 1.8rem; margin: 8px 0 12px; }
.quick-prices { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.quick-prices .price-final { font-size: 1.3rem; }
.quick-desc { color: var(--ink-soft); font-size: 0.95rem; margin: 0 0 26px; }

.size-block { margin-bottom: 22px; }
.size-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.size-label { font-size: 0.66rem; }
.size-guide-link { font: inherit; font-size: 0.78rem; background: none; border: none; color: var(--muted); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.size-guide-link:hover { color: var(--accent); }
.size-grid { display: flex; flex-wrap: wrap; gap: 9px; }
.size-chip {
  min-width: 50px;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--ink);
  cursor: pointer;
  transition: 0.15s;
}
.size-chip:hover { border-color: var(--ink); }
.size-chip.selected { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.size-chip.soldout { cursor: not-allowed; color: var(--muted); border-color: var(--line); text-decoration: line-through; background: transparent; }
.size-chip.soldout:hover { border-color: var(--line); }
.size-hint { color: var(--accent); font-size: 0.82rem; margin: 10px 0 0; }
.size-guide { margin-top: 14px; border: 1px solid var(--line); padding: 14px 16px; background: var(--panel); animation: fadeDown 0.18s ease; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-4px); } }
.size-guide table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.size-guide th, .size-guide td { text-align: left; padding: 6px 8px; border-bottom: 1px solid var(--line); }
.size-guide th { color: var(--muted); font-weight: 600; text-transform: uppercase; font-size: 0.68rem; letter-spacing: 0.06em; }
.size-guide tr:last-child td { border-bottom: none; }
.stock-hint { font-size: 0.84rem; color: var(--muted); margin: 0 0 14px; }
.stock-hint.low { color: var(--accent); font-weight: 600; }
.stock-hint.sold { color: var(--accent); font-weight: 600; }

.quick-actions { display: flex; gap: 14px; align-items: stretch; margin-top: auto; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); height: 48px; }
.qty button { width: 42px; height: 46px; border: none; background: none; cursor: pointer; font-size: 1.1rem; color: var(--ink); }
.qty button[disabled] { color: var(--line-strong); cursor: default; }
.qty span { min-width: 30px; text-align: center; }
.btn-add { flex: 1; height: 48px; }

.notify-wrap { margin-top: auto; border-top: 1px solid var(--line); padding-top: 18px; }
.notify-label { font-size: 0.82rem; color: var(--accent); margin: 0 0 10px; }
.notify-form { display: flex; gap: 10px; }
.notify-form input { flex: 1; font: inherit; padding: 12px 14px; border: 1px solid var(--line-strong); background: var(--panel); color: var(--ink); }
.notify-form input:focus { outline: none; border-color: var(--ink); }
.notify-msg { font-size: 0.85rem; color: var(--accent); margin: 10px 0 0; }

/* Complete the look */
.quick-related { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); }
.quick-related-h { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.quick-related-row { display: flex; gap: 12px; }
.rel-item { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 5px; padding: 0; background: none; border: none; cursor: pointer; text-align: left; color: var(--ink); }
.rel-item img, .rel-ph { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; background: var(--img-bg); display: block; }
.rel-item:hover img { opacity: 0.85; }
.rel-name { font-size: 0.78rem; line-height: 1.3; }
.rel-price { font-size: 0.78rem; color: var(--accent); }

@media (max-width: 680px) {
  .quick-grid { grid-template-columns: 1fr; }
  .quick-media { max-height: 42vh; overflow: hidden; }
  .quick-info { padding: 26px 22px 30px; }
}

/* ===== Cart drawer ===== */
.drawer-overlay { position: fixed; inset: 0; background: rgba(28, 27, 24, 0.4); z-index: 100; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 420px;
  max-width: 100vw;
  background: var(--paper);
  border-left: 1px solid var(--line);
  z-index: 110;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.drawer.hidden { transform: translateX(104%); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px; border-bottom: 1px solid var(--line); }
.drawer-head h2 { margin: 0; font-family: var(--serif); font-size: 1.2rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 6px 22px; }
.cart-empty { flex: 1; display: flex; align-items: center; justify-content: center; color: var(--muted); }
.cart-row { display: flex; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-row img, .cart-row .ph { width: 62px; height: 80px; object-fit: cover; background: var(--img-bg); border: 1px solid var(--line); flex: none; }
.cart-row-info { flex: 1; min-width: 0; }
.cart-row-name { font-size: 0.95rem; }
.cart-row-size { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.cart-row-price { color: var(--accent); font-size: 0.86rem; margin-top: 2px; }
.cart-row .qty { margin-top: 8px; height: 32px; }
.cart-row .qty button { width: 30px; height: 30px; font-size: 1rem; }
.cart-row .qty span { min-width: 26px; font-size: 0.85rem; }
.cart-row-remove { border: none; background: none; color: var(--muted); cursor: pointer; font-size: 0.76rem; text-decoration: underline; align-self: flex-start; }
.cart-row-remove:hover { color: var(--accent); }
.cart-foot { padding: 18px 22px 22px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 14px; }
.cart-total strong { font-family: var(--serif); font-size: 1.2rem; }

/* ===== Checkout ===== */
.checkout, .order-done { padding: 22px; border-top: 1px solid var(--line); overflow-y: auto; }
.checkout h3, .order-done h3 { margin: 0 0 14px; font-family: var(--serif); font-weight: 400; font-size: 1.2rem; }
.checkout-section { font-size: 0.66rem; color: var(--accent); margin: 8px 0 12px; padding-bottom: 6px; border-bottom: 1px solid var(--line); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field > span { font-size: 0.8rem; color: var(--muted); }
.field input, .field textarea { font: inherit; padding: 11px 13px; border: 1px solid var(--line-strong); background: var(--panel); color: var(--ink); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.row { display: flex; gap: 14px; }
.row .field { flex: 1; min-width: 0; }
.field input { width: 100%; max-width: 100%; }
.checkout-actions { display: flex; gap: 10px; }
.checkout-actions .btn { flex: 1; }
.form-error { color: var(--accent-deep); background: #fbe4ea; border: 1px solid #f3c4d1; padding: 10px 12px; font-size: 0.85rem; margin: 0 0 12px; border-radius: var(--radius); }
.secure-note { font-size: 0.76rem; color: var(--muted); text-align: center; margin: 12px 0 0; }
.cod-banner { display: flex; flex-direction: column; gap: 4px; background: var(--panel); border: 1px solid var(--line-strong); padding: 12px 14px; font-size: 0.88rem; }
.cod-banner strong { color: var(--ink); }
.cod-banner span { color: var(--muted); }
.pay-methods { display: flex; gap: 10px; margin-bottom: 14px; }
.pay-method { flex: 1; display: flex; align-items: center; gap: 9px; padding: 11px 12px; border: 1px solid var(--line-strong); cursor: pointer; transition: 0.2s; }
.pay-method:hover { border-color: var(--ink); }
.pay-method:has(input:checked) { border-color: var(--ink); background: var(--panel); }
.pay-method input { accent-color: var(--accent); flex: none; }
.pay-method span { display: flex; flex-direction: column; line-height: 1.25; font-size: 0.74rem; color: var(--muted); }
.pay-method strong { color: var(--ink); font-size: 0.9rem; }
.pay-panel { margin-bottom: 4px; }
.promo { display: flex; gap: 10px; }
.promo input { flex: 1; font: inherit; padding: 11px 13px; border: 1px solid var(--line-strong); background: var(--panel); color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em; }
.promo input:focus { outline: none; border-color: var(--ink); }
.promo .btn { white-space: nowrap; }
.promo-msg { font-size: 0.85rem; margin: 10px 0 0; }
.promo-msg.ok { color: var(--accent); }
.promo-msg.err { color: var(--accent-deep); }
.order-done p { color: var(--ink-soft); margin-top: 0; }

/* Loading skeleton */
.skeleton { aspect-ratio: 4 / 5; background: linear-gradient(100deg, var(--img-bg) 30%, var(--paper-2) 50%, var(--img-bg) 70%); background-size: 200% 100%; animation: shimmer 1.3s ease-in-out infinite; }
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--line); padding: 56px 28px 64px; text-align: center; color: var(--muted); font-size: 0.85rem; background: var(--paper-2); }
.footer .bfly-wrap, .footer .bfly { display: none; }
.footer-verse { display: flex; flex-direction: column; align-items: center; gap: 5px; margin: 0 0 22px; }
.verse-he { font-family: var(--serif); font-size: 1.5rem; color: var(--accent); }
.verse-en { font-family: var(--serif); font-style: italic; color: var(--ink); font-size: 0.98rem; }
.verse-src { font-size: 0.66rem; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; margin: 16px 0 12px; }
.footer-links a { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.04em; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 0.76rem; color: var(--muted); margin: 0; }
.empty { text-align: center; color: var(--muted); padding: 80px 20px; }

/* ===== Live flower petals drifting in the background ===== */
.intro, .butterflies { display: none !important; }
.petals { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.pf { position: absolute; left: 0; top: 0; animation: pdrift linear infinite; will-change: transform; }
.pf-i { animation: psway ease-in-out infinite; }
.pf svg { display: block; width: 100%; height: 100%; animation: pspin linear infinite; }
@keyframes pdrift { from { transform: translateX(-12vw); } to { transform: translateX(112vw); } }
@keyframes psway { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }
@keyframes pspin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
/* ===== Soft greenery — leafy sprigs in the page corners ===== */
.greenery { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.sprig { position: absolute; bottom: -26px; width: 260px; height: 260px; color: #a6ba93; opacity: 0.52; }
.sprig-l { left: -42px; }
.sprig-r { right: -42px; transform: scaleX(-1); opacity: 0.44; }
.sprig-top { top: -40px; bottom: auto; right: -46px; width: 220px; height: 220px; transform: scaleY(-1) scaleX(-1); opacity: 0.34; }
.sprig svg { width: 100%; height: 100%; display: block; }

/* keep content above the petals + greenery */
.hero, .benefits, .container, .footer { position: relative; z-index: 1; }

@media (max-width: 760px) {
  .grid-banners { grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: 1fr 1fr; overflow-x: visible; }
}
@media (max-width: 720px) { .sprig { width: 165px; height: 165px; opacity: 0.42; } .sprig-top { display: none; } }
@media (max-width: 520px) { .drawer { width: 100%; } .hero { padding: 56px 22px 48px; } }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } .pf, .pf-i, .pf svg { animation: none !important; } }
