/* =====================================================
   Design tokens
   ===================================================== */
:root {
  --bg: #f4faf6;
  --bg-2: #e9f7ef;
  --ink: #0d2b1e;
  --ink-soft: #4a6a5a;
  --green-900: #0b3d2e;
  --green-700: #157a4a;
  --green-600: #1f9d5f;
  --green-400: #4fd28e;
  --green-200: #b9f0d3;
  --glass: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-strong: rgba(255, 255, 255, 0.75);
  --shadow: 0 10px 40px rgba(11, 61, 46, 0.10);
  --radius: 20px;
  --font-head: 'Fraunces', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.55;
  position: relative;
  overflow-x: hidden;
}

/* ---------- Animated ambient background ---------- */
.ambient { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.orb-1 {
  width: 480px; height: 480px; top: -160px; right: -120px;
  background: radial-gradient(circle at 30% 30%, var(--green-200), transparent 70%);
  animation: float-a 22s ease-in-out infinite;
}
.orb-2 {
  width: 380px; height: 380px; top: 40%; left: -160px;
  background: radial-gradient(circle at 60% 40%, var(--bg-2), transparent 70%);
  animation: float-b 26s ease-in-out infinite;
}
.orb-3 {
  width: 320px; height: 320px; bottom: -140px; right: 10%;
  background: radial-gradient(circle at 40% 60%, var(--green-400), transparent 70%);
  opacity: 0.25;
  animation: float-a 30s ease-in-out infinite reverse;
}
@keyframes float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.08); }
}
@keyframes float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.05); }
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Glass card ---------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 30%);
  pointer-events: none;
}
.glass-interactive {
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.glass-interactive:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11, 61, 46, 0.16);
  border-color: rgba(79, 210, 142, 0.5);
}

/* one orchestrated entrance, staggered by child order — not on every card forever */
.reveal { animation: rise 0.7s cubic-bezier(.2,.8,.2,1) both; }
.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.15s; }
.reveal-3 { animation-delay: 0.25s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.brand {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-900);
  text-decoration: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  font-family: var(--font-body);
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: #fff;
  box-shadow: 0 8px 24px rgba(21, 122, 74, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(21, 122, 74, 0.42); }
.btn-ghost {
  background: var(--glass-strong);
  color: var(--green-900);
  border: 1px solid var(--glass-border);
}
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  color: var(--green-700);
  font-weight: 600;
  font-size: 0.92rem;
  margin: 0 0 14px;
}
h1.display {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 20px;
  color: var(--green-900);
  font-weight: 600;
  max-width: 14ch;
}
.lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.price-note { color: var(--ink-soft); font-size: 0.9rem; }

.hero-card {
  padding: 32px;
}
.hero-card .tag {
  display: inline-block;
  background: var(--green-200);
  color: var(--green-900);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin: 0 0 8px;
  color: var(--green-900);
}
.hero-card p { color: var(--ink-soft); margin: 0 0 20px; }

/* ---------- Trust badges ---------- */
.trust-row {
  display: flex; flex-wrap: wrap; gap: 22px;
  margin-top: 30px; padding-top: 22px;
  border-top: 1px solid rgba(11,61,46,0.1);
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.86rem; color: var(--ink-soft); font-weight: 500;
}
.trust-item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-600); flex: none;
}

/* ---------- Product grid (shop) ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card { display: flex; flex-direction: column; }
.product-media {
  aspect-ratio: 4/3;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-200), var(--bg-2));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media .placeholder-icon { font-size: 2.6rem; opacity: 0.55; }
.product-type-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.85);
  color: var(--green-900);
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 11px; border-radius: 999px;
  display: flex; align-items: center; gap: 5px;
}
.product-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 {
  font-family: var(--font-head); color: var(--green-900);
  font-size: 1.15rem; margin: 0 0 6px;
}
.product-body p.tagline { color: var(--ink-soft); font-size: 0.9rem; margin: 0 0 16px; flex: 1; }
.product-footer-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
}
.product-price { font-family: var(--font-head); color: var(--green-900); font-weight: 600; font-size: 1.25rem; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-soft); }

/* ---------- Product detail page ---------- */
.product-hero { padding: max(28px, env(safe-area-inset-top)) 0 20px; }
.product-hero-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 44px; align-items: start;
}
.product-image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-200), var(--bg-2));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--glass-border);
}
.product-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.product-image-frame .placeholder-icon { font-size: 4rem; opacity: 0.5; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 14px; }
.breadcrumb a { color: var(--green-700); text-decoration: none; font-weight: 600; }
.product-description { color: var(--ink-soft); white-space: pre-line; margin: 16px 0 24px; }
.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 22px;
}
.price {
  font-family: var(--font-head);
  font-size: 2.6rem;
  color: var(--green-900);
  font-weight: 600;
}
.price-unit { color: var(--ink-soft); font-size: 0.95rem; }
.include-list { list-style: none; padding: 0; margin: 0 0 24px; }
.include-list li {
  display: flex;
  gap: 10px;
  padding: 7px 0;
  color: var(--ink);
  font-size: 0.95rem;
}
.check {
  width: 20px; height: 20px; flex: none;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
}

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--green-900);
  margin: 0 0 12px;
  font-weight: 600;
}
.section-head p { color: var(--ink-soft); margin: 0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card { padding: 28px; }
.feature-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-400), var(--green-700));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.feature-card h4 { margin: 0 0 8px; color: var(--green-900); font-size: 1.05rem; }
.feature-card p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { padding: 26px; text-align: left; }
.step .num {
  font-family: var(--font-head);
  color: var(--green-600);
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.step h4 { margin: 0 0 6px; color: var(--green-900); }
.step p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Forms ---------- */
.form-card { padding: 36px; max-width: 480px; margin: 0 auto; }
.form-card h2 {
  font-family: var(--font-head);
  color: var(--green-900);
  margin: 0 0 6px;
  font-size: 1.6rem;
}
.form-card .summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-top: 1px solid rgba(11,61,46,0.1); margin-top: 18px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 0.88rem; font-weight: 600;
  color: var(--green-900); margin-bottom: 6px;
}
.field input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(11,61,46,0.18);
  background: rgba(255,255,255,0.7);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--ink);
}
.field input:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(31,157,95,0.18);
}
.field .error { color: #b3261e; font-size: 0.82rem; margin-top: 5px; display: block; }

/* Bigger, simpler fields for the checkout form — large tap targets, big readable text */
.checkout-help-text { color: var(--ink-soft); font-size: 0.98rem; margin: 0 0 22px; }
.field-lg { margin-bottom: 22px; }
.field-lg label { font-size: 1.05rem; margin-bottom: 9px; }
.field-lg input {
  padding: 18px 18px;
  border-radius: 14px;
  font-size: 1.15rem;
  min-height: 58px;
}
.field-lg .error { font-size: 0.9rem; margin-top: 7px; }

.form-note { font-size: 0.9rem; color: var(--ink-soft); margin-top: 14px; text-align: center; }

/* status pages */
.status-card { padding: 44px; max-width: 520px; margin: 60px auto; text-align: center; }
.status-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.8rem; color: #fff;
}
.status-icon.success { background: linear-gradient(135deg, var(--green-400), var(--green-700)); }
.status-icon.fail { background: linear-gradient(135deg, #e57373, #b3261e); }
.status-card h2 { font-family: var(--font-head); color: var(--green-900); margin: 0 0 10px; }
.status-card p { color: var(--ink-soft); }

/* ---------- Sticky mobile buy bar (always pinned to the bottom) ---------- */
.sticky-buy {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(11,61,46,0.12);
  box-shadow: 0 -8px 30px rgba(11,61,46,0.12);
  padding: 12px max(16px, env(safe-area-inset-left)) calc(12px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-right));
}
.sticky-buy-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.sticky-buy-info { display: flex; align-items: center; gap: 10px; min-width: 0; }
.sticky-buy-info img {
  width: 40px; height: 40px; border-radius: 8px; object-fit: cover; flex: none;
}
.sticky-buy-text { display: flex; flex-direction: column; min-width: 0; }
.sticky-buy-text strong {
  font-size: 0.88rem; color: var(--green-900);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 46vw;
}
.sticky-buy-text span { font-size: 0.82rem; color: var(--ink-soft); font-weight: 600; }
.sticky-buy .btn-primary { flex: none; padding: 12px 22px; }
.btn-lg { padding: 16px 26px; font-size: 1.02rem; }
.btn[disabled], .btn.is-loading { opacity: 0.75; cursor: not-allowed; pointer-events: none; }

/* Only needed on pages that render the sticky bar */
body.has-sticky-buy { padding-bottom: 0; }
@media (max-width: 760px) {
  body.has-sticky-buy { padding-bottom: 74px; }
}
@media (min-width: 761px) {
  .sticky-buy { display: none; } /* desktop already has the buy button in view */
}

/* ---------- Copy-link (admin) ---------- */
.copy-link-wrap { display: flex; align-items: center; gap: 8px; }
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px);
  background: var(--green-900); color: #fff; padding: 11px 20px; border-radius: 999px;
  font-size: 0.88rem; font-weight: 600; box-shadow: 0 12px 30px rgba(11,61,46,0.28);
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 500;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Checkout page: product details ---------- */
.checkout-section { padding: max(24px, env(safe-area-inset-top)) 0 40px; }
.checkout-product-card {
  max-width: 480px; margin: 0 auto 20px;
  padding: 20px;
}
.checkout-product-media {
  border-radius: 14px; overflow: hidden; aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--green-200), var(--bg-2));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.checkout-product-media img { width: 100%; height: 100%; object-fit: cover; }
.checkout-product-media .placeholder-icon { font-size: 2.6rem; opacity: 0.5; }
.checkout-product-info h1 {
  font-family: var(--font-head); color: var(--green-900);
  font-size: 1.35rem; margin: 10px 0 4px; font-weight: 600;
}
.checkout-product-tagline { color: var(--ink-soft); font-size: 0.95rem; margin: 0 0 10px; }
.checkout-product-desc { color: var(--ink-soft); font-size: 0.9rem; white-space: pre-line; margin: 0 0 14px; }
.checkout-product-price {
  font-family: var(--font-head); color: var(--green-900);
  font-size: 1.5rem; font-weight: 600;
  padding-top: 12px; border-top: 1px solid rgba(11,61,46,0.1);
}
.checkout-product-price span { font-family: var(--font-body); color: var(--ink-soft); font-size: 0.85rem; font-weight: 500; }

/* ---------- Sticky checkout pay bar (always pinned to the bottom) ---------- */
.checkout-sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(11,61,46,0.12);
  box-shadow: 0 -8px 30px rgba(11,61,46,0.12);
  padding: 14px max(20px, env(safe-area-inset-left)) calc(14px + env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-right));
}
.checkout-sticky-inner {
  max-width: 480px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.checkout-sticky-total { display: flex; flex-direction: column; }
.checkout-sticky-total span { font-size: 0.76rem; color: var(--ink-soft); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; }
.checkout-sticky-total strong { font-family: var(--font-head); font-size: 1.4rem; color: var(--green-900); }
.checkout-sticky-bar .btn-primary { flex: none; padding: 15px 30px; }
body.has-checkout-bar { padding-bottom: 96px; }
@media (max-width: 480px) {
  .checkout-sticky-bar .btn-primary { padding: 14px 22px; font-size: 0.95rem; }
  body.has-checkout-bar { padding-bottom: 100px; }
}
.checkout-trust-card {
  max-width: 480px; margin: 0 auto; padding: 18px 20px;
  display: flex; gap: 22px; flex-wrap: wrap;
}

/* ---------- Details popup (opens when "Pay Now" is tapped) ---------- */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 300;
  background: rgba(11, 43, 30, 0.45);
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.modal-overlay.is-open { display: flex; }
.modal-card {
  width: 100%; max-width: 480px;
  border-radius: 24px 24px 0 0;
  padding: 30px 26px calc(26px + env(safe-area-inset-bottom));
  position: relative;
  animation: sheet-up 0.32s cubic-bezier(.2,.8,.2,1) both;
  max-height: 88vh;
  overflow-y: auto;
}
@keyframes sheet-up {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-card h2 {
  font-family: var(--font-head); color: var(--green-900);
  margin: 0 0 6px; font-size: 1.5rem;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(11,61,46,0.08); border: none;
  color: var(--green-900); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 600px) {
  .modal-overlay { align-items: center; }
  .modal-card { border-radius: 24px; }
}

/* ---------- Footer ---------- */
.footer {
  padding: 34px 0 44px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

/* ---------- Admin ---------- */
.admin-shell { max-width: 1100px; margin: 0 auto; padding: 32px 24px 60px; }
.admin-topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px;
}
.admin-topbar h1 { font-family: var(--font-head); color: var(--green-900); font-size: 1.5rem; margin: 0; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.stat-card { padding: 24px; }
.stat-card .label { color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 8px; }
.stat-card .value { font-family: var(--font-head); font-size: 1.9rem; color: var(--green-900); font-weight: 600; }
.table-card { padding: 10px; overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { text-align: left; padding: 14px 16px; font-size: 0.9rem; }
thead th { color: var(--green-900); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; border-bottom: 1px solid rgba(11,61,46,0.12); }
tbody tr { border-bottom: 1px solid rgba(11,61,46,0.07); }
tbody tr:last-child { border-bottom: none; }
.pill { padding: 4px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 600; }
.pill-success { background: var(--green-200); color: var(--green-900); }
.pill-pending { background: #fff3cd; color: #8a6100; }
.pill-failed { background: #fbdada; color: #b3261e; }

.login-shell { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.login-card { padding: 40px; width: 100%; max-width: 380px; }
.login-card h1 { font-family: var(--font-head); color: var(--green-900); font-size: 1.4rem; margin: 0 0 4px; }
.login-card p.sub { color: var(--ink-soft); margin: 0 0 24px; font-size: 0.9rem; }

.admin-nav { display: flex; gap: 8px; margin-bottom: 26px; flex-wrap: wrap; }
.admin-nav a {
  padding: 10px 18px; border-radius: 10px; text-decoration: none;
  color: var(--ink-soft); font-weight: 600; font-size: 0.9rem;
  border: 1px solid transparent;
}
.admin-nav a.active { background: var(--glass-strong); border-color: var(--glass-border); color: var(--green-900); }

.product-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.image-upload-box {
  border: 2px dashed rgba(11,61,46,0.25); border-radius: 16px; padding: 22px;
  text-align: center; background: rgba(255,255,255,0.4);
}
.image-upload-box img { max-height: 200px; border-radius: 10px; margin-bottom: 14px; }
.image-upload-box input[type=file] { margin-top: 10px; font-size: 0.85rem; }
.field textarea, .field select {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  border: 1px solid rgba(11,61,46,0.18); background: rgba(255,255,255,0.7);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
}
.field textarea { resize: vertical; min-height: 120px; }
.btn-danger { background: #fbdada; color: #b3261e; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.actions-row { display: flex; gap: 8px; }
.products-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.thumb-cell { width: 56px; height: 56px; border-radius: 10px; overflow: hidden; background: var(--green-200); display: flex; align-items: center; justify-content: center; }
.thumb-cell img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .feature-grid, .steps, .product-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .product-hero-grid { grid-template-columns: 1fr; }
  .product-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .feature-grid, .steps, .product-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .nav-inner { padding: 10px 16px; }
  .hero { padding: 40px 0 24px; }
  h1.display { max-width: 100%; }
  .form-card, .status-card { padding: 26px; }
  .trust-row { gap: 14px; }
}
