/* Grow a Garden 2 — Seed Generator (wizard) */

:root {
  --green-1: #7ed957;
  --green-2: #4faf2f;
  --green-3: #2f7d1e;
  --ink: #1c2a17;
  --panel: #ffffff;
  --panel-soft: #f4fbef;

  /* rarity colors */
  --r-common:    #b6c0cc;
  --r-uncommon:  #4fd15b;
  --r-rare:      #40a6ff;
  --r-epic:      #b45cff;
  --r-legendary: #ffb02e;
  --r-mythic:    #ff4d8d;
  --r-super:     #22e0c8;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Fredoka', sans-serif; }

body {
  min-height: 100vh;
  color: var(--ink);
  overflow-x: hidden;
}

/* Background: drop a real image at ui2/bg.jpg and it's used automatically;
   until then, a clean stylized sky→garden gradient shows (no screenshot). */
.bg {
  position: fixed; inset: 0; z-index: -2;
  background-color: #bfeaff;
  background-image:
    url("background.webp"),
    radial-gradient(1000px 440px at 50% -90px, rgba(255,255,255,.75), rgba(255,255,255,0) 60%),
    linear-gradient(to bottom, #8fd3ff 0%, #a9e2ff 22%, #d0efcb 48%, #a4dc80 72%, #82c65b 100%);
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
}
.bg::after { /* faint wash so content stays readable over gradient or a future photo */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.10), rgba(255,255,255,0) 34%, rgba(110,175,80,.14));
}

/* ===== Top bar ===== */
.topbar {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; padding: 20px 16px 6px;
}
.brand-logo { width: 54px; height: 54px; filter: drop-shadow(0 3px 0 rgba(0,0,0,.18)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b {
  font-size: 26px; font-weight: 700; color: #fff;
  -webkit-text-stroke: 4px var(--green-3); paint-order: stroke fill;
}
.brand-text span { font-size: 15px; font-weight: 600; color: #2f7d1e; letter-spacing: .5px; }

/* ===== Progress ===== */
.progress { max-width: 620px; margin: 10px auto 4px; padding: 0 18px; }
.progress-track {
  height: 8px; border-radius: 999px; background: rgba(255,255,255,.6);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.12); overflow: hidden;
}
.progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--green-1), var(--green-2));
  border-radius: 999px;
}
.psteps { display: flex; justify-content: space-between; margin-top: 10px; }
.pstep { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; }
.pdot {
  position: relative;
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700; font-size: 15px;
  background: #fff; color: #9bb08e; border: 3px solid #e2ead9;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .2s ease;
}
.pstep label { font-size: 12px; font-weight: 600; color: #6c8a5e; }
.pstep.current .pdot { background: var(--green-1); color: #fff; border-color: var(--green-2); transform: scale(1.08); }
.pstep.current label { color: var(--green-3); }
.pstep.done .pdot { background: var(--green-2); border-color: var(--green-3); font-size: 0; }
.pstep.done .pdot::after {
  content: "✓"; position: absolute; inset: 0;
  display: grid; place-items: center; color: #fff; font-size: 15px;
}

/* ===== Stage / steps ===== */
.stage { max-width: 940px; margin: 0 auto; padding: 8px 16px 0; }
.step { display: none; animation: fade .35s ease; }
.step.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.card {
  background: var(--panel); border-radius: 20px;
  box-shadow: 0 12px 30px rgba(31,60,20,.16), 0 2px 0 #dfebd4;
  border: 2px solid #eaf3e2;
}
.panel { max-width: 460px; margin: 18px auto; padding: 28px 26px; text-align: center; }
h1 { font-size: 24px; font-weight: 700; color: var(--green-3); }
.sub { font-size: 15px; color: #5f7a52; margin-top: 6px; }
.step-head { text-align: center; margin: 12px auto 6px; }
.step-head h1 { color: #fff; -webkit-text-stroke: 3px var(--green-3); paint-order: stroke fill; }
.step-head .sub { color: #2f6d1c; font-weight: 500; }

/* inputs & buttons */
#username {
  display: block; width: 100%; margin: 18px 0 6px; padding: 14px 16px;
  border-radius: 12px; border: 2px solid #d6e6cb; font-size: 16px; text-align: center;
  background: var(--panel-soft); transition: border-color .2s;
}
#username:focus { outline: none; border-color: var(--green-1); }

.btn {
  cursor: pointer; border: none; border-radius: 12px; font-weight: 600; font-size: 16px;
  padding: 12px 20px; color: #fff;
  background: linear-gradient(to bottom, var(--green-1), var(--green-2));
  border-bottom: 4px solid var(--green-3);
  box-shadow: 0 3px 8px rgba(31,60,20,.2); transition: transform .12s, filter .2s;
}
.btn:hover { filter: brightness(1.05); }
.btn:active { transform: translateY(2px); border-bottom-width: 2px; }
.btn:disabled { filter: grayscale(.6) brightness(1.05); opacity: .6; cursor: not-allowed; border-bottom-color: #9bb08e; }
.btn.big { width: 100%; padding: 15px; font-size: 18px; margin-top: 6px; }
.btn.ghost {
  background: #fff; color: var(--green-3); border: 2px solid #d6e6cb; border-bottom: 4px solid #cfe0c2;
}
.btn.glow { animation: glow 1.8s infinite; }
@keyframes glow {
  0%,100% { box-shadow: 0 3px 8px rgba(31,60,20,.2); }
  50% { box-shadow: 0 3px 22px rgba(126,217,87,.8); }
}
.row { display: flex; gap: 10px; margin-top: 18px; }
.row .btn { flex: 1; }
.reassure { margin-top: 14px; font-size: 13px; color: #7a9169; }

.warn {
  min-height: 18px; color: #e23b3b; font-size: 14px; font-weight: 600;
  opacity: 0; transition: opacity .2s;
}
.warn.show { opacity: 1; }

/* ===== Rarity tabs ===== */
.rarity-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin: 14px auto 16px; max-width: 720px;
}
.rtab {
  cursor: pointer; border: 2px solid #e0ead6; background: #fff; color: #5f7a52;
  font-weight: 600; font-size: 13px; padding: 7px 14px; border-radius: 999px;
  box-shadow: 0 2px 0 #e6efdd; transition: all .18s;
}
.rtab[style*="--rar"] { border-color: var(--rar); color: var(--rar); }
.rtab.active {
  color: #fff; background: var(--rar, var(--green-2));
  border-color: transparent; box-shadow: 0 3px 10px color-mix(in srgb, var(--rar, #4faf2f) 55%, transparent);
}
.rtab.active[data-r="All"] { background: var(--green-2); }

/* ===== Crop grid ===== */
.crop-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px; padding-bottom: 220px;
}
.crop {
  position: relative; cursor: pointer; text-align: center;
  background: #fff; border: 2px solid #eef4e8; border-radius: 16px;
  padding: 12px 8px 10px; overflow: hidden;
  box-shadow: 0 4px 12px rgba(31,60,20,.08); transition: transform .14s, box-shadow .2s, border-color .2s;
}
.crop::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 6px;
  background: var(--rar); opacity: .9;
}
.crop:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(31,60,20,.16); }
.crop.picked {
  border-color: var(--rar);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--rar) 40%, transparent), 0 10px 20px rgba(31,60,20,.18);
}
.crop-check {
  position: absolute; top: 8px; right: 8px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--rar); color: #fff; font-size: 14px; font-weight: 700;
  display: grid; place-items: center; transform: scale(0); transition: transform .18s;
  z-index: 2;
}
.crop.picked .crop-check { transform: scale(1); }
.crop-rarity {
  position: absolute; top: 8px; left: 8px; font-size: 10px; font-weight: 700; letter-spacing: .3px;
  color: #fff; background: var(--rar); padding: 2px 7px; border-radius: 999px; text-transform: uppercase;
}
.crop-art { height: 92px; display: grid; place-items: center; margin: 14px 0 6px; }
.crop-art img { max-width: 88px; max-height: 88px; image-rendering: auto;
  filter: drop-shadow(0 3px 3px rgba(0,0,0,.18)); }
.crop-missing { color: #9bb08e; font-size: 34px; display: grid; place-items: center; gap: 2px; }
.crop-missing small { font-size: 10px; }
.crop-name { font-weight: 600; font-size: 14px; color: var(--ink); line-height: 1.15; }
.crop-val { font-size: 12px; color: #7a9169; margin-top: 2px; font-weight: 500; }
.crop-val.muted { color: #b7c4ab; }

/* ===== Selection tray (sticky) ===== */
.tray {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: flex; justify-content: center; pointer-events: none;
}
.tray-inner {
  pointer-events: auto;
  width: min(680px, calc(100% - 24px)); margin-bottom: 14px;
  background: rgba(255,255,255,.96); backdrop-filter: blur(6px);
  border: 2px solid #e6efdd; border-radius: 18px; padding: 12px 16px;
  box-shadow: 0 -6px 24px rgba(31,60,20,.18);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px;
}
.tray-label { font-weight: 600; color: var(--green-3); font-size: 14px; white-space: nowrap; }
.tray-count {
  display: inline-block; margin-left: 4px; background: var(--panel-soft);
  border: 1px solid #d9e8cd; border-radius: 999px; padding: 1px 8px; font-size: 13px; color: #5f7a52;
}
.tray-slots { display: flex; gap: 10px; justify-content: center; }
.slot {
  width: 52px; height: 52px; border-radius: 12px; border: 2px dashed #cfe0c2;
  background: var(--panel-soft); display: grid; place-items: center; position: relative;
}
.slot.filled { border-style: solid; border-color: var(--rar); background: #fff; }
.slot img { max-width: 42px; max-height: 42px; }
.slot-missing { font-size: 24px; }
.slot-empty { color: #c3d3b5; font-size: 22px; font-weight: 700; }
.slot-x {
  position: absolute; top: -7px; right: -7px; width: 20px; height: 20px; border-radius: 50%;
  border: none; background: #e23b3b; color: #fff; font-size: 14px; line-height: 1; cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
.tray-actions { display: flex; gap: 8px; }
.tray-actions .btn { padding: 10px 16px; font-size: 15px; }
.pick-limit {
  position: absolute; top: -6px; left: 50%; transform: translate(-50%,-100%);
  background: #e23b3b; color: #fff; font-size: 13px; font-weight: 600; padding: 6px 12px;
  border-radius: 10px; opacity: 0;
}
.pick-limit.show { animation: pop 1.6s ease; }
@keyframes pop { 0%{opacity:0;transform:translate(-50%,-80%)} 15%,70%{opacity:1;transform:translate(-50%,-110%)} 100%{opacity:0;transform:translate(-50%,-130%)} }

/* ===== Step 3 amounts ===== */
.amounts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0; }
.amt {
  cursor: pointer; padding: 18px 10px; border-radius: 14px; border: 2px solid #e0ead6;
  background: var(--panel-soft); font-size: 20px; font-weight: 700; color: var(--green-3);
  transition: all .16s; position: relative;
}
.amt small { display: block; font-size: 11px; font-weight: 600; color: #7a9169; margin-top: 2px; }
.amt:hover { border-color: var(--green-1); }
.amt.active {
  background: linear-gradient(to bottom, var(--green-1), var(--green-2)); color: #fff;
  border-color: var(--green-3); box-shadow: 0 6px 14px rgba(126,217,87,.5);
}
.amt.active small { color: #eafbe0; }

/* ===== Step 4 review ===== */
.review-meta { display: flex; gap: 12px; margin: 16px 0; }
.review-meta > div {
  flex: 1; background: var(--panel-soft); border: 1px solid #e0ead6; border-radius: 12px; padding: 10px;
}
.review-meta span { display: block; font-size: 12px; color: #7a9169; }
.review-meta b { font-size: 16px; color: var(--green-3); word-break: break-word; }
.review-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 6px; }
.rchip {
  display: flex; align-items: center; gap: 12px; text-align: left;
  background: #fff; border: 2px solid #eef4e8; border-left: 6px solid var(--rar);
  border-radius: 12px; padding: 8px 12px;
}
.rchip img { width: 40px; height: 40px; object-fit: contain; }
.rchip-art { width: 40px; height: 40px; display: grid; place-items: center; font-size: 24px; }
.rchip > div:nth-child(2) { flex: 1; }
.rchip-name { font-weight: 600; }
.rchip-rar { font-size: 12px; color: var(--rar); font-weight: 600; }
.rchip-val { display: inline-flex; align-items: center; font-weight: 700; color: #7a9169; font-size: 14px; }

/* ===== Loading / verify overlay ===== */
.loading {
  position: fixed; inset: 0; z-index: 100; display: none;
  background: linear-gradient(to bottom, #8fd3ff, #d9f6c6);
  place-items: center; overflow-y: auto; padding: 14px;
}
.loading.show { display: grid; }
.loading-card {
  width: min(420px, 92%); background: #fff; border-radius: 20px; padding: 26px 24px 24px;
  text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,.2); position: relative;
  max-height: calc(100dvh - 28px); overflow-y: auto;
}
.loading-logo { width: 64px; height: 64px; margin-bottom: 14px; }
.load-line { font-size: 18px; font-weight: 600; color: var(--ink); min-height: 48px; }
.load-line.final { color: #e23b3b; }
.ldots { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.ldot { width: 14px; height: 14px; border-radius: 50%; background: #e6ecdf; transition: background .3s; }
.ldot.on { background: var(--green-2); animation: bump .4s; }
@keyframes bump { 50% { transform: translateY(-6px); } }
.verify-wrap { max-height: 0; overflow: hidden; opacity: 0; transition: all .4s; }
.verify-wrap.show { max-height: 120px; opacity: 1; margin-top: 20px; }
.btn.verify { background: linear-gradient(to bottom, #35d07a, #1ec962); border-bottom-color: #159b4b; animation: glow 1.6s infinite; }

/* ===== Toasts ===== */
.popups { position: fixed; left: 14px; bottom: 14px; z-index: 60; display: flex; flex-direction: column; gap: 10px; }
.toast {
  display: flex; align-items: center; gap: 10px; background: #fff;
  border: 2px solid #eef4e8; border-left: 6px solid var(--rar); border-radius: 12px;
  padding: 8px 14px 8px 10px; box-shadow: 0 6px 16px rgba(31,60,20,.18);
  transform: translateX(-120%); opacity: 0; transition: transform .4s, opacity .4s;
}
.toast.in { transform: none; opacity: 1; }
.toast img { width: 34px; height: 34px; object-fit: contain; }
.toast-art { width: 34px; height: 34px; display: grid; place-items: center; font-size: 20px; }
.toast b { display: block; font-size: 13px; color: var(--green-3); }
.toast span { font-size: 12px; color: #5f7a52; }
.toast i { font-style: normal; font-weight: 600; color: var(--rar); }

/* design switcher (both pages) */
.switch {
  position: fixed; top: 10px; right: 10px; z-index: 80;
  background: rgba(255,255,255,.92); color: var(--green-3); font-weight: 600; font-size: 13px;
  text-decoration: none; padding: 7px 12px; border-radius: 999px;
  border: 2px solid #d6e6cb; box-shadow: 0 3px 0 rgba(0,0,0,.12);
}
.switch:active { transform: translateY(2px); }

/* ===== Urgency + social proof bar ===== */
.urgency {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin: 6px auto 2px; padding: 0 16px;
}
.urg-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: #5f7a52;
  padding: 5px 12px; border-radius: 999px; border: none;
  background: rgba(255,255,255,.86); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  box-shadow: 0 2px 6px rgba(31,60,20,.10);
}
.urg-pill b { font-weight: 700; }
.urg-pill.timer b { color: #e0632b; }
.urg-pill.online b { color: #21a94e; }
.live-dot {
  display: inline-block; vertical-align: middle;
  width: 8px; height: 8px; border-radius: 50%; background: #35d07a;
  box-shadow: 0 0 0 0 rgba(53,208,122,.6); animation: livepulse 1.5s infinite;
}
@keyframes livepulse {
  0% { box-shadow: 0 0 0 0 rgba(53,208,122,.6); }
  70% { box-shadow: 0 0 0 7px rgba(53,208,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(53,208,122,0); }
}

.panel h1, .step-head h1 { position: relative; }

/* ===== Chunky green accent bar across the very top of the screen =====
   Page-level (fixed to viewport, outside the animated .step subtree) so it
   stays put and never flickers on load or step changes. */
body::before {
  content: ""; position: fixed; top: 0; left: 0; right: 0; height: 8px;
  background: linear-gradient(90deg, var(--green-1), var(--green-2));
  z-index: 100;
}

/* ===== Sheckles coin on values ===== */
.coin {
  width: 15px; height: 15px; vertical-align: -2px; margin-right: 3px;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.25));
}
.crop-val { display: inline-flex; align-items: center; justify-content: center; }

/* ===== Rarity glow behind plant art (in-game item-box look) ===== */
.crop-art::before {
  content: ""; position: absolute; width: 96px; height: 96px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--rar) 55%, transparent) 0%, transparent 68%);
  z-index: 0; opacity: .8;
}
.crop { }  /* --rar already set inline */
.crop-art { position: relative; }
.crop-art img, .crop-missing { position: relative; z-index: 1; }

/* ===== Bonus Sheckles band ===== */
.bonus-sheckles {
  display: flex; align-items: center; gap: 12px;
  margin: 4px 0 8px; padding: 12px 14px; border-radius: 14px; text-align: left;
  background: linear-gradient(135deg, #fff8e6, #fff3d0);
  border: 2px dashed #ffd27a;
}
.bonus-sheckles .bs-coin { width: 42px; height: 42px; flex: none; filter: drop-shadow(0 2px 2px rgba(0,0,0,.18)); }
.bonus-sheckles .bs-text b { display: block; font-size: 15px; color: #d98a00; }
.bonus-sheckles .bs-text span { font-size: 12px; color: #a98a5c; }

/* ===== Enhanced verify funnel loader ===== */
.load-sub { font-size: 13px; color: #7a9169; min-height: 18px; margin-top: 2px; }
.load-progress {
  width: 100%; height: 12px; border-radius: 999px; background: #e9f0e2;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.14); overflow: hidden; margin: 14px 0 6px;
}
.load-bar {
  height: 100%; width: 0%; border-radius: 999px;
  background: linear-gradient(90deg, var(--green-1), var(--green-2));
}
.load-pct { font-size: 12px; font-weight: 700; color: var(--green-3); margin-bottom: 6px; }
.load-steps { list-style: none; text-align: left; margin: 10px auto 2px; max-width: 320px; }
.lstep {
  display: flex; align-items: center; gap: 8px; padding: 4px 0; font-size: 13px;
  color: #b3c0a8; transition: color .2s; font-weight: 500;
}
.lstep-ic { width: 20px; text-align: center; filter: grayscale(1); opacity: .5; }
.lstep-mk { margin-left: auto; width: 16px; height: 16px; }
.lstep.active { color: var(--ink); }
.lstep.active .lstep-ic { filter: none; opacity: 1; }
.lstep.active .lstep-mk {
  border: 2px solid var(--green-1); border-top-color: transparent; border-radius: 50%;
  animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.lstep.done { color: var(--green-3); }
.lstep.done .lstep-ic { filter: none; opacity: 1; }
.lstep.done .lstep-mk::after { content: "✓"; color: #fff; background: var(--green-2); border-radius: 50%; display: block; width: 16px; height: 16px; font-size: 11px; line-height: 16px; text-align: center; }
.verify-note { font-size: 12px; color: #7a9169; margin-top: 10px; line-height: 1.35; }

/* ===== Trust chip (single clean strip) ===== */
.trust { text-align: center; margin: 8px auto 0; padding: 0 16px; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 9px; flex-wrap: wrap; justify-content: center;
  background: rgba(255,255,255,.86); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  border-radius: 999px; padding: 6px 16px; font-size: 12.5px; font-weight: 600; color: #5f7a52;
  box-shadow: 0 2px 6px rgba(31,60,20,.10);
}
.trust-chip .tc-ok { color: #1e9e4a; font-weight: 800; }
.trust-chip b { color: var(--green-3); font-weight: 700; }
.tc-sep { width: 4px; height: 4px; border-radius: 50%; background: #c3d3b5; }
@media (max-width: 560px) { .tb small { display: none; } .tr-tx { font-size: 11px; } }

/* verified lead pill in the trust bar */
.tb.verified { background: linear-gradient(to bottom, #eafbe0, #d6f3c2); border-color: #a9e08a; }
.tb.verified b { color: #1e9e4a; font-size: 13px; }

/* ===== Site footer: clean reviews + video proof ===== */
.site-footer {
  margin-top: 34px; padding: 22px 16px 40px;
  background: #ffffff; border-top: 3px solid #dcebd0;
}
.foot-inner {
  max-width: 900px; margin: 0 auto; display: grid;
  grid-template-columns: 1.5fr 1fr; gap: 24px; align-items: start;
}
.foot-head { font-size: 15px; font-weight: 700; color: var(--green-3); margin-bottom: 12px; }
.foot-reviews { display: flex; flex-direction: column; gap: 10px; }
.freview { display: flex; gap: 10px; align-items: flex-start; background: #f7fbf3; border: 1px solid #e4efd9; border-radius: 12px; padding: 10px 12px; }
.fr-av { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; background: #fff; flex: none; }
.fr-body { min-width: 0; }
.fr-top { display: flex; align-items: center; gap: 8px; }
.fr-name { font-size: 13px; font-weight: 700; color: var(--green-3); }
.fr-stars { color: #ffb400; font-size: 12px; }
.fr-text { font-size: 13px; color: #4c6440; margin-top: 2px; }
.foot-proof { background: #f7fbf3; border: 1px solid #e4efd9; border-radius: 12px; padding: 12px; text-align: center; }
.fp-title { font-size: 13px; font-weight: 700; color: var(--green-3); margin-bottom: 8px; }
.fp-video { position: relative; width: 100%; max-width: 240px; margin: 0 auto; border-radius: 10px; overflow: hidden; cursor: pointer; }
.foot-proof video { width: 100%; border-radius: 10px; display: block; background: #cfe9ff; }
.fp-play {
  position: absolute; inset: 0; margin: auto; width: 52px; height: 52px; border-radius: 50%;
  border: none; cursor: pointer; background: rgba(30,60,20,.55); color: #fff; font-size: 20px;
  display: grid; place-items: center; padding-left: 3px; transition: opacity .2s, transform .15s;
}
.fp-play:hover { transform: scale(1.08); }
.fp-video.playing .fp-play { opacity: 0; pointer-events: none; }
.fp-cap { font-size: 11px; color: #7a9169; margin-top: 6px; }
.foot-legal { max-width: 900px; margin: 16px auto 0; text-align: center; font-size: 11px; color: #9bb08e; }

/* per-card stock tag (rare seeds only, shown while choosing) */
.crop-stock { font-size: 11px; font-weight: 700; color: #d0453f; margin-top: 3px; }

@media (max-width: 820px) { .foot-inner { grid-template-columns: 1fr; } }

/* ===== Responsive ===== */
@media (max-width: 560px) {
  .crop-grid { grid-template-columns: repeat(auto-fill, minmax(108px, 1fr)); gap: 10px; }
  .crop-art { height: 74px; } .crop-art img { max-width: 70px; max-height: 70px; }
  .tray-inner { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .tray-actions .btn { flex: 1; }
  .pstep label { font-size: 11px; }
  .brand-text b { font-size: 22px; }
  .popups { left: 8px; right: 8px; } .toast { max-width: 260px; }
}
