/* ============================================================
   MOLEDET BAKERY — Landing Page Styles
   Hebrew RTL · Mobile-First · WCAG 2.1 AA
   ============================================================ */

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

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  /* ── Brand palette — from Moledet Bakery logo ──────────── */
  /* Logo background = #A1AD9D (muted olive-sage)             */
  --sage:        #A1AD9D;   /* logo green — primary brand      */
  --sage-dark:   #687A63;   /* dark green — CTAs, nav accents  */
  --sage-mid:    #8E9E89;   /* mid tone                        */
  --sage-light:  #C5D0C1;   /* borders, dividers               */
  --sage-pale:   #EBF0E9;   /* section backgrounds             */

  /* Warm parchment neutrals */
  --bg:          #F8F7F2;
  --bg-alt:      #EFECE3;
  --bg-card:     #FFFFFF;

  /* Text */
  --text:        #2A2618;
  --text-muted:  #6B6355;
  --text-light:  #9B9183;

  /* Accent — dark sage for CTAs, prices (passes WCAG AA)     */
  --gold:        #687A63;   /* dark sage — buttons, prices     */
  --gold-dark:   #4E5C4A;   /* deeper hover/active             */
  --gold-light:  #EBF0E9;   /* pale sage — highlights          */

  --wa-green:    #25D366;
  --wa-dark:     #128C7E;

  --font:        'Heebo', 'Arial', sans-serif;

  --radius:      16px;
  --radius-sm:   10px;
  --radius-xs:   6px;

  --shadow-xs:   0 1px 6px rgba(30,26,20,.06);
  --shadow-sm:   0 2px 12px rgba(30,26,20,.07);
  --shadow:      0 4px 24px rgba(30,26,20,.10);
  --shadow-lg:   0 8px 40px rgba(30,26,20,.14);

  --ease:        cubic-bezier(.4,0,.2,1);
  --dur:         220ms;

  --max-w:       1120px;
  --sec-pad:     88px;
}

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

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ─── Accessibility ──────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -999px;
  right: 0;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--text);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 var(--radius-xs) var(--radius-xs);
  font-family: var(--font);
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--sec-pad) 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section__header {
  text-align: center;
  margin-bottom: 52px;
}

.section__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--sage-dark);
  background: var(--sage-light);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.section__title {
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 10px;
}

.section__subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              color var(--dur) var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--gold);
  color: #fff;
}
.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}
.btn--outline:hover {
  background: var(--text);
  color: #fff;
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.65);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

.btn--wa {
  background: var(--wa-green);
  color: #fff;
}
.btn--wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37,211,102,.35);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 18px;
}

.btn--full { width: 100%; }

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(248,247,242,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(161,173,157,.18);
  transition: box-shadow var(--dur) var(--ease);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar__logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.navbar__logo-fallback {
  display: none;
  flex-direction: column;
  line-height: 1.1;
}

.navbar__logo-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.navbar__logo-sub {
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--sage-dark);
  font-weight: 400;
}

.navbar__cta {
  padding: 10px 22px;
  font-size: 15px;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100svh - 70px);
  align-items: stretch;
  background: var(--bg);
  overflow: hidden;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 72px 48px 72px 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sage-pale);
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: .04em;
  width: fit-content;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
}

.hero__title-accent {
  color: var(--sage);
  display: block;
}

.hero__subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 440px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

.hero__trust-icon {
  color: var(--gold);
  font-size: 15px;
}

.hero__image-wrap {
  position: relative;
  overflow: hidden;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 55%, var(--bg) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ─── FEATURES ───────────────────────────────────────────── */
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 22px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(161,173,157,.14);
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

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

.feature-card__icon {
  width: 50px;
  height: 50px;
  background: var(--sage-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--sage-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.feature-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

/* ─── PLATTERS ───────────────────────────────────────────── */
.platters__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.platter-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(161,173,157,.12);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

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

.platter-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.platter-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.platter-card:hover .platter-card__img-wrap img {
  transform: scale(1.05);
}

.platter-card__body {
  padding: 22px 24px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.platter-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
}

.platter-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.platter-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.platter-card__footer {
  padding: 0 24px 24px;
}

/* ─── CUSTOMIZE ──────────────────────────────────────────── */
.customize {
  background: var(--sage);
}

.customize__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.customize__text .section__title {
  color: #fff;
  text-align: right;
}

.customize__text .section__subtitle {
  color: rgba(255,255,255,.82);
  text-align: right;
  margin: 0;
}

/* ─── STEPS ──────────────────────────────────────────────── */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps__track {
  position: absolute;
  top: 35px;
  right: 12.5%;
  width: 75%;
  height: 2px;
  background: var(--sage-light);
  z-index: 0;
  pointer-events: none;
}

.step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.step__num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--sage);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.step__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 10px;
}

.gallery__item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(161,173,157,.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 2px;
  line-height: 1;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.testimonial-card__company {
  font-size: 13px;
  color: var(--text-light);
}

/* ─── FORM SECTION ───────────────────────────────────────── */
.form-section {
  background: var(--bg-alt);
}

.form-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 64px;
  align-items: start;
}

.form-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 4px;
}

.form-info .section__title,
.form-info .section__subtitle {
  text-align: right;
  margin: 0;
}

.form-promises {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-promise {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}

.form-promise__icon {
  width: 28px;
  height: 28px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-promise__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--sage-dark);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(161,173,157,.14);
}

/* Form elements */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group label .req {
  color: var(--gold);
  margin-right: 2px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  direction: rtl;
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(161,173,157,.16);
  background: #fff;
}

.form-control.error {
  border-color: #E53E3E;
}

.form-control::placeholder {
  color: var(--text-light);
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6355' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 36px;
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

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

.form-submit {
  margin-top: 6px;
}

.form-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

.form-error-msg {
  font-size: 12px;
  color: #E53E3E;
  margin-top: 4px;
  display: none;
}

.form-error-msg.visible { display: block; }

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  gap: 12px;
}

.form-success.visible {
  display: flex;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--sage-dark);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.form-success p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.8);
  padding: 56px 0 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 28px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__logo {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.footer__logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.footer__logo-sub {
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.45);
  font-weight: 400;
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

.footer__heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color var(--dur) var(--ease);
}

.footer__links a:hover { color: #fff; }

.footer__contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}

.footer__contact-line a {
  color: rgba(255,255,255,.65);
  transition: color var(--dur) var(--ease);
}

.footer__contact-line a:hover { color: #fff; }

.footer__contact-line svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,.45);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.footer__bottom {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
}

/* ─── WHATSAPP FLOATING BUTTON ───────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0;
  direction: ltr;
  transition: bottom 320ms cubic-bezier(.4,0,.2,1);
}

.wa-float--cart-on {
  bottom: 90px; /* clears the cart bar (~64px) + breathing room */
}

.wa-float__btn {
  width: 58px;
  height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.42);
  transition: background var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  position: relative;
  flex-shrink: 0;
  text-decoration: none;
}

.wa-float__btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.wa-float__btn::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  background: rgba(37,211,102,.22);
  animation: wa-pulse 2.4s ease-in-out infinite;
}

.wa-float__btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  position: relative;
  z-index: 1;
}

.wa-float__btn:hover {
  background: var(--wa-dark);
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.52);
}

.wa-float__tooltip {
  background: #fff;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  margin-left: 12px;
  white-space: nowrap;
  direction: rtl;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  pointer-events: none;
}

.wa-float:hover .wa-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes wa-pulse {
  0%, 100% { transform: scale(1);   opacity: .6; }
  50%       { transform: scale(1.4); opacity: 0;  }
}

/* ─── PRODUCTS GRID ──────────────────────────────────────── */
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(161,173,157,.12);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.product-card:hover .product-card__img-wrap img {
  transform: scale(1.05);
}

.product-card__price-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  letter-spacing: .02em;
}

.product-card__body {
  padding: 14px 16px 8px;
  flex: 1;
}

.product-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
}

.product-card__footer {
  padding: 0 16px 16px;
}

.product-card__footer .btn {
  padding: 10px 16px;
  font-size: 14px;
}

/* ─── SHAVUOT BANNER ─────────────────────────────────────── */
.shavuot-banner {
  position: relative;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 45%, #40916C 100%);
  border-radius: var(--radius);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(27,67,50,.28);
}

.shavuot-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  pointer-events: none;
}

.shavuot-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -30px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  pointer-events: none;
}

.shavuot-banner__ad-label {
  position: absolute;
  top: 10px; left: 16px;
  font-size: 10px;
  color: rgba(255,255,255,.4);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.shavuot-banner__content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.shavuot-banner__tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: .03em;
}

.shavuot-banner__title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}

.shavuot-banner__sub {
  font-size: 15px;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  max-width: 460px;
}

.shavuot-banner__cta {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.btn--shavuot {
  background: #fff;
  color: #1B4332;
  font-weight: 700;
}

.btn--shavuot:hover {
  background: rgba(255,255,255,.92);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
}

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

/* ─── Responsive: Tablet (≤1024px) ──────────────────────── */
@media (max-width: 1024px) {
  :root { --sec-pad: 64px; }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platters__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .shavuot-banner {
    padding: 28px 28px;
    gap: 20px;
  }

  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps__track { display: none; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }

  .gallery__item--tall {
    grid-row: span 2;
  }

  .gallery__grid .gallery__item:nth-child(5) {
    grid-column: span 2;
  }

  .form-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer__brand {
    grid-column: span 2;
  }
}

/* ─── Responsive: Mobile (≤768px) ───────────────────────── */
@media (max-width: 768px) {
  :root { --sec-pad: 52px; }

  .navbar__inner { height: 62px; }

  /* Hero stacks */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__image-wrap {
    height: 280px;
    order: -1; /* image on top */
  }

  .hero__image-wrap::before {
    background: linear-gradient(to top, var(--bg) 0%, transparent 50%);
  }

  .hero__content {
    padding: 32px 20px 48px;
    order: 1;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  /* Features */
  .features__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  /* Platters */
  .platters__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Products */
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .shavuot-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 24px 24px;
  }

  .shavuot-banner__cta .btn {
    width: 100%;
  }

  /* Customize */
  .customize__inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .customize__text .section__title,
  .customize__text .section__subtitle {
    text-align: center;
    margin: 0 auto;
  }

  /* Steps */
  .steps__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }

  .gallery__item--tall { grid-row: auto; }

  .gallery__grid .gallery__item:nth-child(5) {
    grid-column: span 2;
  }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .form-box { padding: 28px 18px; }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__brand { grid-column: auto; }

  /* WhatsApp */
  .wa-float { bottom: 20px; left: 16px; }
  .wa-float--cart-on { bottom: 88px; }
}

/* ─── Responsive: Small Mobile (≤480px) ─────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

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

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

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }

  .gallery__item--tall { grid-row: auto; }

  .gallery__grid .gallery__item:nth-child(5) {
    grid-column: auto;
  }
}
