/* ============================================
   Design system v2 — "Fresh & Friendly"
   Warm green, rounded, photographic, playful layout.
   ============================================ */

:root {
  --green: #2B7D66;
  --green-dark: #216253;
  --green-deep: #1E463A;
  --green-light: #7FC4AE;
  --green-soft: #E6F4EE;
  --green-tint: #F1FAF6;
  --coral: #FF7A59;
  --coral-dark: #E8613F;
  --sun: #FFC24B;
  --bg: #FBFAF6;
  --surface: #FFFFFF;
  --ink: #17342A;
  --muted: #5E7168;
  --border: #E4EDE7;
  --font: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1120px;
  --shadow: 0 18px 40px -18px rgba(12, 110, 68, 0.28);
  --shadow-soft: 0 10px 30px -12px rgba(23, 52, 42, 0.16);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; }
img { max-width: 100%; display: block; }

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

a { color: var(--green-dark); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 246, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.2rem; color: var(--green-deep); text-decoration: none;
}
.logo .mark {
  width: 34px; height: 34px; display: block; flex-shrink: 0;
}
.logo-word {
  display: block; height: 56px; width: auto;
}
.logo .placeholder-tag {
  font-size: 0.58rem; font-weight: 700; color: var(--coral-dark);
  background: #FFEDE7; border-radius: 20px; padding: 3px 9px;
  margin-left: 4px; letter-spacing: 0.05em; text-transform: uppercase;
}
.main-nav { display: flex; gap: 8px; align-items: center; }
.main-nav a {
  text-decoration: none; color: var(--ink); font-size: 0.95rem; font-weight: 700;
  padding: 8px 14px; border-radius: 30px;
}
.main-nav a:hover { background: var(--green-soft); color: var(--green-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 14px 26px; border-radius: 30px;
  font-weight: 800; font-size: 0.98rem; text-decoration: none; cursor: pointer;
  border: none; font-family: var(--font); transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--green-dark); color: #fff; }
.btn-coral { background: var(--coral); color: var(--ink); box-shadow: 0 14px 30px -14px rgba(232,97,63,.6); }
.btn-coral:hover { background: var(--coral-dark); color: var(--ink); }
.btn-ghost { background: #fff; color: var(--green-dark); border: 2px solid var(--green-soft); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-dark); }

/* ---------- Photo zone (placeholder) ---------- */
.photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background:
    radial-gradient(120% 120% at 20% 10%, #CDEBE0 0%, transparent 55%),
    radial-gradient(120% 120% at 90% 90%, #B0DECD 0%, transparent 50%),
    linear-gradient(135deg, #A6D8C8 0%, #7FC4AE 100%);
}
.photo::after {
  content: attr(data-label);
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--green-deep); font-weight: 800; font-size: 0.82rem;
  text-align: center; padding: 20px; letter-spacing: 0.02em;
  opacity: 0.72;
}
.photo .cam {
  position: absolute; top: 14px; left: 14px; width: 30px; height: 30px;
  border-radius: 8px; background: rgba(255,255,255,.28); display: grid; place-items: center;
  font-size: 15px;
}
/* Real image in a photo zone: hides the placeholder gradient + label */
.photo.has-img { background: none; }
.photo.has-img::after { content: none; }
.photo.has-img .cam { display: none; }
.photo.has-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-blob {
  position: absolute; top: -140px; right: -160px; width: 620px; height: 620px;
  background: radial-gradient(circle at 40% 40%, var(--green-soft), transparent 70%);
  z-index: 0; pointer-events: none;
}
.hero .wrap {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  padding-top: 64px; padding-bottom: 80px;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-soft); color: var(--green-dark);
  font-weight: 800; font-size: 0.82rem; padding: 7px 15px; border-radius: 30px;
  margin-bottom: 22px;
}
.hero h1 { font-size: 3rem; margin: 0 0 18px; }
.hero h1 .hl {
  color: var(--green); position: relative; white-space: nowrap;
}
.hero h1 .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 10px;
  background: var(--sun); opacity: .5; border-radius: 6px; z-index: -1;
}
.hero p.lede { font-size: 1.22rem; color: var(--muted); max-width: 46ch; margin: 0 0 30px; font-weight: 600; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 0.9rem; color: var(--muted); font-weight: 600; }

.hero-media { position: relative; }
.hero-media .photo { aspect-ratio: 4 / 5; box-shadow: var(--shadow); transform: rotate(2deg); }
.hero-chip {
  position: absolute; bottom: -22px; left: -26px;
  background: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 12px; transform: rotate(-3deg);
}
.hero-chip .big { font-size: 1.5rem; font-weight: 800; color: var(--green); }
.hero-chip .small { font-size: 0.78rem; color: var(--muted); font-weight: 700; line-height: 1.3; }
.hero-chip2 {
  position: absolute; top: -18px; right: -14px;
  background: var(--coral); color: var(--ink); border-radius: 14px; padding: 10px 16px;
  font-weight: 800; font-size: 0.85rem; box-shadow: var(--shadow-soft); transform: rotate(4deg);
}

/* ---------- Curved divider ---------- */
.curve { display: block; width: 100%; height: 60px; }

/* ---------- How it works ---------- */
.how { background: var(--green-tint); padding: 20px 0 80px; }
.how h2 { font-size: 2rem; text-align: center; margin: 0 0 8px; }
.how .sub { text-align: center; color: var(--muted); font-weight: 600; margin: 0 0 48px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: #fff; border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-soft); position: relative;
}
.step .num {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; font-size: 1.1rem; color: #fff; margin-bottom: 16px;
}
.step:nth-child(1) .num { background: var(--green); }
.step:nth-child(2) .num { background: var(--coral); color: var(--ink); }
.step:nth-child(3) .num { background: var(--sun); color: var(--green-deep); }
.step h3 { margin: 0 0 8px; font-size: 1.2rem; }
.step p { margin: 0; color: var(--muted); font-weight: 600; font-size: 0.98rem; }

/* ---------- Featured ---------- */
.featured { padding: 80px 0; }
.featured-head { text-align: center; margin-bottom: 40px; }
.featured-head h2 { font-size: 2rem; margin: 0 0 8px; }
.featured-head p { color: var(--muted); font-weight: 600; margin: 0; }
.feature-card {
  background: #fff; border-radius: 28px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 0.9fr 1.1fr; overflow: hidden;
}
.feature-card .photo { aspect-ratio: auto; border-radius: 0; min-height: 340px; }
.feature-card .fc-body { padding: 44px 46px; }
.feature-card .tag {
  display: inline-block; background: var(--green-soft); color: var(--green-dark);
  font-weight: 800; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 6px 13px; border-radius: 20px; margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.7rem; margin: 0 0 14px; }
.feature-card p { color: var(--muted); font-weight: 600; margin: 0 0 26px; }
.feature-card .fc-foot { display: flex; align-items: center; gap: 20px; }
.feature-card .price { font-size: 1.8rem; font-weight: 800; color: var(--green-deep); }

/* ---------- Trust ---------- */
.trust { background: var(--green-deep); color: #fff; padding: 84px 0; }
.trust .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.trust .photo { aspect-ratio: 5 / 4; box-shadow: var(--shadow); }
.trust h2 { font-size: 2.1rem; margin: 0 0 18px; }
.trust p { color: #C7E6D5; font-weight: 600; font-size: 1.05rem; margin: 0 0 20px; }
.trust .checks { list-style: none; padding: 0; margin: 0 0 28px; }
.trust .checks li { padding-left: 32px; position: relative; margin-bottom: 12px; font-weight: 700; }
.trust .checks li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 22px; height: 22px; border-radius: 50%; background: var(--green);
  color: #fff; display: grid; place-items: center; font-size: 0.8rem;
}
.trust a.btn-coral { color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { padding: 56px 0; }
.site-footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 0.95rem; color: var(--muted); text-decoration: none; font-weight: 700; }
.footer-links a:hover { color: var(--green-dark); }
.footer-note { font-size: 0.88rem; color: var(--muted); font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 60px; padding-bottom: 60px; }
  .hero h1 { font-size: 2.3rem; }
  .steps { grid-template-columns: 1fr; }
  .feature-card { grid-template-columns: 1fr; }
  .feature-card .photo { min-height: 220px; }
  .trust .wrap { grid-template-columns: 1fr; gap: 36px; }
  .main-nav { display: none; }
}

a:focus-visible, .btn:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto; } }

/* ============================================
   v2 components — catalog, product, content, faq
   ============================================ */

/* ---------- Page intro ---------- */
.page-intro { padding: 56px 0 8px; }
.page-intro h1 { font-size: 2.4rem; margin: 0 0 12px; }
.page-intro p { color: var(--muted); font-weight: 600; font-size: 1.1rem; max-width: 60ch; margin: 0; }

/* ---------- Catalog grid ---------- */
.catalog { padding: 40px 0 80px; }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.cat-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-soft); text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; transition: transform .12s ease, box-shadow .12s ease;
  border: 1px solid var(--border);
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-card .tag {
  align-self: flex-start; background: var(--green-soft); color: var(--green-dark);
  font-weight: 800; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 6px 12px; border-radius: 20px; margin-bottom: 16px;
}
.cat-card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.cat-card p { margin: 0 0 22px; color: var(--muted); font-weight: 600; font-size: 0.97rem; flex-grow: 1; }
.cat-card .price { font-size: 1.35rem; font-weight: 800; color: var(--green-deep); }
.cat-card.soon { background: var(--green-tint); box-shadow: none; cursor: default; }
.cat-card.soon .tag { background: #FFEDE7; color: var(--coral-dark); }
.cat-card.soon h3, .cat-card.soon p { color: var(--muted); }
.cat-card.soon .price { color: var(--muted); font-size: 1rem; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 0.9rem; color: var(--muted); font-weight: 600; padding: 40px 0 0; }
.breadcrumb a { color: var(--green-dark); text-decoration: none; }

/* ---------- Product detail ---------- */
.product-detail { padding: 24px 0 80px; }
.pd-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: start; }
.pd-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.pd-media img { width: 100%; display: block; }
.pd-info h1 { font-size: 2.1rem; margin: 12px 0 10px; }
.pd-info .price-tag { font-size: 1.9rem; font-weight: 800; color: var(--green-deep); margin: 0 0 18px; }
.pd-info .desc { color: var(--muted); font-weight: 600; margin: 0 0 24px; }
.buy-note { font-size: 0.9rem; color: var(--muted); font-weight: 600; margin-top: 12px; }
.included { list-style: none; padding: 0; margin: 28px 0 0; }
.included li { padding-left: 30px; position: relative; margin-bottom: 12px; font-weight: 600; }
.included li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%; background: var(--green-soft);
  color: var(--green-dark); display: grid; place-items: center; font-size: 0.75rem; font-weight: 800;
}
.info-box {
  background: var(--green-tint); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 24px 26px; margin: 36px 0;
}
.info-box h3 { margin: 0 0 10px; font-size: 1.05rem; }
.info-box p { color: var(--muted); font-weight: 600; font-size: 0.94rem; margin: 0; }

/* ---------- FAQ + content ---------- */
.content { padding: 40px 0 80px; max-width: 74ch; margin: 0 auto; }
.content h2 { font-size: 1.5rem; margin: 40px 0 12px; }
.content p { color: var(--ink); }
.content .lede { font-size: 1.2rem; color: var(--muted); font-weight: 600; }
.faq-item { border-bottom: 1px solid var(--border); padding: 26px 0; }
.faq-item h3 { margin: 0 0 10px; font-size: 1.12rem; }
.faq-item p { margin: 0; color: var(--muted); font-weight: 600; }
.faq-narrow { max-width: 680px; }

/* ---------- Download ---------- */
.download-box { max-width: 540px; margin: 90px auto; text-align: center; padding: 0 24px; }
.download-box .status-icon {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 22px;
  background: var(--green-soft); color: var(--green-dark);
  display: grid; place-items: center; font-size: 2rem; font-weight: 800;
}
.download-box h1 { font-size: 1.7rem; margin: 0 0 12px; }
.download-box p { color: var(--muted); font-weight: 600; margin: 0 0 26px; }

@media (max-width: 860px) {
  .pd-grid { grid-template-columns: 1fr; gap: 30px; }
  .page-intro h1 { font-size: 1.9rem; }
}

/* ---------- Footer disclaimer ---------- */
.footer-disclaimer {
  border-top: 1px solid var(--border);
  margin-top: 28px;
  padding-top: 20px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.5;
  max-width: 70ch;
}

/* ---------- Catalog search + filter ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.catalog-controls {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px 24px; flex-wrap: wrap; margin: 8px 0 12px;
}
.search-wrap { position: relative; flex: 1 1 260px; max-width: 380px; }
.search-wrap .search-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--muted); font-size: 1.15rem; pointer-events: none;
}
#cat-search {
  width: 100%; font-family: var(--font); font-size: 1rem; font-weight: 600;
  color: var(--ink); background: #fff;
  border: 1.5px solid var(--border); border-radius: 30px;
  padding: 12px 18px 12px 42px; -webkit-appearance: none;
}
#cat-search::placeholder { color: var(--muted); font-weight: 600; }
#cat-search:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }

.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--font); font-weight: 700; font-size: 0.88rem; cursor: pointer;
  color: var(--green-dark); background: #fff; border: 1.5px solid var(--border);
  border-radius: 30px; padding: 8px 16px; transition: background .12s ease, border-color .12s ease, color .12s ease;
}
.chip:hover { border-color: var(--green); background: var(--green-soft); }
.chip.active { background: var(--green); border-color: var(--green); color: #fff; }
.chip:focus-visible { outline: 3px solid var(--sun); outline-offset: 2px; }

.catalog-count { color: var(--muted); font-weight: 700; font-size: 0.9rem; margin: 0 0 18px; }
.catalog-empty {
  text-align: center; color: var(--muted); font-weight: 600;
  padding: 48px 20px; margin: 0;
}

@media (max-width: 640px) {
  .catalog-controls { flex-direction: column; align-items: stretch; }
  .search-wrap { max-width: none; }
}
