/* ==========================================================================
   Tropiplants — one stylesheet, sectioned.
   Palette: deep jungle green + leaf + mango + dragonfruit pink on warm cream.
   ========================================================================== */

/* --- 1. Tokens ---------------------------------------------------------- */
:root {
  --deep:      #0d3d21;
  --jungle:    #14522c;
  --leaf:      #1b6b3a;
  --leaf-lite: #2d8b51;
  --mango:     #f5a623;
  --mango-dk:  #d98b0d;
  --dragon:    #e0457b;
  --sky:       #2f9fb5;

  --cream:     #fdfbf4;
  --sand:      #f4f7f2;
  --sand-2:    #e9efe6;
  --line:      #dde5d9;

  --ink:       #1a2b18;
  --ink-soft:  #3f5139;
  --ink-mute:  #6b7d67;

  --radius:    14px;
  --radius-lg: 22px;
  --shadow:    0 1px 3px rgba(13,61,33,.07), 0 8px 24px -12px rgba(13,61,33,.18);
  --shadow-lg: 0 4px 12px rgba(13,61,33,.09), 0 24px 48px -20px rgba(13,61,33,.28);

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --disp: 'Fraunces', Georgia, 'Times New Roman', serif;

  --wrap: 1200px;
}

/* --- 2. Reset ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--leaf); text-decoration: none; }
a:hover { color: var(--jungle); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }

h1, h2, h3, h4 { font-family: var(--disp); line-height: 1.15; letter-spacing: -.02em; color: var(--deep); font-weight: 700; }

:focus-visible { outline: 3px solid var(--mango); outline-offset: 2px; border-radius: 4px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--deep); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; color: #fff; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

/* --- 3. Ticker ---------------------------------------------------------- */
.ticker {
  background: var(--deep); color: #dfeadb;
  font-size: 12.5px; letter-spacing: .02em;
  display: flex; justify-content: center; align-items: center; gap: 14px;
  padding: 9px 16px; flex-wrap: wrap; text-align: center;
}
.ticker .dot { opacity: .4; }

/* --- 4. Header ---------------------------------------------------------- */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,251,244,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.head-inner {
  display: flex; align-items: center; gap: 20px;
  min-height: 72px;
}

.brand {
  font-family: var(--disp); font-weight: 900; font-size: 25px;
  color: var(--deep); letter-spacing: -.03em; white-space: nowrap; flex-shrink: 0;
}
.brand span { color: var(--mango); }
.brand:hover { color: var(--jungle); }

.site-nav { display: flex; gap: 4px; flex-wrap: wrap; margin-left: auto; }
.site-nav a {
  color: var(--ink-soft); font-size: 14.5px; font-weight: 500;
  padding: 8px 12px; border-radius: 999px; white-space: nowrap;
  transition: background .15s, color .15s;
}
.site-nav a:hover { background: var(--sand-2); color: var(--deep); }
.site-nav a.on { background: var(--deep); color: var(--cream); }

.head-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.search { position: relative; display: flex; }
.search input {
  width: 170px; padding: 9px 34px 9px 14px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--sand); font-size: 14px; transition: width .2s, border-color .2s;
}
.search input:focus { width: 220px; border-color: var(--leaf); outline: none; background: #fff; }
.search button {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; font-size: 18px; color: var(--ink-mute);
}

.cart-btn {
  position: relative; font-size: 21px; line-height: 1;
  padding: 9px 12px; border-radius: 999px; background: var(--sand-2);
  transition: background .15s;
}
.cart-btn:hover { background: var(--line); }
.cart-btn em {
  position: absolute; top: -3px; right: -3px;
  background: var(--dragon); color: #fff;
  font-style: normal; font-size: 11px; font-weight: 700;
  min-width: 19px; height: 19px; border-radius: 999px;
  display: grid; place-items: center; padding: 0 5px;
  border: 2px solid var(--cream);
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 22px; height: 2px; background: var(--deep); border-radius: 2px; transition: transform .2s, opacity .2s; }

/* --- 5. Flash ----------------------------------------------------------- */
.flash { padding: 12px 0; font-size: 14.5px; font-weight: 500; }
.flash-ok    { background: #e4f3e8; color: #14522c; border-bottom: 1px solid #c3e2cd; }
.flash-error { background: #fdeaef; color: #9c1e42; border-bottom: 1px solid #f6c8d6; }
.flash-info  { background: #fff5e2; color: #7a5000; border-bottom: 1px solid #ffe2ad; }

/* --- 6. Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px;
  font-size: 15px; font-weight: 600; letter-spacing: .01em;
  border: 1.5px solid transparent; text-align: center;
  transition: transform .12s, box-shadow .15s, background .15s, color .15s;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--leaf); color: var(--cream); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--jungle); color: #fff; box-shadow: var(--shadow-lg); }

.btn-mango { background: var(--mango); color: #3a2600; box-shadow: var(--shadow); }
.btn-mango:hover { background: var(--mango-dk); color: #2c1c00; box-shadow: var(--shadow-lg); }

.btn-ghost { background: transparent; color: var(--deep); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--leaf); background: var(--sand); color: var(--deep); }

.btn-block { width: 100%; }
.btn-lg { padding: 16px 34px; font-size: 16.5px; }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }

/* --- 7. Hero ------------------------------------------------------------ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(245,166,35,.22), transparent 62%),
    radial-gradient(800px 480px at 8% 108%, rgba(224,69,123,.16), transparent 60%),
    linear-gradient(158deg, var(--deep) 0%, var(--jungle) 48%, var(--leaf) 100%);
  color: var(--cream);
  padding: clamp(64px, 10vw, 116px) 0 clamp(72px, 11vw, 128px);
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(255,255,255,.05) 0 2px, transparent 2px),
    radial-gradient(circle at 78% 68%, rgba(255,255,255,.05) 0 2px, transparent 2px);
  background-size: 190px 190px, 260px 260px;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.18);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 26px;
  color: #ffe6b8;
}

.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.4rem);
  color: var(--cream); line-height: 1.02; margin-bottom: 22px; font-weight: 900;
}
.hero h1 .accent { color: var(--mango); }
.hero p.lede { font-size: clamp(1.05rem, 2vw, 1.25rem); opacity: .9; max-width: 560px; margin-bottom: 34px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 1;
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero-stats div strong {
  display: block; font-family: var(--disp); font-size: 30px; color: var(--mango); line-height: 1;
}
.hero-stats div span { font-size: 13.5px; opacity: .78; }

/* --- 8. Sections -------------------------------------------------------- */
.section { padding: clamp(56px, 8vw, 92px) 0; }
.section-sand { background: var(--sand); }

.sec-head { margin-bottom: 40px; max-width: 680px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 12px; }
.sec-head p { color: var(--ink-soft); font-size: 17px; }

.sec-bar { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.sec-bar h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
.sec-bar a { font-weight: 600; font-size: 15px; white-space: nowrap; }

/* --- 9. Category tiles -------------------------------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 18px; }
.cat-tile {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); padding: 30px 24px 26px;
  background: linear-gradient(150deg, var(--jungle), var(--leaf));
  color: var(--cream); min-height: 190px;
  display: flex; flex-direction: column; justify-content: end;
  transition: transform .2s, box-shadow .2s;
}
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: var(--cream); }
.cat-tile .ce {
  position: absolute; top: 16px; right: 18px; font-size: 54px;
  opacity: .32; transition: transform .3s, opacity .2s;
}
.cat-tile:hover .ce { transform: scale(1.12) rotate(-6deg); opacity: .45; }
.cat-tile h3 { color: var(--cream); font-size: 21px; margin-bottom: 5px; }
.cat-tile p { font-size: 13.5px; opacity: .82; line-height: 1.45; }

.cat-tile.c-bananas      { background: linear-gradient(150deg, #6b5a06, #a8891a); }
.cat-tile.c-dragon-fruit { background: linear-gradient(150deg, #7a1740, #c2356d); }
.cat-tile.c-pineapples   { background: linear-gradient(150deg, #8a5a06, #d1901c); }
.cat-tile.c-fruit-trees  { background: linear-gradient(150deg, #14522c, #2d8b51); }
.cat-tile.c-rare-exotic  { background: linear-gradient(150deg, #1c4a63, #2f9fb5); }

/* --- 10. Product cards -------------------------------------------------- */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 24px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--leaf-lite); }

.card-media { position: relative; display: block; }
.card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.ph { display: grid; place-items: center; background: linear-gradient(150deg, var(--sand-2), var(--line)); }
.ph-emoji { font-size: 64px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.14)); }
.ph-bananas      { background: linear-gradient(150deg, #fdf3cf, #f3dc8a); }
.ph-dragon-fruit { background: linear-gradient(150deg, #fde3ed, #f5b9d0); }
.ph-pineapples   { background: linear-gradient(150deg, #fdf0d8, #f5d391); }
.ph-fruit-trees  { background: linear-gradient(150deg, #e2f2e5, #b3ddc0); }
.ph-rare-exotic  { background: linear-gradient(150deg, #ddeff3, #a9d8e2); }

.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; color: #fff;
}
.badge-sale { background: var(--dragon); }
.badge-low  { background: var(--mango); color: #3a2600; }
.badge-out  { background: #6b7d67; }
.badge-star { background: var(--deep); }

.card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.card-cat { font-size: 11.5px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--leaf); margin-bottom: 7px; }
.card-body h3 { font-size: 18px; margin-bottom: 4px; line-height: 1.2; }
.card-body h3 a { color: var(--deep); }
.card-body h3 a:hover { color: var(--leaf); }
.card-bot { font-size: 12.5px; font-style: italic; color: var(--ink-mute); margin-bottom: 10px; }
.card-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin-bottom: 16px; flex: 1; }

.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { font-family: var(--disp); font-size: 22px; font-weight: 700; color: var(--deep); }
.price s { font-family: var(--sans); font-size: 14px; font-weight: 400; color: var(--ink-mute); margin-left: 7px; }

.btn-add {
  padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 600;
  background: var(--deep); color: var(--cream); white-space: nowrap;
  transition: background .15s, transform .12s;
}
.btn-add:hover { background: var(--leaf); }
.btn-add:active { transform: scale(.96); }
.btn-add:disabled { background: var(--sand-2); color: var(--ink-mute); }

/* --- 11. Shop toolbar --------------------------------------------------- */
.shop-head { background: var(--sand); border-bottom: 1px solid var(--line); padding: 42px 0 34px; }
.shop-head h1 { font-size: clamp(2rem, 4.4vw, 2.9rem); margin-bottom: 10px; }
.shop-head p { color: var(--ink-soft); max-width: 640px; }

.toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; padding: 22px 0 26px;
}
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 8px 16px; border-radius: 999px; font-size: 14px; font-weight: 500;
  background: var(--sand); border: 1px solid var(--line); color: var(--ink-soft);
  transition: all .15s;
}
.chip:hover { border-color: var(--leaf); color: var(--deep); }
.chip.on { background: var(--deep); border-color: var(--deep); color: var(--cream); }

.sortbox { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink-mute); }
.sortbox select {
  padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px;
  background: #fff; font-size: 14px; cursor: pointer;
}

.empty { text-align: center; padding: 80px 20px; color: var(--ink-mute); }
.empty .big { font-size: 52px; margin-bottom: 14px; }

/* --- 12. Product detail ------------------------------------------------- */
.crumbs { font-size: 13.5px; color: var(--ink-mute); padding: 20px 0; }
.crumbs a { color: var(--ink-mute); }
.crumbs a:hover { color: var(--leaf); }
.crumbs span { opacity: .5; margin: 0 7px; }

.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); padding-bottom: 72px; align-items: start; }
.pdp-media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); position: sticky; top: 96px; }
.pdp-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.pdp-media .ph { aspect-ratio: 1/1; }
.pdp-media .ph-emoji { font-size: 128px; }

.pdp-cat { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--leaf); margin-bottom: 10px; }
.pdp h1 { font-size: clamp(2rem, 4.2vw, 2.9rem); margin-bottom: 8px; }
.pdp .bot { font-style: italic; color: var(--ink-mute); font-size: 16px; margin-bottom: 22px; }

.pdp-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.pdp-price .price { font-size: 34px; }
.save { background: #fdeaef; color: #9c1e42; font-size: 13px; font-weight: 600; padding: 4px 11px; border-radius: 999px; }

.stock { font-size: 14px; font-weight: 500; margin-bottom: 24px; display: flex; align-items: center; gap: 7px; }
.stock::before { content: ''; width: 8px; height: 8px; border-radius: 50%; }
.stock.in::before   { background: var(--leaf-lite); }
.stock.low::before  { background: var(--mango); }
.stock.out::before  { background: #b04141; }
.stock.in   { color: var(--leaf); }
.stock.low  { color: var(--mango-dk); }
.stock.out  { color: #b04141; }

.buybox {
  background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px; margin-bottom: 28px;
}
.qty-row { display: flex; gap: 12px; align-items: stretch; }
.qty {
  display: flex; align-items: center; border: 1px solid var(--line);
  border-radius: 999px; background: #fff; overflow: hidden; flex-shrink: 0;
}
.qty button { width: 42px; height: 100%; font-size: 19px; color: var(--ink-soft); }
.qty button:hover { background: var(--sand-2); color: var(--deep); }
.qty input {
  width: 46px; text-align: center; border: 0; font-weight: 600; font-size: 15px;
  -moz-appearance: textfield; background: transparent;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.trust { display: flex; flex-direction: column; gap: 9px; margin-top: 18px; font-size: 13.5px; color: var(--ink-soft); }
.trust div { display: flex; gap: 9px; align-items: flex-start; }

.pdp-desc { font-size: 16px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 30px; }
.pdp-desc p + p { margin-top: 15px; }

.spec-title { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--deep); margin-bottom: 14px; }
.specs { border-top: 1px solid var(--line); margin-bottom: 30px; }
.specs div { display: flex; justify-content: space-between; gap: 18px; padding: 11px 2px; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.specs dt { color: var(--ink-mute); flex-shrink: 0; }
.specs dd { text-align: right; font-weight: 500; color: var(--ink); }

.callout {
  background: var(--sand); border-left: 3px solid var(--mango);
  border-radius: 0 10px 10px 0; padding: 16px 20px; font-size: 14.5px;
  color: var(--ink-soft); line-height: 1.65; margin-bottom: 24px;
}
.callout strong { color: var(--deep); }
.callout.warn { border-left-color: var(--dragon); background: #fdf2f6; }

/* --- 13. Cart ----------------------------------------------------------- */
.cart-wrap { display: grid; grid-template-columns: 1fr 350px; gap: 40px; align-items: start; padding: 36px 0 80px; }

.cart-line {
  display: grid; grid-template-columns: 92px 1fr auto; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid var(--line); align-items: center;
}
.cart-line .thumb { width: 92px; aspect-ratio: 1/1; border-radius: 12px; overflow: hidden; }
.cart-line .thumb .ph-emoji { font-size: 40px; }
.cart-line h3 { font-size: 16.5px; margin-bottom: 3px; }
.cart-line .bot { font-size: 12.5px; font-style: italic; color: var(--ink-mute); margin-bottom: 9px; }
.cart-line .each { font-size: 13px; color: var(--ink-mute); }
.cart-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.cart-right .lt { font-family: var(--disp); font-size: 19px; font-weight: 700; color: var(--deep); }
.rm { font-size: 13px; color: var(--ink-mute); text-decoration: underline; background: none; }
.rm:hover { color: #b04141; }

.summary {
  background: var(--sand); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px; position: sticky; top: 96px;
}
.summary h2 { font-size: 20px; margin-bottom: 18px; }
.sum-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 15px; color: var(--ink-soft); }
.sum-row.total {
  border-top: 2px solid var(--deep); margin-top: 12px; padding-top: 15px;
  font-family: var(--disp); font-size: 21px; font-weight: 700; color: var(--deep);
}
.freebar { background: #fff; border: 1px dashed var(--leaf-lite); border-radius: 10px; padding: 12px 14px; font-size: 13.5px; color: var(--leaf); margin: 14px 0; }
.freebar .track { height: 5px; background: var(--sand-2); border-radius: 999px; margin-top: 9px; overflow: hidden; }
.freebar .fill { height: 100%; background: linear-gradient(90deg, var(--leaf-lite), var(--mango)); border-radius: 999px; }

/* --- 14. Confirmation --------------------------------------------------- */
.confirm { max-width: 660px; margin-inline: auto; padding: 70px 0 96px; text-align: center; }
.confirm .tick { font-size: 66px; margin-bottom: 20px; }
.confirm h1 { font-size: clamp(2rem, 4.4vw, 2.8rem); margin-bottom: 12px; }
.confirm .sub { color: var(--ink-soft); font-size: 17px; margin-bottom: 34px; }
.receipt {
  background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; text-align: left; margin-bottom: 28px;
}
.receipt .num { font-family: var(--disp); font-size: 20px; color: var(--deep); margin-bottom: 18px; }

/* --- 15. Content pages -------------------------------------------------- */
.page-head { background: var(--sand); border-bottom: 1px solid var(--line); padding: 52px 0 44px; }
.page-head h1 { font-size: clamp(2.1rem, 4.6vw, 3rem); margin-bottom: 12px; }
.page-head p { color: var(--ink-soft); font-size: 17.5px; max-width: 660px; }

.prose { max-width: 760px; padding: 52px 0 84px; font-size: 16.5px; color: var(--ink-soft); line-height: 1.78; }
.prose h2 { font-size: 27px; margin: 42px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 19px; margin: 30px 0 10px; }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--deep); }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 22px; font-size: 15px; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.prose th { background: var(--sand); color: var(--deep); font-weight: 600; }

.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item h3 { margin: 0 0 8px; font-size: 18px; }
.faq-item p { margin: 0; }

/* --- 16. Value props ---------------------------------------------------- */
.vp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; }
.vp { text-align: center; padding: 8px; }
.vp .ico { font-size: 38px; margin-bottom: 14px; }
.vp h3 { font-size: 18px; margin-bottom: 7px; }
.vp p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

/* --- 17. Newsletter ----------------------------------------------------- */
.news {
  background: linear-gradient(150deg, var(--deep), var(--leaf));
  color: var(--cream); border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 60px); text-align: center;
}
.news h2 { color: var(--cream); font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin-bottom: 10px; }
.news p { opacity: .85; max-width: 460px; margin: 0 auto 26px; }
.news form { display: flex; gap: 10px; max-width: 440px; margin-inline: auto; flex-wrap: wrap; }
.news input {
  flex: 1; min-width: 200px; padding: 14px 20px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.11);
  color: var(--cream); font-size: 15px;
}
.news input::placeholder { color: rgba(253,251,244,.55); }
.news input:focus { outline: none; border-color: var(--mango); background: rgba(255,255,255,.17); }

/* --- 18. Forms ---------------------------------------------------------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--deep); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 15px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; font-size: 15px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--leaf); box-shadow: 0 0 0 3px rgba(27,107,58,.11); }
.field textarea { min-height: 130px; resize: vertical; }
.field .hint { font-size: 13px; color: var(--ink-mute); margin-top: 5px; }
.form-narrow { max-width: 560px; }

/* --- 19. Footer --------------------------------------------------------- */
.site-foot { background: var(--deep); color: #c9d8c4; padding: 62px 0 0; margin-top: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.foot-brand .brand { color: var(--cream); margin-bottom: 14px; display: inline-block; }
.foot-brand p { font-size: 14.5px; opacity: .72; max-width: 300px; line-height: 1.65; }
.site-foot h4 { color: var(--cream); font-size: 14px; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 14px; font-family: var(--sans); font-weight: 700; }
.site-foot a { display: block; color: #c9d8c4; font-size: 14.5px; padding: 4px 0; opacity: .82; }
.site-foot a:hover { color: var(--mango); opacity: 1; }
.foot-base {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 24px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 13.5px; opacity: .68;
}
.foot-base a { display: inline; color: #c9d8c4; }

/* --- 20. Responsive ----------------------------------------------------- */
@media (max-width: 1080px) {
  .site-nav a { padding: 8px 9px; font-size: 14px; }
  .search input { width: 130px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 12px 24px 20px; gap: 2px;
    box-shadow: var(--shadow-lg);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 14px; font-size: 15.5px; border-radius: 10px; }
  .head-actions { order: 3; }
  .nav-toggle { order: 4; margin-left: 0; }
  .search { display: none; }

  .pdp { grid-template-columns: 1fr; }
  .pdp-media { position: static; max-width: 480px; }
  .cart-wrap { grid-template-columns: 1fr; }
  .summary { position: static; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 560px) {
  .wrap { padding-inline: 18px; }
  .hero-stats { gap: 26px; }
  .hero-stats div strong { font-size: 25px; }
  .prod-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .card-body { padding: 14px 15px 16px; }
  .card-body h3 { font-size: 15.5px; }
  .card-desc { display: none; }
  .card-foot { flex-direction: column; align-items: stretch; gap: 9px; }
  .btn-add { width: 100%; }
  .price { font-size: 19px; }
  .cart-line { grid-template-columns: 68px 1fr; }
  .cart-line .thumb { width: 68px; }
  .cart-right { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
  .foot-grid { grid-template-columns: 1fr; }
  .toolbar { gap: 12px; }
}

/* --- 21. Motion --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
