/* ═══════════════════════════════════════════════════════════
   SEEDS JAMAICA — design system (seedsnow-inspired, JA voice)
   ═══════════════════════════════════════════════════════════ */
:root {
  --green: #1e7d34;          /* primary leaf green */
  --green-deep: #14572a;
  --green-soft: #e7f4ea;
  --lime: #8bc34a;
  --gold: #f2b705;           /* island sun accent */
  --gold-deep: #d99e00;
  --soil: #4a3423;
  --ink: #1d2b20;
  --ink-mid: #45564a;
  --ink-soft: #6c7d70;
  --cream: #fbfaf4;
  --line: #e3e8e0;
  --red: #d0342c;
  --serif: 'Archivo', system-ui, sans-serif;
  --sans: 'Nunito Sans', system-ui, sans-serif;
  --shadow: 0 4px 18px rgba(20, 60, 30, .10);
  --radius: 16px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--cream); line-height: 1.55; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 18px; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; }

/* ── Promo utility bar ── */
.promo-bar { background: var(--green-deep); color: #fff; font-size: 12.5px; font-weight: 700; }
.promo-bar .container { display: flex; align-items: center; justify-content: center; gap: 22px; padding: 7px 18px; flex-wrap: wrap; text-align: center; }
.promo-bar a { color: var(--gold); }
@media (max-width: 700px) { .promo-bar .container > span:nth-child(3) { display: none; } }

/* ── Header ── */
.nav { position: sticky; top: 0; z-index: 950; background: #fff; border-bottom: 1px solid var(--line); transition: transform .28s ease; }
.nav.nav-hide { transform: translateY(-100%); }
.nav-main { display: flex; align-items: center; gap: 16px; padding: 12px 0; }
.nav-logo img { height: 52px; width: auto; background: #fff; padding: 4px 8px; border-radius: 10px; }
.nav-search { flex: 1; display: flex; max-width: 560px; }
.nav-search input { flex: 1; border: 2px solid var(--green); border-right: 0; border-radius: 999px 0 0 999px; padding: 10px 18px; font-size: 14px; font-family: inherit; outline: none; }
.nav-search button { border: 2px solid var(--green); background: var(--green); color: #fff; border-radius: 0 999px 999px 0; padding: 0 20px; font-size: 16px; }
.nav-icons { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-icon { position: relative; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: var(--ink); font-size: 19px; background: transparent; border: 0; }
.nav-icon:hover { background: var(--green-soft); }
.nav-badge { position: absolute; top: 2px; right: 2px; background: var(--red); color: #fff; font-size: 10px; font-weight: 800; min-width: 17px; height: 17px; border-radius: 999px; display: grid; place-items: center; padding: 0 4px; }
.burger { display: none; }

/* Category bar */
.cat-bar { background: var(--green); }
.cat-bar .container { display: flex; align-items: center; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.cat-bar .container::-webkit-scrollbar { display: none; }
.cat-bar a { color: #fff; font-size: 13px; font-weight: 800; padding: 10px 12px; white-space: nowrap; border-radius: 8px 8px 0 0; }
.cat-bar a:hover, .cat-bar a.active { background: rgba(255,255,255,.16); }
.cat-bar .shop-cta { background: var(--gold); color: var(--green-deep); border-radius: 999px; padding: 7px 16px; margin: 4px 0 4px auto; }

@media (max-width: 860px) {
  .nav-main { flex-wrap: wrap; gap: 10px; }
  .burger { display: grid; }
  .nav-search { order: 3; flex-basis: 100%; max-width: none; }
  .nav-logo img { height: 44px; }
}

/* ── Hero statement (SeedsNow style) ── */
.hero { background: linear-gradient(180deg, #fff 0%, var(--green-soft) 100%); text-align: center; padding: 46px 0 40px; border-bottom: 1px solid var(--line); }
.hero-eyebrow { font-size: 14px; font-weight: 800; color: var(--green); margin-bottom: 12px; }
.hero h1 { font-size: clamp(1.5rem, 4.4vw, 2.6rem); max-width: 860px; margin: 0 auto 10px; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero-sub { color: var(--ink-mid); max-width: 620px; margin: 0 auto 22px; font-size: 15.5px; }
.hero-price-chip { display: inline-block; background: var(--gold); color: var(--green-deep); font-weight: 900; font-family: var(--serif); padding: 8px 20px; border-radius: 999px; font-size: 16px; margin-bottom: 22px; box-shadow: var(--shadow); }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--serif); font-weight: 800; font-size: 14.5px; border-radius: 999px; padding: 13px 26px; border: 2px solid transparent; transition: all .18s; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--green-deep); }
.btn-gold:hover { background: var(--gold-deep); }
.btn-outline { border-color: var(--green); color: var(--green); background: #fff; }
.btn-outline:hover { background: var(--green-soft); }

/* A–Z finder */
.az-label { font-size: 12.5px; font-weight: 800; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.az-row { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; max-width: 760px; margin: 0 auto; }
.az-row a { width: 34px; height: 34px; display: grid; place-items: center; background: #fff; border: 1.5px solid var(--line); border-radius: 9px; font-weight: 800; font-size: 13px; color: var(--green-deep); }
.az-row a:hover { border-color: var(--green); background: var(--green-soft); }

/* ── Sections ── */
.section { padding: 46px 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
.section-head h2 { font-size: clamp(1.25rem, 3vw, 1.7rem); }
.section-head h2 .emoji { margin-right: 8px; }
.section-link { font-weight: 800; font-size: 13.5px; color: var(--green); white-space: nowrap; }

/* Category collection cards */
.coll-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 700px) { .coll-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .coll-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; } }
.coll-card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all .18s; }
.coll-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-3px); }
.coll-media { aspect-ratio: 4 / 3; background: var(--green-soft) center/cover; display: grid; place-items: center; font-size: 46px; }
.coll-card.has-img .coll-media { font-size: 0; }
.coll-name { padding: 10px 12px 12px; font-weight: 800; font-family: var(--serif); font-size: 13.5px; text-align: center; color: var(--green-deep); }

/* ── Product cards ── */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 760px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1020px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
.p-card { position: relative; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: all .18s; }
.p-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-3px); }
.p-media { aspect-ratio: 1 / 1; background: var(--green-soft) center/cover; display: grid; place-items: center; font-size: 42px; }
.p-badge { position: absolute; top: 10px; left: 10px; background: var(--red); color: #fff; font-size: 11px; font-weight: 800; border-radius: 999px; padding: 3px 10px; }
.p-badge.new { background: var(--green); }
.p-body { padding: 12px 12px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.p-name { font-family: var(--serif); font-weight: 800; font-size: 13.5px; line-height: 1.3; min-height: 2.6em; }
.p-price { font-weight: 900; font-family: var(--serif); color: var(--green-deep); font-size: 15px; }
.p-price .old { color: var(--ink-soft); text-decoration: line-through; font-weight: 600; font-size: 12.5px; margin-left: 6px; }
.p-add {
  margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green); color: #fff; border: 0; border-radius: 999px;
  font-family: var(--serif); font-weight: 800; font-size: 13px; padding: 11px 12px; transition: all .15s;
}
.p-add:hover { background: var(--green-deep); }
.p-add svg { width: 16px; height: 16px; flex: 0 0 16px; }
.p-add.added { background: var(--gold); color: var(--green-deep); }
.no-products { grid-column: 1 / -1; text-align: center; color: var(--ink-soft); padding: 30px 0; }

/* Trust strip */
.trust { background: var(--green-deep); color: #fff; }
.trust .container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 14px; padding: 30px 18px; }
@media (min-width: 860px) { .trust .container { grid-template-columns: repeat(6, 1fr); } }
.trust-item { text-align: center; }
.trust-item .t-icon { font-size: 24px; margin-bottom: 6px; }
.trust-item b { display: block; font-family: var(--serif); font-size: 12.5px; letter-spacing: .03em; }
.trust-item span { font-size: 11.5px; color: rgba(255,255,255,.75); }

/* Favorites band */
.fav-band { background: linear-gradient(120deg, var(--green-deep), var(--green)); border-radius: 22px; color: #fff; padding: 30px 26px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.fav-band h3 { font-size: clamp(1.15rem, 2.6vw, 1.5rem); }
.fav-band p { color: rgba(255,255,255,.85); font-size: 14px; max-width: 520px; }
.fav-band .btn { margin-left: auto; }
@media (max-width: 700px) { .fav-band .btn { margin: 4px auto 0; } }

/* Carousel rows */
.car-row { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 6px; scrollbar-width: none; }
.car-row::-webkit-scrollbar { display: none; }
.car-row > * { flex: 0 0 46%; max-width: 46%; scroll-snap-align: start; }
@media (min-width: 760px) { .car-row > * { flex-basis: 31%; max-width: 31%; } }
@media (min-width: 1020px) { .car-row > * { flex-basis: 23.5%; max-width: 23.5%; } }

/* ── Drawer ── */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(15,30,18,.5); z-index: 1290; display: none; opacity: 0; transition: opacity .3s; }
.drawer-backdrop.active { display: block; opacity: 1; }
.drawer { position: fixed; top: 0; left: 0; width: 340px; max-width: 86vw; height: 100%; background: #fff; z-index: 1300; transform: translateX(-100%); transition: transform .35s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; }
.drawer.open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.drawer-head img { height: 40px; background: #fff; padding: 3px 6px; border-radius: 8px; }
.drawer-close { border: 0; background: var(--green-soft); width: 34px; height: 34px; border-radius: 10px; font-size: 18px; }
.drawer-body { overflow-y: auto; padding: 16px 18px 26px; }
.drawer-label { display: block; font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-soft); margin: 18px 0 8px; }
.drawer-label:first-child { margin-top: 0; }
.drawer-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.drawer-cats a { background: var(--green-soft); border-radius: 12px; padding: 12px 10px; text-align: center; font-weight: 800; font-size: 12.5px; color: var(--green-deep); }
.drawer-cats a .em { display: block; font-size: 22px; margin-bottom: 4px; }
.drawer-body > a.d-link { display: block; padding: 9px 2px; font-weight: 700; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.drawer-contact { margin-top: 20px; border-top: 1.5px solid var(--line); padding-top: 16px; display: grid; gap: 8px; }
.drawer-contact a { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 13.5px; padding: 10px 12px; border-radius: 10px; background: var(--green-soft); color: var(--green-deep); }

/* ── Cart tray ── */
.tray-backdrop { position: fixed; inset: 0; background: rgba(15,30,18,.5); z-index: 1290; display: none; opacity: 0; transition: opacity .3s; }
.tray-backdrop.active { display: block; opacity: 1; }
.tray { position: fixed; top: 0; right: 0; width: 380px; max-width: 92vw; height: 100%; background: #fff; z-index: 1300; transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; }
.tray.open { transform: none; }
.tray-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-weight: 800; }
.tray-items { flex: 1; overflow-y: auto; padding: 14px 18px; }
.tray-item { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.tray-item-img { width: 58px; height: 58px; border-radius: 10px; background: var(--green-soft) center/cover; flex: 0 0 58px; display: grid; place-items: center; }
.tray-item-name { font-weight: 800; font-size: 13px; }
.tray-item-meta { font-size: 12.5px; color: var(--ink-mid); display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.qty-mini { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; }
.qty-mini button { border: 0; background: none; width: 26px; height: 26px; font-weight: 800; }
.tray-foot { border-top: 1px solid var(--line); padding: 14px 18px 18px; }
.tray-total { display: flex; justify-content: space-between; font-family: var(--serif); font-weight: 900; margin-bottom: 12px; }
.tray-foot .btn { width: 100%; }

/* ── Footer ── */
.footer { background: var(--green-deep); color: #fff; margin-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; padding: 36px 0 26px; }
@media (min-width: 860px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer h5 { font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); margin-bottom: 10px; }
.footer a, .footer p { display: block; color: rgba(255,255,255,.85); font-size: 13px; line-height: 2; }
.footer a:hover { color: var(--gold); }
.footer-brand img { height: 46px; background: #fff; padding: 4px 8px; border-radius: 10px; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding: 14px 0; font-size: 12px; color: rgba(255,255,255,.6); text-align: center; }
@media (max-width: 640px) { .footer-brand p { display: none; } .footer a, .footer p { font-size: 12.5px; line-height: 1.9; } }

/* ── Toast ── */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--ink); color: #fff; padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 13.5px; z-index: 1500; opacity: 0; transition: all .3s; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%); }
.toast.success { background: var(--green); }
.toast.error { background: var(--red); }

/* ── Forms (checkout etc.) ── */
.field label { display: block; font-weight: 800; font-size: 12.5px; margin-bottom: 5px; color: var(--ink-mid); }
.field input, .field select, .field textarea { width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 11px 14px; font-family: inherit; font-size: 14px; background: #fff; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); }
.field { margin-bottom: 14px; }
.card-panel { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 20px; }

[data-anim] { opacity: 0; transform: translateY(14px); transition: all .5s ease; }
[data-anim].in { opacity: 1; transform: none; }

/* Mobile: centered logo + bottom browse nav */
@media (max-width: 860px) {
  .nav-main { display: grid; grid-template-columns: 44px minmax(0,1fr) 44px; grid-template-rows: 52px auto; grid-template-areas: 'burger logo icons' 'search search search'; align-items: center; row-gap: 8px; }
  .nav-logo { display: flex; align-items: center; justify-content: center; height: 52px; overflow: hidden; }
  .burger { grid-area: burger; }
  .nav-logo { grid-area: logo; justify-self: center; }
  .nav-logo img { height: 42px; }
  .nav-icons { grid-area: icons; justify-self: end; margin-left: 0; }
  .nav-search { grid-area: search; order: 0; flex-basis: auto; width: 100%; }
  body { padding-bottom: 66px; }
}
.bottom-nav { display: none; }
@media (max-width: 860px) {
  .bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1200; display: flex; background: #fff; border-top: 1.5px solid var(--line); padding: 6px 4px calc(6px + env(safe-area-inset-bottom)); }
  .bottom-nav a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 10.5px; font-weight: 800; color: var(--ink-mid); }
  .bottom-nav a span { font-size: 20px; }
  .bottom-nav a.on { color: var(--green); }
  .bottom-nav .bn-cart { position: relative; }
  .bottom-nav .bn-cart span { background: var(--green); width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: #fff; margin-top: -18px; box-shadow: var(--shadow); }
  .bottom-nav .bn-cart .nav-badge { position: absolute; top: -20px; right: 12px; }
}

/* ── Likkle Farm band + blog cards ── */
.game-band { background: linear-gradient(135deg, #14572a, #1e7d34); border-radius: 18px; padding: 26px 22px; margin: 34px 0; color: #fff; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; justify-content: space-between; box-shadow: 0 10px 26px rgba(20,87,42,.3); }
.game-band h3 { font-family: 'Archivo', sans-serif; font-size: 1.5rem; margin-bottom: 6px; }
.game-band p { opacity: .92; max-width: 460px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 18px; }
.blog-card { background: #fff; border: 1px solid #e4e0d3; border-radius: 14px; padding: 20px; text-decoration: none; color: inherit; display: block; transition: transform .15s, box-shadow .15s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(0,0,0,.09); }
.blog-card .bc-emoji { font-size: 1.8rem; }
.blog-card h4 { font-family: 'Archivo', sans-serif; margin: 8px 0 6px; color: #14572a; line-height: 1.3; }
.blog-card p { font-size: .9rem; color: #666; }
.article { max-width: 760px; margin: 0 auto; padding: 30px 18px 60px; }
.article h1 { font-family: 'Archivo', sans-serif; font-size: clamp(1.7rem, 5vw, 2.5rem); color: #14572a; line-height: 1.2; margin-bottom: 10px; }
.article .a-meta { color: #888; font-size: .88rem; margin-bottom: 24px; }
.article h2 { font-family: 'Archivo', sans-serif; color: #14572a; margin: 30px 0 10px; font-size: 1.35rem; }
.article p, .article li { line-height: 1.75; margin-bottom: 14px; color: #333; }
.article ul, .article ol { padding-left: 22px; margin-bottom: 14px; }
.article .a-tip { background: #fdf6df; border-left: 4px solid #f2b705; border-radius: 8px; padding: 14px 16px; margin: 18px 0; }
.article .a-cta { background: linear-gradient(135deg, #14572a, #1e7d34); color: #fff; border-radius: 14px; padding: 22px; margin: 30px 0; text-align: center; }
.article .a-cta a { color: #f2b705; font-weight: 800; }
.article table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .92rem; }
.article th, .article td { border: 1px solid #e0dccc; padding: 9px 10px; text-align: left; }
.article th { background: #f2efe4; font-family: 'Archivo', sans-serif; color: #14572a; }
