/* ===== אלשקו — עיצוב ===== */
:root {
  --brown:        #8a4b2a;
  --brown-dark:   #6e3c22;
  --brown-soft:   #b07a52;
  --green:        #3f8a2e;
  --green-dark:   #2e6b1f;
  --cream:        #fbf6ec;
  --cream-deep:   #f3ead8;
  --ink:          #2b2018;
  --muted:        #6b5d50;
  --white:        #ffffff;
  --radius:       18px;
  --shadow:       0 10px 30px rgba(110, 60, 34, 0.12);
  --shadow-sm:    0 4px 14px rgba(110, 60, 34, 0.10);
  --max:          1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Heebo", system-ui, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* ===== כפתורים ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 13px 28px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-dark); }

.btn--ghost { background: transparent; color: var(--brown-dark); border: 2px solid var(--brown-soft); }
.btn--ghost:hover { background: var(--cream-deep); }

.btn--buy { width: 100%; background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn--buy:hover { background: var(--green-dark); }
.btn--buy:disabled { background: #cfc6ba; color: #fff; cursor: not-allowed; transform: none; }
.btn--bit { background: var(--brown); }
.btn--bit:hover { background: var(--brown-dark); }

/* ===== כותרת עליונה ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 20px;
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-deep);
}
.site-header__brand { display: flex; align-items: center; text-decoration: none; }
.site-header__logo { height: 46px; width: auto; }
.site-nav { display: flex; gap: 20px; }
.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 1rem;
  transition: color .15s ease;
}
.site-nav a:hover { color: var(--green-dark); }

/* ===== HERO ===== */
.hero {
  background:
    radial-gradient(1200px 500px at 50% -10%, rgba(63,138,46,0.10), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  padding: 48px 20px 64px;
  text-align: center;
}
.hero__inner { max-width: 720px; margin: 0 auto; }
.hero__logo {
  width: 168px; height: 168px; margin: 0 auto 8px;
  border-radius: 50%;
  filter: drop-shadow(0 10px 24px rgba(110,60,34,0.18));
  animation: pop .6s ease;
}
@keyframes pop { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.hero__title { font-size: clamp(2.6rem, 8vw, 4rem); font-weight: 900; color: var(--brown-dark); line-height: 1.1; }
.hero__tagline { font-size: clamp(1.2rem, 4vw, 1.6rem); color: var(--green-dark); font-weight: 700; margin-top: 4px; }
.hero__lead { font-size: 1.1rem; color: var(--muted); margin: 16px auto 0; max-width: 540px; }
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ===== מקטעים ===== */
.section { padding: 64px 0; }
.section--products { background: var(--white); }
.section--how { background: var(--cream-deep); }
.section--about { background: var(--white); }
.section--contact { background: var(--cream-deep); }

.section__title {
  font-size: clamp(1.7rem, 5vw, 2.3rem);
  font-weight: 900;
  color: var(--brown-dark);
  text-align: center;
  margin-bottom: 8px;
}
.section__title--right { text-align: right; }
.section__subtitle { text-align: center; color: var(--muted); margin-bottom: 36px; font-size: 1.08rem; }

/* ===== מוצרים ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.product-card {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card.is-sold-out { opacity: .65; }

.product-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #f7efe0, #eadcc4);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media__icon { font-size: 4.5rem; }
.product-badge {
  position: absolute; top: 12px; inset-inline-start: 12px;
  background: var(--green); color: #fff;
  font-size: .82rem; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.product-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-title { font-size: 1.35rem; font-weight: 800; color: var(--brown-dark); }
.product-desc { color: var(--muted); font-size: .98rem; flex: 1; }
.product-price-row { display: flex; align-items: baseline; gap: 8px; }
.product-price { font-size: 1.7rem; font-weight: 900; color: var(--green-dark); }
.product-unit { color: var(--muted); font-size: .95rem; }

/* ===== איך זה עובד ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.step__num {
  width: 48px; height: 48px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green); color: #fff;
  font-weight: 900; font-size: 1.3rem; border-radius: 50%;
}
.step h3 { color: var(--brown-dark); font-size: 1.2rem; margin-bottom: 6px; }
.step p { color: var(--muted); }
.how__trust {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown-dark);
  background: var(--white);
  border: 2px dashed var(--brown-soft);
  border-radius: var(--radius);
  padding: 18px;
}

/* ===== עלינו ===== */
.about__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: center;
}
.about__logo { width: 200px; height: 200px; border-radius: 50%; box-shadow: var(--shadow); }
.about__inner p { color: var(--muted); font-size: 1.08rem; margin-bottom: 14px; }

/* ===== צרו קשר ===== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
  display: flex; flex-direction: column; gap: 6px; align-items: center;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-card__icon { font-size: 2rem; }
.contact-card__label { font-weight: 800; color: var(--brown-dark); }
.contact-card__value { color: var(--muted); font-size: .95rem; }
.contact__hours { text-align: center; color: var(--brown-dark); font-weight: 500; font-size: 1.05rem; }

/* ===== פוטר ===== */
.site-footer {
  background: var(--brown-dark);
  color: #f3e6d8;
  text-align: center;
  padding: 36px 20px;
}
.site-footer p { font-weight: 700; }
.site-footer__small { font-weight: 400; opacity: .8; font-size: .9rem; margin-top: 6px; }

/* ===== נייד ===== */
@media (max-width: 720px) {
  .site-nav { display: none; }
  .about__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .section__title--right { text-align: center; }
  .section { padding: 48px 0; }
}
