/* Nature Freak — אתר מכירה | עיצוב משותף לכל הדפים */

@font-face {
  font-family: 'Heebo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/heebo-hebrew.woff2') format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
@font-face {
  font-family: 'Heebo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/heebo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --green: #218a5a;
  --green-deep: #1e7a4f;
  --green-dark: #1c4d38;
  --green-darker: #143829;
  --on-dark: #d9e8de;
  --on-dark-strong: #7dbb9a;
  --cream: #faf7f0;
  --cream-alt: #f1efe6;
  --border: #e3ddcd;
  --border-dash: #ddd6c4;
  --ink: #24312b;
  --ink-strong: #1c2b23;
  --text-secondary: #57534a;
  --text-muted: #6f6a5c;
  --text-faint: #8a8577;
  --pink: #e8829e;
  --lavender: #9787ab;
  --yellow: #f8d870;
  --gold: #d9b45a;
  --ease: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* CSS הרשמי של Lenis (motion.js) - נדרש כדי שהגלילה החלקה תתנהג נכון */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Heebo', 'Segoe UI', Arial, sans-serif;
  direction: rtl;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { color: var(--ink-strong); margin: 0; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
br.lg-only { display: none; }
@media (min-width: 640px) { br.lg-only { display: revert; } }

/* ===== dotted texture ===== */
.dots-bg {
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* ===== באנר חג (עונתי) ===== */
.holiday-banner {
  background: linear-gradient(90deg, var(--pink), var(--lavender)); color: #fff;
  text-align: center; font-size: 13.5px; font-weight: 700; padding: 10px 16px;
}
.holiday-banner .container { padding: 0; max-width: none; }

/* ===== header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 240, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.brand-mark { display: flex; align-items: center; gap: 10px; }
.brand-mark img { width: 48px; height: 48px; border-radius: 999px; transition: transform .4s var(--ease); }
.brand-mark:hover img { transform: rotate(-8deg) scale(1.06); }
.brand-mark .name { font-family: Georgia, 'Times New Roman', serif; font-size: 20px; font-weight: bold; color: var(--green); }
.nav-links { display: flex; gap: 28px; font-size: 15px; font-weight: 600; }
.nav-links a { color: var(--ink); position: relative; padding: 4px 0; transition: color .2s; }
.nav-links a:hover { color: var(--green); }
.nav-links a::after {
  content: ""; position: absolute; right: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--green); transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-ig {
  display: flex; align-items: center; justify-content: center; width: 32px; height: 32px;
  border-radius: 999px; border: 1px solid var(--border); transition: transform .3s var(--ease), border-color .3s;
}
.nav-ig svg { width: 17px; height: 17px; }
.nav-ig:hover { transform: translateY(-2px) scale(1.06); border-color: transparent; }
.nav-cta {
  display: flex; align-items: center; justify-content: center; width: 32px; height: 32px;
  border-radius: 999px; border: 1px solid var(--border); color: #25D366;
  transition: transform .3s var(--ease), border-color .3s;
}
.nav-cta svg { width: 18px; height: 18px; }
.nav-cta:hover { transform: translateY(-2px) scale(1.06); border-color: transparent; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 820px) {
  .nav-links { position: fixed; inset: 62px 0 0 0; background: var(--cream); flex-direction: column;
    align-items: center; justify-content: center; gap: 26px; font-size: 19px;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-toggle { display: block; }
}

/* ===== כניסה עדינה - CSS טהור, לא תלוי ב-JS ===== */
/* animation-fill-mode:both מבטיח שהאלמנט מתחיל מוסתר ומסתיים גלוי בלי שום תלות בסקריפט -
   אם script.js לא רץ מכל סיבה, התוכן עדיין יופיע (רק בלי המדרוג העדין) */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
/* ה-fallback הזה רץ רק בלי JS - כש-assets/motion.js פעיל הוא משתלט על אותם אלמנטים
   עם ScrollTrigger אמיתי (כניסה כשנכנסים לתצוגה, לא כבר בטעינה) */
@media (scripting: none) and (prefers-reduced-motion: no-preference) {
  .reveal { animation: fadeUp .8s var(--ease) both; }
  .stagger > * { animation: fadeUp .7s var(--ease) both; }
  .stagger > *:nth-child(1)  { animation-delay: .03s; }
  .stagger > *:nth-child(2)  { animation-delay: .09s; }
  .stagger > *:nth-child(3)  { animation-delay: .15s; }
  .stagger > *:nth-child(4)  { animation-delay: .21s; }
  .stagger > *:nth-child(5)  { animation-delay: .27s; }
  .stagger > *:nth-child(6)  { animation-delay: .33s; }
  .stagger > *:nth-child(7)  { animation-delay: .39s; }
  .stagger > *:nth-child(8)  { animation-delay: .45s; }
  .stagger > *:nth-child(9)  { animation-delay: .51s; }
  .stagger > *:nth-child(10) { animation-delay: .57s; }
  .stagger > *:nth-child(11) { animation-delay: .63s; }
}

/* ===== hero ===== */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-darker);
}
/* wrapper גבוה יותר מ-.hero כדי שיהיה מרווח לפרלקס הגלילה (motion.js) בלי לחשוף קצוות ריקים -
   ה-Ken Burns נשאר על ה-img עצמו כדי לא להתנגש עם ה-transform שה-GSAP מזיז על ה-wrap */
.hero-bg-wrap { position: absolute; inset: -25% 0; width: 100%; height: 150%; }
.hero img.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center 70%; opacity: .96; transform: scale(1);
  animation: heroKenBurns 24s ease-in-out infinite alternate;
}
@keyframes heroKenBurns { from { transform: scale(1); } to { transform: scale(1.045); } }
@media (prefers-reduced-motion: reduce) { .hero img.hero-bg { animation: none; } }
.hero img.hero-bg.workshop-shot { object-position: center 32%; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  /* כהות עדינה ומדורגת - העליון כמעט שקוף כדי שפרטי התמונה יראו, מתעצם רק לקראת אזור הטקסט למטה */
  background: linear-gradient(180deg, rgba(10,22,17,.1) 0%, rgba(10,22,17,.28) 45%, rgba(8,19,14,.65) 78%, rgba(8,19,14,.82) 100%);
}
.hero .container { position: relative; z-index: 1; text-align: center; }
.hero .kicker, .hero h1, .hero p.lead { text-shadow: 0 2px 20px rgba(0,0,0,.4); }
.hero .hero-title {
  font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-weight: bold;
  color: var(--gold); font-size: clamp(48px, 9vw, 92px); line-height: 1.05; letter-spacing: .5px;
  margin-bottom: 22px;
  text-shadow: 0 2px 10px rgba(0,0,0,.6), 0 14px 46px rgba(0,0,0,.55);
}
/* "Planting Art" הוא שם המותג באנגלית בתוך מסמך RTL - כש-SplitText מפצל אותו למילים
   נפרדות, כל מילה הופכת ל-inline box נפרד וה-bidi של הדפדפן היה הופך את סדר המילים
   (Art Planting) בלי ה-direction:ltr המפורש כאן */
.hero-title [data-split-reveal] { direction: ltr; unicode-bidi: isolate; }
.hero .hero-title .tagline {
  display: block; font-family: 'Heebo', 'Segoe UI', Arial, sans-serif; font-style: normal; font-weight: 600;
  color: #fff; font-size: clamp(15px, 2vw, 19px); letter-spacing: 1.5px; margin-top: 12px;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}
.hero .kicker {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--gold); font-weight: 700; letter-spacing: 1.5px; font-size: 15px; margin-bottom: 18px;
  font-family: Georgia, 'Times New Roman', serif; font-style: italic;
}
.hero .kicker::before, .hero .kicker::after { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: .7; }
.hero h1 { color: #fff; font-size: clamp(36px, 6vw, 62px); font-weight: 800; margin-bottom: 20px; letter-spacing: -0.5px; line-height: 1.15; }
.hero p.lead { color: var(--on-dark); font-size: clamp(16px, 2.2vw, 20px); max-width: 620px; margin: 0 auto 36px; line-height: 1.7; }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 999px;
  font-weight: 700; font-size: 15px; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.35) 42%, transparent 60%);
  transform: translateX(-60%); transition: transform .7s var(--ease), opacity .35s;
}
.btn:hover::before { opacity: 1; transform: translateX(60%); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 24px rgba(33,138,90,.32); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(33,138,90,.42); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 8px 22px rgba(37,211,102,.3); }
.btn-wa:hover { background: #1fb356; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(37,211,102,.4); }
.btn-bit { background: #3E63DD; color: #fff; box-shadow: 0 8px 22px rgba(62,99,221,.3); }
.btn-bit:hover { background: #3352c0; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(62,99,221,.4); }
.bit-note { font-size: 12.5px; color: var(--text-faint); margin: -10px 0 20px; }
.wa-confirm {
  background: #eafaf1; border: 1px solid #bfe8cf; color: var(--green-deep); border-radius: 12px;
  padding: 12px 16px; font-size: 13.5px; line-height: 1.6; margin: -10px 0 20px;
  animation: fadeUp .4s var(--ease) both;
}
.btn-outline { border: 1px solid var(--border); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(28,45,35,.08); }

/* ===== section ===== */
.section { padding: 72px 0; position: relative; }
.section-kicker {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  text-align: center; color: var(--pink); font-weight: 800; font-size: 20px;
  letter-spacing: 1px; margin-bottom: 14px;
}
.section-kicker::before, .section-kicker::after { content: ""; width: 34px; height: 2px; background: var(--gold); opacity: .8; border-radius: 2px; }
.section-title { text-align: center; font-size: clamp(26px, 4vw, 38px); font-weight: 800; letter-spacing: -0.3px; margin-bottom: 16px; }
.section-lead { text-align: center; color: var(--text-secondary); font-size: 16px; max-width: 620px; margin: 0 auto 44px; }

/* ===== story strip ===== */
.story {
  display: flex; align-items: center; gap: 40px; background: #fff; border: 1px solid var(--border);
  border-radius: 18px; padding: 30px 36px; position: relative; overflow: hidden;
}
.story img.portrait { width: 200px; height: 200px; border-radius: 999px; object-fit: cover; flex-shrink: 0; border: 4px solid var(--cream-alt); box-shadow: 0 10px 26px rgba(28,45,35,.12); }
.story .who { font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.story p { margin: 0; color: var(--text-secondary); font-size: 15.5px; line-height: 1.8; }
.story .deco-a { position: absolute; width: 70px; left: -10px; top: -14px; opacity: .9; }
.story .deco-b { position: absolute; width: 56px; right: -8px; bottom: -12px; opacity: .9; }
@media (max-width: 760px) {
  .story { flex-direction: column; text-align: center; padding: 32px 26px; gap: 18px; }
  .story img.portrait { width: 150px; height: 150px; }
  .story .who { text-align: center; }
  .story p { text-align: right; }
}

/* ===== filter chips ===== */
.chip-row { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.chip {
  background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 9px 20px;
  font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s;
}
.chip:hover { border-color: var(--green); color: var(--green); }
.chip.active { background: var(--green); border-color: var(--green); color: #fff; }

/* ===== product grid ===== */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 26px; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  display: flex; flex-direction: column; position: relative;
}
.card::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; z-index: 2;
  background: linear-gradient(90deg, var(--green), var(--gold)); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.card:hover::after { transform: scaleX(1); }
.card:hover { transform: translateY(-7px); box-shadow: 0 22px 44px rgba(28,45,35,.14); border-color: transparent; }
.card .thumb { aspect-ratio: 1 / 1; background: #fff; position: relative; overflow: hidden; }
.card .thumb img { width: 100%; height: 100%; object-fit: contain; padding: 10px; box-sizing: border-box; transition: transform .5s ease; }
.card:hover .thumb img { transform: scale(1.045); }
.card .thumb.placeholder { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; }
.card .thumb.placeholder img.deco-icon { width: 54px; height: 54px; object-fit: contain; opacity: .85; }
.card .thumb.placeholder span { font-size: 12px; color: var(--text-faint); font-weight: 600; }
.dim-badge {
  position: absolute; bottom: 10px; left: 10px; z-index: 1;
  background: rgba(20,56,41,.78); color: #fff; font-size: 11.5px; font-weight: 600;
  padding: 5px 11px; border-radius: 999px; direction: rtl; white-space: nowrap;
}
.card .body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card .cat { font-size: 12px; color: var(--lavender); font-weight: 700; }
.card .name { font-size: 17px; font-weight: 700; color: var(--ink-strong); }
.card .dim { font-size: 13px; color: var(--text-muted); }
.card .desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; margin: 4px 0 8px; flex: 1; }
.card .row-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; border-top: 1px dashed var(--border-dash); }
.card .price { font-size: 20px; font-weight: 800; color: var(--green-deep); }
.card .more {
  font-size: 13px; font-weight: 700; color: var(--ink); border: 1px solid var(--border); border-radius: 999px;
  padding: 7px 14px; display: inline-flex; align-items: center; gap: 5px; transition: all .3s var(--ease);
}
.card .more::after { content: "←"; display: inline-block; transition: transform .3s var(--ease); }
.card:hover .more { background: var(--green); color: #fff; border-color: var(--green); }
.card:hover .more::after { transform: translateX(-4px); }
.card .badge { position: absolute; top: 12px; right: 12px; background: var(--yellow); color: var(--ink-strong);
  font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 999px; z-index: 1; }

/* ===== workshop feature card ===== */
.feature-card {
  background: linear-gradient(135deg, var(--green-dark), var(--green-darker));
  border-radius: 22px; padding: 44px; display: flex; align-items: center; gap: 40px;
  position: relative; overflow: hidden;
}
.feature-card .deco { position: absolute; opacity: .9; }
.feature-card img.gi { width: 120px; left: 20px; top: -10px; }
.feature-card img.buddha { width: 100px; right: 10px; bottom: -8px; }
.feature-card .content { position: relative; z-index: 1; flex: 1; text-align: center; }
.feature-card .section-kicker { color: var(--yellow); }
.feature-card h3 { color: #fff; font-size: 28px; margin-bottom: 12px; }
.feature-card p { color: var(--on-dark); font-size: 15.5px; max-width: 560px; margin: 0 auto 22px; line-height: 1.8; }
.feature-card .price-tag { color: var(--on-dark-strong); font-weight: 700; margin-bottom: 18px; font-size: 15px; }

/* ===== care guide teaser ===== */
.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.care-tile { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px; text-align: center; transition: transform .3s; }
.care-tile:hover { transform: translateY(-4px); }
.care-tile .ic { width: 42px; height: 42px; object-fit: contain; margin: 0 auto 14px; }
.care-tile h4 { font-size: 16px; margin-bottom: 8px; }
.care-tile p { font-size: 13.5px; color: var(--text-secondary); margin: 0; line-height: 1.7; }
@media (max-width: 720px) { .care-grid { grid-template-columns: 1fr; } }

/* ===== product detail ===== */
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--green); }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: flex-start; }
.product-detail .gallery { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 10px; }
.product-detail .gallery img { border-radius: 12px; width: 100%; height: auto; max-height: 640px; object-fit: contain; display: block; margin: 0 auto; }
.product-detail .gallery .dim-badge { font-size: 13px; padding: 7px 14px; bottom: 20px; left: 20px; }
.product-detail .gallery .placeholder-hero {
  border-radius: 18px; width: 100%; aspect-ratio: 1/1; background: var(--cream-alt);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
}
.product-detail .gallery .placeholder-hero img { width: 100px; height: 100px; object-fit: contain; opacity: .85; }
.product-detail .gallery .placeholder-hero span { color: var(--text-faint); font-weight: 600; font-size: 14px; }
.product-detail .info .cat { color: var(--lavender); font-weight: 700; font-size: 13px; margin-bottom: 8px; }
.product-detail .info h1 { font-size: 30px; margin-bottom: 8px; }
.product-detail .info .dim { color: var(--green-deep); font-size: 15px; margin-bottom: 18px; }
.product-detail .info .price { font-size: 34px; font-weight: 800; color: var(--green-deep); margin-bottom: 22px; }
.product-detail .info p.desc { color: var(--text-secondary); font-size: 15.5px; line-height: 1.85; margin-bottom: 26px; }
.product-detail .info .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.info-box { background: var(--cream-alt); border-radius: 14px; padding: 16px 20px; font-size: 13.5px; color: var(--text-secondary); line-height: 1.7; }
.info-box a { color: var(--green-deep); font-weight: 700; }

/* ===== טופס פרטי הזמנה ===== */
.order-form { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 22px 24px; margin-bottom: 22px; }
.order-form h3 { font-size: 15.5px; margin-bottom: 14px; }
.of-option { display: block; cursor: pointer; margin-bottom: 10px; }
.of-option input { position: absolute; opacity: 0; pointer-events: none; }
.of-option-box { display: block; border: 2px solid var(--border); border-radius: 12px; padding: 12px 16px; transition: border-color .25s var(--ease), background .25s var(--ease); }
.of-option-box b { display: block; font-size: 14px; color: var(--ink-strong); margin-bottom: 2px; }
.of-option-box small { font-size: 12.5px; color: var(--text-muted); }
.of-option input:checked + .of-option-box { border-color: var(--green); background: var(--cream-alt); }
.of-delivery-fields { margin: 4px 0 14px; padding-right: 4px; border-right: 2px solid var(--border); padding-top: 2px; }
.order-form input[type="text"], .order-form input[type="tel"], .order-form textarea {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 13.5px; color: var(--ink); margin-bottom: 10px; resize: vertical; box-sizing: border-box;
}
.order-form input:focus, .order-form textarea:focus { outline: none; border-color: var(--green); }
.of-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.order-form textarea { min-height: 58px; }
.of-label { display: block; font-size: 13px; font-weight: 700; color: var(--text-secondary); margin: 12px 0 6px; }
.of-hint { background: var(--cream-alt); border-radius: 10px; padding: 10px 14px; font-size: 12.5px; color: var(--text-secondary); line-height: 1.6; margin: 0 0 14px; }
.of-check { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink); cursor: pointer; margin-bottom: 10px; }
.of-check input { width: 17px; height: 17px; accent-color: var(--green); cursor: pointer; }
@media (max-width: 860px) { .product-detail { grid-template-columns: 1fr; } }

.related-title { font-size: 20px; font-weight: 700; margin: 60px 0 20px; text-align: center; }

/* ===== הערת ייחודיות ===== */
.unique-note { font-size: 13px; color: var(--text-faint); text-align: center; font-style: italic; margin: -22px 0 40px; }
.info-box.unique-note-box {
  text-align: center; font-style: italic; font-family: Georgia, serif; font-size: 14.5px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-darker)); color: var(--on-dark);
  margin: 14px 0 0; line-height: 1.7;
}

.promise-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green-darker));
  border-radius: 22px; padding: 46px 40px; text-align: center; position: relative; overflow: hidden;
}
.promise-banner .pb-mark { display: block; font-size: 26px; color: var(--gold); margin-bottom: 12px; }
.promise-banner p {
  color: #fff; font-size: clamp(18px, 2.4vw, 23px); font-weight: 600; max-width: 680px; margin: 0 auto;
  line-height: 1.6; font-family: Georgia, serif; font-style: italic;
}
.promise-banner img.deco { position: absolute; opacity: .9; }
.promise-banner img.pb-a { width: 90px; left: 22px; top: -18px; }
.promise-banner img.pb-b { width: 68px; right: 18px; bottom: -14px; }

/* ===== מחשבון סדנה ===== */
.ws-tools { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 34px; }
.ws-tool { display: block; cursor: pointer; }
.ws-tool input { position: absolute; opacity: 0; pointer-events: none; }
.ws-tool-card {
  background: #fff; border: 2px solid var(--border); border-radius: 16px; overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ws-tool-card img { width: 100%; aspect-ratio: 4/3; object-fit: contain; background: #fff; padding: 8px; box-sizing: border-box; }
.ws-tool-card .pad { padding: 14px 16px 18px; }
.ws-tool-name { font-size: 15.5px; font-weight: 700; color: var(--ink-strong); margin-bottom: 4px; }
.ws-tool-dim { font-size: 12.5px; color: var(--text-muted); margin-bottom: 8px; }
.ws-tool-price { font-size: 15px; font-weight: 800; color: var(--green-deep); }
.ws-tool:hover .ws-tool-card { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(28,45,35,.1); }
.ws-tool input:checked + .ws-tool-card { border-color: var(--green); box-shadow: 0 12px 26px rgba(33,138,90,.18); }
@media (max-width: 720px) { .ws-tools { grid-template-columns: 1fr; } }

.ws-calc {
  background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 30px 34px;
  max-width: 560px; margin: 0 auto; position: relative; overflow: visible;
}
.ws-calc .deco-a { position: absolute; width: 62px; left: -26px; top: -22px; opacity: .95; }
.ws-calc .deco-b { position: absolute; width: 50px; right: -20px; bottom: -18px; opacity: .95; }
@media (max-width: 640px) { .ws-calc .deco-a, .ws-calc .deco-b { display: none; } }
.ws-calc label { display: block; font-weight: 700; font-size: 15px; margin-bottom: 10px; text-align: center; }
.ws-calc input[type="number"] {
  display: block; width: 140px; margin: 0 auto 24px; text-align: center; font-size: 20px; font-weight: 700;
  padding: 10px; border-radius: 12px; border: 1px solid var(--border); font-family: inherit; color: var(--ink);
}
.ws-result { border-top: 1px dashed var(--border-dash); padding-top: 18px; }
.ws-row, .ws-total { display: flex; justify-content: space-between; align-items: baseline; padding: 4px 0; font-size: 15px; }
.ws-row .strike { color: #b5ae98; text-decoration: line-through; }
.ws-row .main { font-size: 20px; font-weight: 800; color: var(--green-deep); }
.ws-total { border-top: 1px dashed var(--border-dash); margin-top: 6px; padding-top: 10px; font-weight: 800; font-size: 17px; color: var(--ink-strong); }
.ws-note { font-size: 12.5px; color: var(--text-faint); line-height: 1.6; margin-top: 10px; }
.ws-calc .btn { display: flex; justify-content: center; width: 100%; margin-top: 16px; }
.ws-cta-row { display: flex; flex-direction: column; gap: 10px; }
.ws-cta-row .btn { margin-top: 0; }
.ws-calc .bit-note { text-align: center; margin: 10px 0 0; }

/* ===== full care guide page ===== */
.care-section {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px 30px; margin-bottom: 20px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative; overflow: hidden;
}
.care-section:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(28,45,35,.08); }
.care-section .bar { width: 46px; height: 5px; border-radius: 3px; margin-bottom: 14px; }
.care-section.prune { overflow: visible; }
.care-section > h2, .care-section > ul { position: relative; z-index: 1; }
.care-deco { position: absolute; inset: 0; pointer-events: none; }
.care-deco.prune-scissors {
  inset: auto; top: -34px; left: 26px; width: 100px; height: 100px;
  transform: rotate(28deg); filter: drop-shadow(0 6px 10px rgba(28,45,35,.1));
}
.care-section.water .bar { background: var(--green); }
.care-section.light .bar { background: var(--lavender); }
.care-section.prune .bar { background: var(--pink); }
.care-section h2 { font-size: 20px; margin-bottom: 14px; }
.care-section ul { display: flex; flex-direction: column; gap: 10px; }
.care-section li { font-size: 15px; color: var(--text-secondary); line-height: 1.75; padding-right: 18px; position: relative; }
.care-section li::before { content: "•"; position: absolute; right: 0; color: var(--green); font-weight: 700; }
.care-section li b { color: var(--ink-strong); }

/* ===== footer ===== */
.site-footer { background: var(--ink-strong); color: var(--on-dark); padding: 60px 0 26px; margin-top: 40px; }
.footer-brand-hero { text-align: center; margin-bottom: 46px; }
.footer-brand-hero img {
  width: 108px; height: 108px; border-radius: 999px; display: block; margin: 0 auto 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,.3); border: 3px solid rgba(255,255,255,.12);
}
.footer-brand-hero .name { font-family: Georgia, serif; font-size: 30px; font-weight: bold; color: #fff; }
.footer-brand-hero .tag { font-family: Georgia, serif; font-style: italic; font-size: 14.5px; color: var(--on-dark-strong); margin-top: 6px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.site-footer p { font-size: 14px; color: var(--on-dark); line-height: 1.8; max-width: 320px; }
.site-footer h5 { color: #fff; font-size: 14px; margin-bottom: 14px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { font-size: 14px; color: var(--on-dark); transition: color .2s; }
.site-footer a:hover { color: var(--yellow); }
.footer-social { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.footer-social svg { width: 18px; height: 18px; }
.footer-social span { direction: ltr; font-size: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; text-align: center; font-size: 12.5px; color: var(--text-faint); }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== אלמנטי רקע גדולים מהשפה הגרפית ===== */
.bg-deco { position: absolute; opacity: .08; pointer-events: none; z-index: 0; }
.bg-deco.hill { bottom: -30px; left: 50%; transform: translateX(-50%); width: min(820px, 130%); }
.bg-deco.arch { top: -40px; left: -60px; width: 380px; opacity: .09; }
.section > .container { position: relative; z-index: 1; }

/* ===== whatsapp floating button ===== */
.wa-float {
  position: fixed; bottom: 22px; left: 22px; z-index: 60;
  background: #25D366; color: #fff; width: 56px; height: 56px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; position: relative; z-index: 1; }
.wa-icon { width: 16px; height: 16px; flex-shrink: 0; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px; background: #25D366;
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .wa-float::before { animation: none; } }
