/* ===== COOLEE OZEN — Global Styles ===== */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS Variables — פלטה מבוססת לוגו ===== */
:root{
  --bg: #FFFFFF;           /* לבן נקי — כפי שמופיע ברקע הלוגו */
  --dark-green: #2D5A27;   /* ירוק עמוק מהשוליים והצללים של העלה */
  --mid-green: #76B82D;    /* ירוק חי - הגוון המרכזי והדומיננטי */
  --olive: #A3CC3A;        /* ירוק-ליים בהיר מאזורי האור בעלה */
  --gray-green: #D1E27B;   /* צהוב-ירקרק בהיר מהעורקים (מחליף את האפור-ירקרק) */
  --white: #FFFFFF;
  --cream: #FFFFFF;        /* במידה ותרצה לשמור על מראה "נקי", הלוגו יושב על לבן מוחלט */
  --text: #0B0C0C;         /* שחור הפחם המדויק מהטקסט של הלוגו */
  --text-light: #2D5A27;   /* שימוש בירוק העמוק לטקסט משני/כותרות קטנות */
  --card-bg: #F9FAF5;      /* גוון אוף-וויט ירקרק עדין מאוד לכרטיסיות כדי לשבור את הלבן */
  --border: #E2E8D5;       /* גבול עדין שנגזר מהגוונים הבהירים בעלה */
  --whatsapp: #25D366;
  --shadow: 0 4px 24px rgba(45, 90, 39, 0.08);   /* צל עם נגיעה של הירוק העמוק */
  --shadow-hover: 0 8px 40px rgba(45, 90, 39, 0.16);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  direction: rtl;
  scroll-behavior: smooth;
}

body {
  font-family: 'Heebo', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark-green);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

/* ===== Utility ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-tag {
  display: inline-block;
  background: rgba(107, 142, 65, 0.12);
  color: var(--olive);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header p {
  max-width: 560px;
  margin: 12px auto 0;
  font-size: 1.05rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--dark-green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--mid-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--dark-green);
  border: 2px solid var(--dark-green);
}

.btn-secondary:hover {
  background: var(--dark-green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: all var(--transition);
  background: rgba(42, 74, 30, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(14, 32, 13, 0.15);
}

.navbar.scrolled {
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(42, 74, 30, 0.1);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-logo-img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  transition: transform var(--transition), border-color var(--transition);
}

.navbar-logo-img:hover {
  transform: scale(1.06);
}

.navbar.scrolled .navbar-logo-img {
  border-color: var(--border);
}

.navbar-logo span {
  color: #C8D96A;
}

/* כשנצמד לראש — צבעים כהים */
.navbar.scrolled .navbar-logo {
  color: var(--dark-green);
}

.navbar.scrolled .navbar-logo span {
  color: var(--olive);
}

.navbar.scrolled .navbar-links a {
  color: var(--text);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--olive);
  transition: width var(--transition);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: #C8D96A;
}

.navbar.scrolled .navbar-links a:hover,
.navbar.scrolled .navbar-links a.active {
  color: var(--olive);
}

/* קו תחתון בלבן כשהנאבבר שקוף */
.navbar-links a::after {
  background: #C8D96A;
}

.navbar.scrolled .navbar-links a::after {
  background: var(--olive);
}

/* המבורגר בלבן על הירו */
.navbar:not(.scrolled) .hamburger span {
  background: var(--white);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-green);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Mobile Nav ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-green);
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--olive);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--dark-green);
}

/* ===== Hero ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  background: url('../images/hero new.png?v=2') center center / cover no-repeat;
  min-height: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 28, 8, 0.55);
  z-index: 0;
}

.hero-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 40px 0;
  text-align: center;
  width: 100%;
}

.hero-content {
  color: var(--white);
  width: 100%;
  max-width: 640px;
}

.hero-text-card {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 28px;
  padding: 52px 60px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 8px 48px rgba(0,0,0,0.30);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-shadow: 0 2px 20px rgba(0,0,0,0.50);
  line-height: 1.2;
  white-space: nowrap;
}

.hero-subtitle {
  color: rgba(255,255,255,0.80);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero-content p {
  color: rgba(255,255,255,0.90);
  font-size: 1rem;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-intro {
  background: var(--white);
  padding: 36px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero-intro p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* ===== Hero Collage ===== */
/*
  פריסה:
  [ טרריום לאורך | עציצים   ]
  [ טרריום לאורך | שתילים   ]
  — שלושתן יחד יוצרות ריבוע —
*/
.hero-collage {
  display: grid;
  grid-template-columns: 200px 160px;
  grid-template-rows: 175px 175px;
  gap: 10px;
  flex-shrink: 0;
}

.hero-collage-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-collage-img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 44px rgba(0,0,0,0.4);
  position: relative;
  z-index: 2;
}

/* תמונה 1 — טרריום — עמודה שמאל, גובה מלא (שתי שורות) */
.hero-collage-img:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* תמונה 2 — קולז' עציצים — עמודה ימין, שורה עליונה */
.hero-collage-img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

/* תמונה 3 — מגש שתילים — עמודה ימין, שורה תחתונה */
.hero-collage-img:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.hero-badge {
  background: var(--white);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: flex-end;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(107, 142, 65, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.hero-badge-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark-green);
  line-height: 1.4;
}

/* ===== Stats Bar ===== */
.stats-bar {
  background: var(--white);
  padding: 32px 0;
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  divide: var(--border);
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-left: 1px solid var(--border);
}

.stat-item:last-child {
  border-left: none;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark-green);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== Plants Preview ===== */
.plants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.plant-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.plant-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.plant-card-img {
  height: 220px;
  background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.plant-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plant-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--dark-green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.plant-card-body {
  padding: 20px;
}

.plant-card-body h4 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.plant-card-body p {
  font-size: 0.88rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.plant-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plant-interested {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--olive);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color var(--transition);
}

.plant-interested:hover {
  color: var(--dark-green);
}

/* ===== Workshop Teaser ===== */
.workshop-teaser {
  background: var(--white);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(42,74,30,0.12);
  border: 1px solid var(--border);
}

.workshop-teaser::before {
  content: none;
}

.workshop-teaser-content {
  color: var(--text);
  position: relative;
  z-index: 1;
}

.workshop-teaser-content .section-tag {
  background: var(--light-green);
  color: var(--dark-green);
}

.workshop-teaser-content h2 {
  color: var(--dark-green);
  margin-bottom: 16px;
}

.workshop-teaser-content p {
  color: var(--text);
  margin-bottom: 32px;
}

.workshop-teaser-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.workshop-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.95rem;
}

.workshop-feature-item::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--dark-green);
  flex-shrink: 0;
}

.workshop-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 24px;
  margin-bottom: 28px;
}

.workshop-price .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-green);
}

.workshop-price .currency {
  font-size: 1.2rem;
  color: var(--mid-green);
}

.workshop-price .label {
  font-size: 0.9rem;
  color: var(--gray-green);
}

.workshop-teaser-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  min-height: 320px;
  overflow: hidden;
  border-radius: 16px;
}

.workshop-visual-placeholder {
  width: 280px;
  height: 320px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
}

.workshop-visual-placeholder p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}

/* ===== CTA Banner ===== */
.cta-section {
  text-align: center;
  padding: 80px 0;
}

.cta-inner {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 64px 40px;
}

.cta-inner h2 {
  margin-bottom: 16px;
}

.cta-inner p {
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark-green);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.footer-brand h3 span {
  color: #C8D96A;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  color: var(--white);
  transition: all var(--transition);
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--olive);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: #C8D96A;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

/* ===== Gallery Page ===== */
.gallery-hero {
  background: url('../images/galery hero.png') center center / cover no-repeat;
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.gallery-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 45, 15, 0.62);
  z-index: 0;
}

.gallery-hero .container {
  position: relative;
  z-index: 1;
}

.gallery-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.gallery-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 100px;
  font-family: 'Heebo', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--dark-green);
  color: var(--white);
  border-color: var(--dark-green);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.gallery-item-img {
  height: 240px;
  background: linear-gradient(135deg, #c8e6c9 0%, #81c784 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  position: relative;
  overflow: hidden;
}

.gallery-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item-cat {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(14,32,13,0.75);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.gallery-item-body {
  padding: 20px;
}

.gallery-item-body h4 {
  margin-bottom: 6px;
}

.gallery-item-body p {
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.gallery-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== Workshop Page ===== */
.workshop-hero {
  background: url('../images/workshop 1.jpg') center center / cover no-repeat;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.workshop-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 45, 15, 0.62);
  z-index: 0;
}

.workshop-hero::after {
  content: '';
}

.workshop-hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.workshop-hero-content {
  color: var(--white);
}

.workshop-hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.workshop-hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.workshop-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.workshop-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 10px;
  padding: 6px 10px;
  color: var(--dark-green);
  font-size: 0.72rem;
  white-space: nowrap;
  font-weight: 600;
}

.workshop-hero-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.workshop-hero-card .price-display {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.price-display .big-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1.4;
  text-align: center;
}

.price-display .price-label {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0;
}

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.includes-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.includes-item::before {
  content: '✓';
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(107, 142, 65, 0.15);
  color: var(--olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ===== Registration Form ===== */
.registration-section {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  direction: rtl;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(107, 142, 65, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
}

.form-note {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text);
}

/* ===== Blog Page ===== */
.blog-hero {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--mid-green) 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
}

.blog-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.blog-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== Featured Post ===== */
.featured-post {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 56px;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.featured-post-img {
  height: 360px;
  overflow: hidden;
  position: relative;
}

.featured-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-post-body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.blog-card-img {
  height: 220px;
  background: linear-gradient(135deg, #dcedc8 0%, #aed581 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-cat {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--olive);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: var(--gray-green);
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--olive);
  transition: color var(--transition);
}

.read-more:hover {
  color: var(--dark-green);
}

.read-more::after {
  content: '←';
  transition: transform var(--transition);
}

.read-more:hover::after {
  transform: translateX(-4px);
}

/* ===== Page transitions ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 900;
  transition: all var(--transition);
  font-size: 1.6rem;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-collage {
    grid-template-columns: 155px 125px;
    grid-template-rows: 140px 140px;
    gap: 8px;
  }

  .workshop-teaser {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .workshop-teaser-visual { display: none; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }

  .navbar-links,
  .navbar-cta { display: none; }

  .hamburger { display: flex; }

  .hero-inner {
    padding: 24px 0 40px;
  }

  .hero-text-card {
    padding: 32px 24px;
  }

  .hero-content h1 {
    white-space: normal;
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }

  /* קולאז' מוקטן במובייל */
  .hero-visual {
    justify-content: center;
    margin-top: 16px;
  }

  .hero-collage {
    grid-template-columns: 120px 100px;
    grid-template-rows: 110px 110px;
    gap: 7px;
  }

  .hero-badge { display: none; }

  .stats-inner { grid-template-columns: 1fr; gap: 20px; }
  .stat-item { border-left: none; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }

  .plants-grid { grid-template-columns: 1fr 1fr; }

  .workshop-hero-inner { grid-template-columns: 1fr; }
  .workshop-hero-card { display: none; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .registration-section { padding: 28px 20px; }

  /* Featured post — עמודה אחת במובייל */
  .featured-post {
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }
  .featured-post-img { height: 240px; }
  .featured-post-body { padding: 28px 24px; }

  /* Blog hero */
  .blog-hero { padding: 100px 0 48px; }

  /* CTA */
  .cta-inner { padding: 40px 24px; }

  /* Hero intro */
  .hero-intro { padding: 24px 0; }

  /* Section header */
  .section-header { margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .plants-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .workshop-teaser { padding: 28px 20px; }
  .hero-visual { display: none; }

  /* מסכים קטנים מאוד */
  .featured-post-img { height: 200px; }
  .featured-post-body { padding: 20px 16px; }
  .blog-hero { padding: 90px 0 36px; }
  .cta-inner { padding: 32px 16px; }
  .section-header { margin-bottom: 28px; }

  /* Product pages */
  .product-hero { padding: 80px 0 36px; }
}

/* ===== Product Pages ===== */
.product-hero {
  background: var(--off-white);
  padding: 100px 0 60px;
}
.product-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.product-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-info { padding: 8px 0; }
.product-cat-badge {
  display: inline-block;
  background: var(--light-green);
  color: var(--dark-green);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.product-info h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark-green);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-info .product-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 28px;
  font-style: italic;
}
.product-details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 32px;
}
.product-details dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
  margin: 0;
}
.product-details dt {
  font-weight: 700;
  color: var(--dark-green);
  font-size: 0.9rem;
  white-space: nowrap;
}
.product-details dd {
  color: var(--text);
  font-size: 0.9rem;
  margin: 0;
}
.product-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 36px;
}
.product-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-green);
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 40px;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.product-back-link:hover { opacity: 1; }

@media (max-width: 768px) {
  .product-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-hero { padding: 90px 0 48px; }
  .product-details { padding: 20px 20px; }
}
