@font-face {
  font-family: "OmstamV4";
  src: url("../fonts/OmstamV4-Regular.ttf") format("truetype"),
       url("../fonts/OmstamV4-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #211c18;
  --muted: #6c6258;
  --line: #ded4c2;
  --paper: #faf7ef;
  --panel: #fffdf8;
  --gold: #b08a45;
  --green: #2f6f5e;
  --blue: #254f6e;
  --danger: #8b2f2f;
  --shadow: 0 18px 50px rgba(33, 28, 24, .12);
  font-family: "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  max-width: 100%;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }

.topbar {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 8px 18px;
  background: #211c18;
  color: #fff8e9;
  font-size: 14px;
  flex-wrap: wrap;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(250, 247, 239, .94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.brand small { display: block; color: var(--muted); font-size: 12px; letter-spacing: 0; }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #2f6f5e, #b08a45);
}
.nav-links { display: flex; gap: 18px; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 700; }
.nav-links a:hover { color: var(--ink); }
.nav-toggle { display: none; border: 0; background: transparent; font-size: 26px; }
.cart-button, .button {
  border: 1px solid var(--ink);
  border-radius: 6px;
  min-height: 44px;
  padding: 10px 18px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}
.button.primary, .cart-button {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.button.ghost { background: rgba(255, 255, 255, .72); }

.hero {
  min-height: calc(100svh - 115px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}
.hero-media {
  background:
    linear-gradient(rgba(20, 18, 15, .18), rgba(20, 18, 15, .2)),
    radial-gradient(circle at 30% 35%, rgba(255,255,255,.38), transparent 25%),
    linear-gradient(135deg, #3c2b22 0%, #906f43 48%, #e7d5ad 100%);
  position: relative;
  min-height: 440px;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255,255,255,.44);
  background:
    linear-gradient(100deg, transparent 16%, rgba(255,255,255,.28) 16% 18%, transparent 18%),
    linear-gradient(#f6e5bf, #ead2a0);
  clip-path: polygon(0 26%, 76% 0, 100% 76%, 20% 100%);
  box-shadow: var(--shadow);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 88px);
  background: var(--panel);
}
.eyebrow {
  color: var(--gold);
  font-weight: 900;
  margin: 0 0 8px;
}
h1, h2, h3 { line-height: 1.12; margin: 0 0 16px; }
h1 { font-size: clamp(42px, 6vw, 78px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
.hero-copy p { max-width: 640px; font-size: 20px; color: var(--muted); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

.pathways {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(24px, 4vw, 56px);
}
.pathway {
  min-height: 220px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.pathway::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 42%);
}
.pathway.mitzvah { background: var(--green); }
.pathway span { font-size: 34px; font-weight: 900; position: relative; }
.pathway strong { max-width: 520px; position: relative; }

.section-grid {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr minmax(180px, 240px);
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 56px) 56px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 22px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.product-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product-card, .banner-slot, .banner-wide, .month-product, .trust, .testimonials article, .content-page details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(33,28,24,.05);
}
.product-card { overflow: hidden; display: flex; flex-direction: column; }
.product-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #efe7d8; }
.product-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-body h3 { font-size: 22px; margin: 0; }
.product-meta { color: var(--muted); font-size: 14px; }
.price { font-weight: 900; color: var(--green); }
.product-actions { margin-top: auto; display: flex; gap: 8px; flex-wrap: wrap; }
.product-actions button, .product-actions a {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 12px;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.banner-slot { min-height: 280px; padding: 22px; display: flex; flex-direction: column; justify-content: end; background: linear-gradient(160deg, #fffdf8, #e8dcc7); }
.banner-wide { padding: 18px 22px; margin-bottom: 18px; background: #e8f1ed; }
.month-product { margin: 0 clamp(18px, 4vw, 56px) 56px; padding: 28px; display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: center; }
.month-product img { width: 100%; border-radius: 8px; background: #efe7d8; }
.split-section { display: grid; grid-template-columns: 1.35fr .85fr; gap: 36px; padding: 0 clamp(18px, 4vw, 56px) 56px; }
.news-list { display: grid; gap: 14px; }
.news-item { border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.news-item time { color: var(--muted); font-size: 14px; }
.trust { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 0 clamp(18px, 4vw, 56px) 56px; padding: 32px; }
.trust ul { margin: 0; padding: 0 22px 0 0; }
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 0 clamp(18px, 4vw, 56px) 56px; }
.testimonials article { padding: 24px; }
.whatsapp-cta {
  margin: 0 clamp(18px, 4vw, 56px) 56px;
  padding: 28px;
  color: #fff;
  background: var(--green);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-radius: 8px;
}
.whatsapp-cta .button { background: #fff; color: var(--green); border-color: #fff; }

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  padding: 32px clamp(18px, 4vw, 56px) 64px;
}
.shop-hero { grid-column: 1 / -1; max-width: 900px; }
.shop-hero h1 { font-size: clamp(38px, 5vw, 64px); }
.filters {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  height: fit-content;
  position: sticky;
  top: 92px;
}
.filters label { display: grid; gap: 8px; margin-bottom: 14px; font-weight: 800; }
.filters input, .filters select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  background: #fff;
}

.content-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 20px 80px;
}
.content-page h1 { font-size: clamp(36px, 5vw, 58px); }
.values, .contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 28px; }
.values strong, .contact-grid > * {
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}
details { padding: 18px; margin-bottom: 12px; }
summary { cursor: pointer; font-weight: 900; }

.site-footer {
  padding: 34px clamp(18px, 4vw, 56px);
  background: #211c18;
  color: #fff8e9;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 22px; }
.footer-grid a { display: block; color: #eee1c7; margin-bottom: 8px; }
.footer-grid a.footer-social-link {
  display: inline-flex;
  margin-bottom: 0;
}
.footer-grid a.footer-route-card {
  display: grid;
  margin-bottom: 0;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(184, 137, 47, .56);
  border-radius: 999px;
  padding: 8px 13px;
  background: linear-gradient(135deg, rgba(255, 248, 233, .08), rgba(184, 137, 47, .12));
  color: #fff8e9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.footer-social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(239, 204, 130, .9);
  background: linear-gradient(135deg, rgba(255, 248, 233, .14), rgba(184, 137, 47, .2));
}
.footer-social-link svg,
.footer-route-card svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: #efcc82;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-social-link svg path:not(.icon-cut),
.footer-social-link svg rect,
.footer-social-link svg circle:not(.icon-cut),
.footer-route-card svg path:not(.icon-cut),
.footer-route-card svg rect,
.footer-route-card svg circle:not(.icon-cut) {
  fill: rgba(7, 27, 52, .28);
}
.footer-social-link .icon-cut,
.footer-route-card .icon-cut {
  fill: #11100f;
  stroke: #efcc82;
}
.footer-social-link.is-whatsapp svg { stroke: #8fe0b3; }
.footer-social-link.is-youtube svg { stroke: #ffbbb2; }
.footer-social-link.is-facebook svg { stroke: #b8d3ff; }
.footer-social-link.is-reviews svg { stroke: #ffd06e; }
.footer-social-link.is-email svg { stroke: #efcc82; }
.footer-social-link.is-telegram svg { stroke: #9fd7ff; }
.footer-social-link.is-instagram svg { stroke: #f1b6ff; }
.footer-social-link.is-tiktok svg { stroke: #b7fff4; }
.footer-social-link span {
  white-space: nowrap;
}
.footer-directions {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-directions strong {
  color: #fff;
}
.footer-route-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 10px 12px;
  border: 1px solid rgba(238, 225, 199, .32);
  border-radius: 8px;
  background: #181512;
  color: #fff8e9;
}
.footer-route-card:hover {
  border-color: rgba(239, 204, 130, .72);
  background: #211c18;
}
.footer-route-card svg {
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, rgba(239, 204, 130, .28), rgba(7, 27, 52, .18));
}
.footer-route-card span {
  display: grid;
  gap: 2px;
}
.footer-route-card b {
  font-size: 14px;
}
.footer-route-card small {
  color: #d5c5a7;
  font-size: 12px;
}
.footer-route-card.is-maps svg { stroke: #f4c35d; }
.footer-route-card.is-waze svg { stroke: #8ed8ff; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(440px, 100%);
  background: #fffdf8;
  box-shadow: var(--shadow);
  z-index: 50;
  transform: translateX(110%);
  transition: transform .25s ease;
  padding: 22px;
  overflow: auto;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  margin: 18px 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.cart-total strong { font-size: 22px; font-weight: 900; color: var(--ink); }
.close-cart { float: left; border: 0; background: transparent; font-size: 28px; cursor: pointer; }
#paypal-button-container { margin: 16px 0; min-height: 48px; }
.checkout-success {
  border: 1px solid #c7dfd0;
  background: #f2faf5;
  color: #234633;
  padding: 14px;
}
.checkout-success p { margin: 0 0 6px; font-weight: 800; }
.checkout-success small { direction: ltr; display: block; }

/* Course landing */
.course-page {
  background: #fbf8f1;
  color: var(--ink);
}

.course-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 38px;
  align-items: center;
  padding: 70px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(4, 22, 43, 0.94), rgba(9, 39, 70, 0.84)),
    url("../img/course/sofrut-real-writing.jpg") center/cover;
  color: #fff;
}

.course-hero-copy {
  max-width: 760px;
}

.course-hero .eyebrow,
.course-section .eyebrow,
.course-gallery .eyebrow,
.course-final-cta .eyebrow {
  color: #d9a441;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-hero h1 {
  margin: 8px 0 16px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 1.02;
  color: #fff;
}

.course-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: #f5ead6;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.65;
}

.course-price-card {
  display: inline-grid;
  gap: 4px;
  margin: 26px 0 18px;
  padding: 18px 24px;
  border: 1px solid rgba(217, 164, 65, 0.48);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.course-price-card span,
.course-price-card small {
  color: #f7e7c8;
  font-weight: 700;
}

.course-price-card strong {
  color: #fff;
  font-size: clamp(36px, 5vw, 58px);
}

.course-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.course-actions .button,
.course-actions button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 0;
  font-weight: 900;
}

.course-trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.course-trust-row span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  background: rgba(255,255,255,0.08);
  font-weight: 800;
}

.course-hero-media {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 14px;
  align-items: end;
}

.course-hero-media img {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0,0,0,0.36);
}

.course-hero-media img + img {
  min-height: 280px;
  margin-bottom: -30px;
  border: 8px solid rgba(255,255,255,0.92);
}

.course-section,
.course-benefits,
.course-gallery,
.course-final-cta {
  margin: 0 auto;
  padding: 64px clamp(18px, 5vw, 72px);
  max-width: 1240px;
}

.course-intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 34px;
  align-items: start;
}

.course-section h2,
.course-gallery h2,
.course-final-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
}

.course-section p,
.course-gallery p,
.course-final-cta p,
.course-benefits p {
  color: #5d6470;
  font-size: 18px;
  line-height: 1.75;
}

.course-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 12px;
}

.course-benefits article,
.included-card,
.course-faq details {
  background: #fff;
  border: 1px solid rgba(179, 133, 42, 0.24);
  box-shadow: 0 18px 48px rgba(29, 31, 39, 0.08);
}

.course-benefits article {
  padding: 24px;
  min-height: 230px;
}

.course-benefits strong {
  color: #c89128;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.course-benefits h3,
.included-card h3 {
  margin: 14px 0 8px;
  font-size: 24px;
}

.included-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 26px;
}

.included-products {
  display: grid;
  gap: 18px;
}

.included-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.included-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f4ead7;
}

.included-card span {
  display: inline-block;
  padding: 7px 10px;
  background: #0b1f38;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.included-card a {
  color: #b8862f;
  font-weight: 900;
}

.course-gallery {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr 1.1fr;
  gap: 20px;
  align-items: center;
}

.course-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.course-gallery img:nth-child(2) {
  aspect-ratio: 1 / 1;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
}

.course-faq {
  display: grid;
  gap: 12px;
}

.course-faq details {
  padding: 18px 20px;
}

.course-faq summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.course-final-cta {
  max-width: none;
  text-align: center;
  background: #061a31;
  color: #fff;
}

.course-final-cta h2 {
  color: #fff;
}

.course-final-cta p {
  color: #f3e7d1;
}

.course-final-cta .course-actions {
  justify-content: center;
}

body.is-ltr .course-page {
  direction: ltr;
}

@media (max-width: 980px) {
  .course-hero,
  .course-intro,
  .included-section,
  .faq-section,
  .course-gallery {
    grid-template-columns: 1fr;
  }

  .course-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-hero-media {
    grid-template-columns: 1fr 1fr;
  }

  .course-hero-media img,
  .course-hero-media img + img {
    min-height: 240px;
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .course-hero {
    padding-top: 42px;
  }

  .course-benefits,
  .course-hero-media,
  .included-card {
    grid-template-columns: 1fr;
  }

  .course-actions .button,
  .course-actions button {
    width: 100%;
    justify-content: center;
  }

  .course-hero-media img,
  .course-hero-media img + img {
    min-height: 220px;
    border: 0;
  }
}

/* Course landing premium conversion refresh */
.course-premium {
  background: #fffaf1;
}

.course-hero-premium {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  background:
    radial-gradient(circle at top right, rgba(200, 161, 90, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(7, 24, 47, 0.98), rgba(7, 24, 47, 0.86)),
    url("../img/course/sofrut-real-writing.jpg") center/cover;
}

.course-lead {
  color: #f7ead2;
}

.course-hero-badges,
.course-trust-bar,
.course-checks,
.course-location-list,
.cert-grid,
.testimonial-grid {
  display: grid;
  gap: 12px;
}

.course-hero-badges {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0;
}

.course-hero-badges span,
.course-urgency,
.course-trust-bar {
  border: 1px solid rgba(200, 161, 90, 0.38);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 900;
}

.course-hero-badges span {
  padding: 12px 14px;
}

.course-price-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  gap: 14px;
  margin: 22px 0 18px;
}

.course-price-stack div {
  padding: 18px;
  border: 1px solid rgba(200, 161, 90, 0.55);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.course-price-stack .highlight {
  background: #c8a15a;
  color: #07182f;
}

.course-price-stack span {
  display: block;
  font-weight: 900;
  color: inherit;
}

.course-price-stack strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1;
}

.course-urgency {
  display: grid;
  gap: 4px;
  max-width: 560px;
  margin: 0 0 22px;
  padding: 13px 16px;
}

.course-urgency span {
  color: #f5ead6;
  font-size: 15px;
}

.course-media-premium img:first-child {
  border: 10px solid rgba(255, 255, 255, 0.92);
}

.course-trust-bar {
  grid-template-columns: repeat(5, auto);
  justify-content: center;
  align-items: center;
  max-width: 1240px;
  margin: -28px auto 10px;
  padding: 18px clamp(18px, 4vw, 34px);
  background: #fff;
  color: #07182f;
  box-shadow: 0 20px 60px rgba(7, 24, 47, 0.14);
  position: relative;
  z-index: 2;
}

.course-trust-bar > span:first-child {
  color: #c8a15a;
  letter-spacing: 0.08em;
}

.home-course-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  margin: 54px auto;
  padding: clamp(26px, 5vw, 58px);
  max-width: 1240px;
  background:
    linear-gradient(135deg, rgba(7, 24, 47, 0.96), rgba(7, 24, 47, 0.84)),
    url("../img/course/sofrut-real-writing.jpg") center/cover;
  color: #fff;
  box-shadow: 0 24px 80px rgba(7, 24, 47, 0.16);
}

.home-course-copy h2 {
  margin: 8px 0 12px;
  color: #fff;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.08;
}

.home-course-copy p:not(.eyebrow) {
  max-width: 720px;
  color: #f8ecd8;
  font-size: 19px;
  line-height: 1.7;
}

.home-course-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.home-course-facts span {
  padding: 12px 14px;
  border: 1px solid rgba(200, 161, 90, 0.46);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.home-course-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.home-course-media {
  display: block;
}

.home-course-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.course-index {
  background: #fffaf1;
  min-height: 70vh;
}

.course-index-hero {
  padding: 70px clamp(18px, 6vw, 76px) 20px;
  text-align: center;
}

.course-index-hero h1 {
  margin: 8px 0 12px;
  color: #07182f;
  font-size: clamp(36px, 6vw, 70px);
}

.course-index-hero p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 720px;
  color: #5d6470;
  font-size: 20px;
  line-height: 1.7;
}

.course-professor,
.course-location,
.course-policy,
.course-certification,
.course-value-section,
.course-testimonials {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 30px;
  align-items: center;
}

.course-professor figure {
  margin: 0;
  background: #07182f;
  padding: 14px;
  color: #f4dfb8;
  box-shadow: 0 24px 70px rgba(7, 24, 47, 0.18);
}

.course-professor img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.course-professor figcaption {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.course-checks {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.course-checks li {
  padding: 12px 14px;
  background: #fff;
  border-right: 4px solid #c8a15a;
  box-shadow: 0 12px 36px rgba(7, 24, 47, 0.08);
  font-weight: 900;
}

.bonus-total {
  display: inline-flex;
  margin-top: 16px;
  padding: 12px 16px;
  background: #07182f;
  color: #fff;
  font-weight: 900;
}

.gift-card a {
  display: block;
}

.gift-card .gift-price {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin: 10px 0 0;
  font-weight: 900;
}

.gift-price del {
  color: #78716c;
}

.gift-price strong {
  color: #0b7a3b;
}

.course-value-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.course-value-stack div {
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(200, 161, 90, 0.34);
  box-shadow: 0 18px 48px rgba(7, 24, 47, 0.08);
}

.course-value-stack span {
  display: block;
  color: #766b5a;
  font-weight: 900;
}

.course-value-stack strong {
  display: block;
  margin-top: 6px;
  color: #07182f;
  font-size: clamp(28px, 4vw, 44px);
}

.course-value-stack .total,
.course-value-stack .reserve {
  background: #07182f;
  color: #fff;
}

.course-value-stack .total span,
.course-value-stack .reserve span,
.course-value-stack .total strong,
.course-value-stack .reserve strong {
  color: inherit;
}

.course-value-stack .reserve {
  background: #c8a15a;
  color: #07182f;
}

.course-location iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  box-shadow: 0 20px 60px rgba(7, 24, 47, 0.14);
}

.course-location-list p {
  margin: 0;
  padding: 15px 18px;
  background: #fff;
  border: 1px solid rgba(200, 161, 90, 0.28);
}

.course-location-list strong,
.course-location-list span {
  display: block;
}

.course-location-list span {
  color: #5d6470;
  margin-top: 5px;
}

.course-policy {
  grid-template-columns: 80px minmax(0, 1fr);
  align-items: start;
  background: #fff;
  border: 1px solid rgba(200, 161, 90, 0.38);
  box-shadow: 0 24px 70px rgba(7, 24, 47, 0.1);
}

.course-policy .policy-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #07182f;
  color: #c8a15a;
  font-size: 34px;
  font-weight: 900;
}

.cert-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cert-grid article,
.testimonial-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(200, 161, 90, 0.28);
  box-shadow: 0 16px 44px rgba(7, 24, 47, 0.08);
}

.cert-grid span {
  display: block;
  font-size: 36px;
  margin-bottom: 10px;
}

.cert-grid strong,
.testimonial-grid h3 {
  display: block;
  color: #07182f;
  font-size: 22px;
}

.testimonial-grid article > span {
  color: #c8a15a;
  font-weight: 900;
  letter-spacing: 0.08em;
}

@media (max-width: 980px) {
  .course-professor,
  .course-location,
  .course-policy,
  .course-certification,
  .course-value-section,
  .course-testimonials {
    grid-template-columns: 1fr;
  }

  .course-trust-bar,
  .cert-grid,
  .testimonial-grid,
  .home-course-promo,
  .home-course-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-course-promo {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .course-hero-badges,
  .course-price-stack,
  .course-value-stack,
  .course-trust-bar,
  .cert-grid,
  .testimonial-grid,
  .home-course-facts {
    grid-template-columns: 1fr;
  }

  .course-hero-premium h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .course-trust-bar {
    margin-top: 0;
  }
}

@media (max-width: 980px) {
  .hero, .pathways, .section-grid, .split-section, .trust, .testimonials, .shop-layout, .footer-grid, .month-product { grid-template-columns: 1fr; }
  .section-grid aside { min-height: 180px; }
  .product-grid, .product-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filters { position: static; }
}

@media (max-width: 680px) {
  .topbar { justify-content: start; gap: 10px; }
  .nav { align-items: start; flex-wrap: wrap; }
  .nav-toggle { display: block; }
  .nav-links { display: none; width: 100%; flex-direction: column; align-items: stretch; }
  .nav-links.is-open { display: flex; }
  .hero { min-height: auto; }
  .hero-media { min-height: 300px; }
  .hero-copy { padding: 28px 18px; }
  h1 { font-size: 40px; }
  .pathway span { font-size: 28px; }
  .product-grid, .product-grid.compact { grid-template-columns: 1fr; }
  .whatsapp-cta { flex-direction: column; align-items: start; }
  .values, .contact-grid { grid-template-columns: 1fr; }
}

/* Premium boutique direction inspired by padani.com: quiet luxury, white space, fine lines. */
:root {
  --ink: #07172b;
  --muted: #6d655c;
  --line: #e6dccb;
  --paper: #fbf8f1;
  --panel: #ffffff;
  --gold: #b8892f;
  --green: #20483f;
  --blue: #071b34;
  --shadow: none;
}

body {
  background: var(--paper);
  letter-spacing: 0;
}

.topbar {
  background: #f5f0e7;
  color: #4a4138;
  border-bottom: 1px solid var(--line);
  padding: 7px 18px;
  font-size: 12px;
}

.nav {
  padding: 18px clamp(20px, 5vw, 76px);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #ece7df;
  top: 0;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  gap: 14px;
}

.brand small {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(184, 137, 47, .4);
  background: #fff;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  overflow: hidden;
}

.brand-mark.has-logo {
  border: 0;
  background: transparent;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  gap: 28px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links a {
  color: #302a25;
  font-weight: 500;
}

.language-switcher {
  display: inline-flex;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 34px;
}

.language-switcher button {
  border: 0;
  border-inline-start: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  min-width: 42px;
  padding: 6px 9px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: .06em;
}

.language-switcher button:first-child {
  border-inline-start: 0;
}

.language-switcher button.is-active {
  background: var(--ink);
  color: #fff;
}

.cart-button,
.button {
  border-radius: 0;
  min-height: 42px;
  padding: 10px 22px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}

.button.primary,
.cart-button {
  background: var(--ink);
  border-color: var(--ink);
}

.button.ghost {
  background: rgba(255,255,255,.88);
  border-color: rgba(255,255,255,.88);
}

.hero {
  min-height: min(760px, calc(88svh - 80px));
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
}

.hero-media {
  min-height: min(760px, calc(88svh - 80px));
  background:
    linear-gradient(90deg, rgba(7, 23, 43, .72), rgba(7, 23, 43, .18) 42%, rgba(7, 23, 43, .76)),
    linear-gradient(0deg, rgba(7, 23, 43, .64), rgba(7, 23, 43, .04) 45%, rgba(7, 23, 43, .35)),
    url("../img/products/wc-3417.png");
  background-size: cover;
  background-position: center 48%;
}

.hero-media::after {
  display: none;
}

.hero-copy {
  position: absolute;
  inset: 0;
  margin: auto;
  align-items: center;
  text-align: center;
  color: #fff;
  background: transparent;
  padding: 24px;
  min-height: 100%;
}

.hero-copy p {
  color: rgba(255,255,255,.9);
  max-width: 760px;
}

.hero-logo {
  width: clamp(116px, 13vw, 190px);
  height: auto;
  margin-bottom: clamp(14px, 2vw, 24px);
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.34));
  align-self: center;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 980px;
  font-size: clamp(42px, 6.2vw, 82px);
  text-shadow: 0 16px 38px rgba(0,0,0,.32);
}

h2 {
  font-size: clamp(30px, 4.5vw, 54px);
}

.pathways,
.section-grid,
.split-section,
.testimonials,
.shop-layout {
  padding-inline: clamp(20px, 5vw, 76px);
}

.pathways {
  padding-block: 64px 42px;
  gap: 1px;
  background: #fff;
}

.pathway {
  min-height: 310px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(7, 23, 43, .82), rgba(7, 23, 43, .16)),
    url("../img/products/wc-2398.jpg");
  background-size: cover;
  background-position: center;
  padding: clamp(24px, 4vw, 52px);
}

.pathway.mitzvah {
  background:
    linear-gradient(90deg, rgba(32, 72, 63, .82), rgba(32, 72, 63, .18)),
    url("../img/products/wc-1701.png");
  background-size: cover;
  background-position: center;
}

.pathway span {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 54px);
}

.pathway strong {
  font-weight: 400;
  color: rgba(255,255,255,.88);
}

.section-grid {
  grid-template-columns: 210px 1fr 210px;
  padding-top: 54px;
  background: #fff;
}

.section-heading {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
}

.product-card,
.banner-slot,
.banner-wide,
.month-product,
.trust,
.testimonials article,
.content-page details {
  border-radius: 0;
  box-shadow: none;
}

.product-card {
  border: 0;
  background: transparent;
}

.product-card img {
  background: #f4efe7;
  aspect-ratio: 1 / 1.1;
  border: 1px solid #f0ebe4;
  transition: transform .35s ease;
}

.product-card:hover img {
  transform: translateY(-4px);
}

.product-body {
  padding: 18px 2px 0;
  gap: 8px;
}

.product-body h3 {
  font-size: 20px;
}

.product-body p {
  color: var(--muted);
  margin: 0;
}

.product-meta {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.price {
  color: var(--ink);
  font-size: 15px;
}

.product-actions button,
.product-actions a {
  border-radius: 0;
  border-color: #d8d0c6;
  background: #fff;
  color: #201b17;
  font-size: 12px;
  letter-spacing: .04em;
}

.banner-slot {
  border: 1px solid var(--line);
  background:
    linear-gradient(0deg, rgba(7, 23, 43, .76), rgba(7, 23, 43, .05)),
    url("../img/products/wc-82.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.banner-slot:nth-of-type(3) {
  background:
    linear-gradient(0deg, rgba(7, 23, 43, .76), rgba(7, 23, 43, .05)),
    url("../img/products/wc-2835.jpg");
  background-size: cover;
  background-position: center;
}

.banner-slot .eyebrow,
.banner-slot strong {
  color: #fff;
  text-shadow: 0 10px 30px rgba(0,0,0,.38);
}

.banner-wide {
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.72)),
    url("../img/products/wc-2398.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 22px;
}

.month-product,
.trust {
  margin-inline: clamp(20px, 5vw, 76px);
  background: #fff;
  border: 1px solid var(--line);
}

.month-product {
  grid-template-columns: minmax(260px, 420px) 1fr;
  padding: clamp(24px, 4vw, 48px);
}

.month-product img {
  border-radius: 0;
}

.split-section {
  background: #fff;
  padding-top: 52px;
}

.trust {
  align-items: center;
}

.whatsapp-cta {
  margin-inline: clamp(20px, 5vw, 76px);
  border-radius: 0;
  background: #171412;
  padding: clamp(28px, 4vw, 50px);
}

.shop-layout {
  grid-template-columns: 260px 1fr;
  background: #fff;
}

.shop-hero {
  max-width: 100%;
  text-align: center;
  padding: 44px 0 28px;
  border-bottom: 1px solid var(--line);
}

.shop-hero h1 {
  margin-inline: auto;
}

.shop-hero p:last-child {
  max-width: 760px;
  margin-inline: auto;
  color: var(--muted);
}

.filters {
  border-radius: 0;
  box-shadow: none;
  background: #fbfaf7;
}

.filters input,
.filters select {
  border-radius: 0;
  background: #fff;
}

.site-footer {
  background: #11100f;
}

.cart-drawer {
  background: #fff;
  border-inline-start: 1px solid var(--line);
}

body.is-ltr {
  direction: ltr;
}

body.is-ltr .hero-copy,
body.is-ltr .shop-hero {
  text-align: center;
}

@media (max-width: 1180px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .section-grid { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-copy { inset: auto 0 5%; }
  .month-product { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .language-switcher { order: 3; }
  .cart-button { order: 2; }
  .hero-media { min-height: 430px; }
  .hero-copy { align-items: center; text-align: center; }
  .hero-logo { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .shop-layout { padding-top: 12px; }
}

.product-page {
  background: #fff;
  padding: 28px clamp(20px, 5vw, 76px) 76px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 28px;
}

.breadcrumb a {
  border-bottom: 1px solid transparent;
}

.breadcrumb a:hover {
  border-bottom-color: var(--gold);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 52%) 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.product-gallery {
  background: #f7f3ec;
  border: 1px solid var(--line);
  min-height: clamp(260px, 40svh, 380px);
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 46px);
  overflow: hidden;
}

.product-main-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(300px, 56svh, 620px);
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-info {
  padding-top: 18px;
}

.product-info h1 {
  font-size: clamp(34px, 5vw, 68px);
}

.product-page-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 18px 0;
}

.product-actions.large {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-actions.large button,
.product-actions.large a {
  min-height: 46px;
  border: 1px solid var(--ink);
  background: #fff;
  padding: 12px 18px;
  border-radius: 0;
  cursor: pointer;
  font-weight: 700;
}

.product-actions.large button {
  background: var(--ink);
  color: #fff;
}

.product-description-section {
  max-width: 980px;
  margin-top: 58px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.product-description-section p {
  color: var(--muted);
}

.product-media-section {
  display: grid;
  gap: 18px;
  margin: 0 0 28px;
}

.product-video {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  aspect-ratio: 16 / 9;
}

.product-video iframe,
.product-video video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
}

.product-specs div {
  background: #fff;
  padding: 16px;
}

.product-specs dt {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-specs dd {
  margin: 4px 0 0;
  color: var(--ink);
}

@media (max-width: 860px) {
  .product-detail,
  .product-specs {
    grid-template-columns: 1fr;
  }
}

/* YADSTAM visual refinement: richer brand color, real imagery, and safer Hebrew display font spacing. */
:root {
  --ink: #06172c;
  --ink-2: #0d2746;
  --muted: #625b54;
  --line: #e4d6bd;
  --paper: #fff9ec;
  --panel: #fffdf8;
  --gold: #c59638;
  --gold-2: #e4bd63;
  --green: #164f43;
  --blue: #071b34;
  --warm: #f3e5c9;
}

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(228, 189, 99, .16), transparent 34%),
    linear-gradient(180deg, #fffaf0 0%, #fbf6ea 44%, #fff 100%);
}

html[lang="he"] h1,
html[lang="he"] .hero-copy h1,
html[lang="he"] .shop-hero h1,
html[lang="he"] .pathway span {
  font-family: "OmstamV4", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: .035em;
  word-spacing: .16em;
  line-height: 1.28;
  text-rendering: optimizeLegibility;
}

html[lang="he"] .product-body h3,
html[lang="he"] .product-info h1 {
  font-family: "OmstamV4", Georgia, "Times New Roman", serif;
  letter-spacing: .025em;
  word-spacing: .12em;
  line-height: 1.28;
}

.topbar {
  background: linear-gradient(90deg, #f7e7bd, #fff7e6, #f1d68f);
  color: #251c10;
}

.nav {
  background: rgba(255, 253, 248, .97);
  box-shadow: 0 12px 34px rgba(6, 23, 44, .06);
}

.brand-mark {
  width: 52px;
  height: 52px;
}

.brand span:last-child {
  color: var(--ink);
}

.cart-button {
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  border-color: var(--ink);
  box-shadow: 0 10px 22px rgba(6, 23, 44, .16);
}

.button.primary {
  background: linear-gradient(135deg, var(--ink), #14375d);
  border-color: var(--ink);
}

.button.ghost {
  color: var(--ink);
  border-color: rgba(255,255,255,.72);
}

.shop-layout {
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding-top: 0;
  background:
    linear-gradient(180deg, rgba(255,249,236,.86), #fff 360px),
    radial-gradient(circle at 80% 0%, rgba(197, 150, 56, .18), transparent 30%);
}

.shop-hero {
  min-height: 310px;
  display: grid;
  align-content: end;
  justify-items: center;
  padding: clamp(52px, 7vw, 88px) clamp(18px, 4vw, 56px) clamp(34px, 5vw, 58px);
  margin-inline: calc(clamp(20px, 5vw, 76px) * -1);
  color: #fff;
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(6, 23, 44, .86), rgba(6, 23, 44, .4), rgba(6, 23, 44, .88)),
    url("../img/products/wc-2398.jpg");
  background-size: cover;
  background-position: center;
}

body[data-audience="mitzvah"] .shop-hero {
  background:
    linear-gradient(90deg, rgba(6, 23, 44, .84), rgba(22, 79, 67, .36), rgba(6, 23, 44, .86)),
    url("../img/products/wc-1701.png");
  background-size: cover;
  background-position: center;
}

.shop-hero .eyebrow,
.shop-hero p:last-child {
  color: rgba(255, 255, 255, .88);
}

.shop-hero h1 {
  text-shadow: 0 16px 34px rgba(0,0,0,.32);
}

.filters {
  border: 1px solid rgba(197, 150, 56, .26);
  background: linear-gradient(180deg, #fffdf8, #fff7e8);
  box-shadow: 0 18px 42px rgba(6, 23, 44, .07);
}

.shop-results {
  min-width: 0;
}

.shop-results .product-grid,
.section-grid .product-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 245px), 1fr));
  align-items: start;
}

.product-grid {
  grid-auto-flow: row;
}

.product-card {
  background: linear-gradient(180deg, #fff, #fffaf1);
  border: 1px solid rgba(228, 214, 189, .86);
  min-width: 0;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 150, 56, .52);
  box-shadow: 0 18px 40px rgba(6, 23, 44, .10);
}

.product-card img {
  aspect-ratio: 4 / 3.35;
  object-fit: contain;
  padding: 16px;
  background:
    radial-gradient(circle at center, #fff 0%, #f5ead4 64%, #ead7b4 100%);
}

.product-body {
  padding: 18px 18px 20px;
  text-align: center;
}

.product-body p {
  font-size: 15px;
  line-height: 1.72;
}

.product-meta {
  color: var(--gold);
  font-weight: 800;
}

.price {
  color: var(--ink-2);
  font-size: 17px;
}

.product-actions {
  justify-content: center;
}

.product-actions button,
.product-actions a {
  background: #fffdf8;
  border-color: rgba(197, 150, 56, .38);
}

.banner-wide {
  color: var(--ink);
  border-color: rgba(197, 150, 56, .30);
}

@media (max-width: 980px) {
  .shop-layout {
    grid-template-columns: 1fr;
    padding-inline: clamp(14px, 4vw, 28px);
  }

  .shop-hero {
    margin-inline: calc(clamp(14px, 4vw, 28px) * -1);
    min-height: 250px;
  }

  .shop-results .product-grid,
  .section-grid .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  }
}

@media (max-width: 680px) {
  html[lang="he"] h1,
  html[lang="he"] .hero-copy h1,
  html[lang="he"] .shop-hero h1,
  html[lang="he"] .product-body h3,
  html[lang="he"] .product-info h1 {
    letter-spacing: .018em;
    word-spacing: .10em;
    line-height: 1.34;
  }

  .shop-layout {
    padding-inline: 16px;
  }

  .shop-hero {
    margin-inline: -16px;
    min-height: 230px;
    padding-inline: 18px;
  }

  .shop-results .product-grid,
  .section-grid .product-grid,
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .product-card img {
    aspect-ratio: 16 / 10;
    padding: 14px;
  }

  .product-body {
    padding: 16px 18px 18px;
  }
}

/* Cart and checkout flow */
.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
}

.cart-button::before {
  content: "";
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='21' r='1'/%3E%3Ccircle cx='19' cy='21' r='1'/%3E%3Cpath d='M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='21' r='1'/%3E%3Ccircle cx='19' cy='21' r='1'/%3E%3Cpath d='M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12'/%3E%3C/svg%3E") center / contain no-repeat;
}

.cart-button [data-cart-count] {
  display: inline-grid;
  min-width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #07172b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.cart-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.cart-actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.cart-whatsapp {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.checkout-hero {
  min-height: 300px;
  display: grid;
  align-content: end;
  justify-items: center;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 76px) clamp(38px, 5vw, 60px);
  color: #fff;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(6, 23, 44, .88), rgba(6, 23, 44, .38), rgba(6, 23, 44, .88)),
    url("../img/products/wc-3417.png");
  background-size: cover;
  background-position: center;
}

.checkout-hero h1 {
  font-size: clamp(38px, 5vw, 68px);
  text-shadow: 0 16px 34px rgba(0,0,0,.32);
}

.checkout-hero p:last-child {
  max-width: 780px;
  margin: 0;
  color: rgba(255,255,255,.9);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: clamp(22px, 4vw, 54px);
  padding: clamp(28px, 5vw, 68px) clamp(18px, 5vw, 76px) 80px;
  background:
    radial-gradient(circle at 15% 0%, rgba(197, 150, 56, .14), transparent 30%),
    linear-gradient(180deg, #fffaf0, #fff 300px);
}

.checkout-form,
.checkout-summary {
  border: 1px solid rgba(228, 214, 189, .9);
  background: rgba(255,255,255,.94);
  padding: clamp(22px, 3vw, 36px);
}

.checkout-form h2,
.checkout-summary h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-top: 0;
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.checkout-fields label,
.checkout-notes {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.checkout-fields input,
.checkout-fields select,
.checkout-notes textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffdf8;
  color: var(--ink);
  min-height: 48px;
  padding: 11px 13px;
  border-radius: 0;
  font: inherit;
}

.checkout-notes textarea {
  resize: vertical;
  min-height: 112px;
}

.checkout-secure {
  margin: 18px 0;
  color: var(--muted);
  font-size: 14px;
}

.checkout-submit:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.checkout-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-line span {
  color: var(--muted);
}

.checkout-warning,
.checkout-error,
.paypal-panel {
  margin-top: 18px;
  border: 1px solid rgba(197, 150, 56, .36);
  background: #fff8e8;
  color: #4a3412;
  padding: 14px;
}

.paypal-panel {
  background:
    linear-gradient(135deg, rgba(255, 248, 232, .95), #fff),
    radial-gradient(circle at 10% 0%, rgba(184, 137, 47, .12), transparent 32%);
  border-color: rgba(184, 137, 47, .48);
  padding: 18px;
}

.paypal-panel[hidden] {
  display: none;
}

#paypal-button-container {
  margin-top: 14px;
  min-height: 92px;
}
.payment-stack {
  display: grid;
  gap: 14px;
}
.payment-option {
  display: grid;
  gap: 8px;
}
.payment-option-label {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}
.payment-card-option {
  padding: 12px;
  border: 1px solid rgba(22, 91, 184, .24);
  background: linear-gradient(135deg, rgba(22, 91, 184, .08), rgba(184, 137, 47, .1));
}
.payment-paypal-option {
  padding: 12px;
  border: 1px solid rgba(7, 23, 43, .22);
  background: #fff;
}

@media (max-width: 900px) {
  .checkout-layout,
  .checkout-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .cart-button {
    padding-inline: 14px;
  }

  .cart-button span:first-child {
    display: none;
  }

  .checkout-hero {
    min-height: 240px;
    padding-inline: 18px;
  }

  .checkout-layout {
    padding-inline: 16px;
  }
}

/* Shop production polish: white catalog, floating filters, aligned product cards. */
body,
.shop-layout,
.shop-results,
.product-page {
  background: #fff;
}

body {
  background-image: none;
}

.shop-layout {
  grid-template-columns: 1fr;
  gap: 28px;
  padding-block: 0 72px;
}

.shop-hero {
  margin-inline: calc(clamp(20px, 5vw, 76px) * -1);
}

.filters {
  position: sticky;
  top: 84px;
  z-index: 18;
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) minmax(170px, .75fr) minmax(210px, 1fr);
  gap: 14px;
  align-items: end;
  width: min(100%, 1120px);
  margin: -34px auto 6px;
  padding: 16px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(197, 150, 56, .28);
  box-shadow: 0 18px 46px rgba(6, 23, 44, .12);
  backdrop-filter: blur(14px);
}

.filters label {
  margin: 0;
}

.filters input,
.filters select {
  min-height: 46px;
  background: #fff;
}

.banner-wide {
  margin: 6px 0 28px;
  background: #fff;
}

.shop-results .product-grid,
.section-grid .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.product-card {
  height: 100%;
  min-height: 625px;
  background: #fff;
  border-color: rgba(210, 188, 146, .72);
  box-shadow: 0 18px 40px rgba(6, 23, 44, .06);
}

.product-card img {
  height: 240px;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 18px;
  background: #fff;
  border: 0;
  border-bottom: 1px solid rgba(228, 214, 189, .74);
}

.product-body {
  min-height: 420px;
  justify-content: flex-start;
}

.product-body h3 {
  min-height: 64px;
  display: grid;
  align-items: center;
}

.product-body p {
  display: -webkit-box;
  min-height: 130px;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.price {
  min-height: 30px;
  display: grid;
  place-items: center;
}

.product-actions {
  margin-top: auto;
  min-height: 92px;
  align-content: end;
}

html[lang="he"] .product-actions button,
html[lang="he"] .product-actions a {
  font-family: var(--body-font);
  letter-spacing: 0;
  word-spacing: normal;
}

@media (min-width: 1280px) {
  .shop-results .product-grid,
  .section-grid .product-grid {
    grid-template-columns: repeat(3, minmax(280px, 1fr));
  }
}

@media (max-width: 980px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    top: 72px;
    grid-template-columns: 1fr;
    margin-top: -20px;
  }

  .product-body,
  .product-body h3,
  .product-body p,
  .product-actions {
    min-height: 0;
  }

  .product-card {
    min-height: 0;
  }
}

.site-footer .footer-grid {
  grid-template-columns: minmax(220px, 1.2fr) minmax(150px, .7fr) minmax(150px, .7fr) minmax(220px, .9fr);
}

@media (max-width: 980px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Luxury contact page */
.contact-luxury {
  background: #f8f6f2;
  color: #1a1a1a;
}
.contact-hero {
  min-height: min(620px, 78vh);
  display: grid;
  place-items: center;
  padding: clamp(80px, 12vw, 150px) clamp(18px, 5vw, 76px);
  color: #fff;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(7, 24, 47, .76), rgba(7, 24, 47, .52), rgba(7, 24, 47, .68)),
    url("../img/contact-hero-luxury.png") center / cover no-repeat;
}
.contact-hero-inner {
  max-width: 860px;
  animation: softRise .7s ease both;
}
.contact-hero h1 {
  margin: 8px 0 16px;
  font-size: clamp(48px, 8vw, 96px);
  color: #fff;
  text-shadow: 0 18px 42px rgba(0,0,0,.32);
}
.contact-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-inline: auto;
  color: rgba(255,255,255,.9);
  font-size: clamp(17px, 2vw, 23px);
}
.contact-methods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 76px);
  margin-top: -70px;
  position: relative;
  z-index: 2;
}
.contact-card {
  min-height: 270px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(200, 161, 90, .32);
  box-shadow: 0 24px 60px rgba(7, 24, 47, .12);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 161, 90, .78);
  box-shadow: 0 30px 74px rgba(7, 24, 47, .17);
}
.contact-icon {
  width: 62px;
  height: 62px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #07182f;
  background:
    radial-gradient(circle at 35% 25%, #fff6d8, #c8a15a 70%),
    #c8a15a;
  font-weight: 950;
  font-size: 24px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55), 0 12px 24px rgba(200, 161, 90, .28);
}
.contact-card h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}
.contact-card p {
  margin: 0;
  color: #5f5a52;
}
.contact-card .button {
  align-self: end;
  margin-top: 8px;
  background: #07182f;
  border-color: #07182f;
  color: #fff;
}
.contact-form-section {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 76px);
  background: #fff;
}
.contact-form-copy {
  max-width: 520px;
}
.contact-form-copy h2 {
  color: #07182f;
  font-size: clamp(34px, 5vw, 62px);
}
.contact-form-copy p:not(.eyebrow),
.contact-form-note {
  color: #6d655c;
}
.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(200, 161, 90, .34);
  background: linear-gradient(180deg, #fff, #fffaf0);
  box-shadow: 0 24px 60px rgba(7, 24, 47, .1);
}
.contact-form input[name="_honey"] {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.contact-form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: #07182f;
  font-weight: 800;
}
.contact-form label:last-child {
  grid-column: 1 / -1;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #e1d6c5;
  border-radius: 0;
  padding: 11px 13px;
  background: #fff;
  color: #07182f;
  font: inherit;
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(200, 161, 90, .42);
  outline-offset: 2px;
  border-color: #c8a15a;
}
.contact-form .button {
  justify-self: start;
  background: #07182f;
  border-color: #07182f;
  color: #fff;
}
.contact-form-note {
  margin: 0;
  font-size: 14px;
}
.contact-map-section {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 76px);
  background: #07182f;
  color: #fff;
}
.contact-map-section h2 {
  color: #fff;
  font-size: clamp(34px, 5vw, 62px);
}
.contact-map-section p {
  color: rgba(255,255,255,.78);
}
.contact-route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.contact-map-wrap {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 161, 90, .56);
  box-shadow: 0 24px 74px rgba(0,0,0,.32);
}
.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  filter: saturate(.9) contrast(1.05);
}
.map-pin {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -100%) rotate(45deg);
  border-radius: 50% 50% 50% 0;
  background: #c8a15a;
  box-shadow: 0 0 0 10px rgba(200, 161, 90, .18), 0 12px 20px rgba(0,0,0,.28);
  pointer-events: none;
}
.contact-trust {
  padding: clamp(42px, 6vw, 86px) clamp(18px, 5vw, 76px);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}
.section-heading h2 {
  font-size: clamp(36px, 5vw, 70px);
}
.trust-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.trust-photo-grid article {
  background: #fff;
  border: 1px solid #e6dccb;
  overflow: hidden;
}
.trust-photo-grid img,
.contact-gallery img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}
.trust-photo-grid article:hover img,
.contact-gallery img:hover {
  transform: scale(1.04);
}
.trust-photo-grid h3,
.trust-photo-grid p {
  padding-inline: 18px;
}
.trust-photo-grid h3 {
  margin: 18px 0 8px;
}
.trust-photo-grid p {
  margin: 0 0 20px;
  color: #6d655c;
}
.contact-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #07182f;
}
.contact-gallery img {
  height: 320px;
  border-inline-end: 1px solid rgba(255,255,255,.12);
}
.floating-whatsapp {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #07182f;
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(0,0,0,.24);
}
.floating-whatsapp:hover {
  transform: translateY(-2px);
}
@keyframes softRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 1100px) {
  .contact-methods,
  .trust-photo-grid,
  .contact-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-map-section {
    grid-template-columns: 1fr;
  }
  .contact-form-section {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .contact-hero {
    min-height: 520px;
    padding-top: 110px;
  }
  .contact-methods,
  .trust-photo-grid,
  .contact-gallery {
    grid-template-columns: 1fr;
  }
  .contact-methods {
    margin-top: -42px;
  }
  .contact-form-fields {
    grid-template-columns: 1fr;
  }
  .contact-form .button {
    width: 100%;
    justify-self: stretch;
  }
  .contact-map-wrap,
  .contact-map-wrap iframe {
    min-height: 350px;
  }
  .contact-gallery img,
  .trust-photo-grid img {
    height: 260px;
  }
  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

/* Conversion-focused shop upgrades */
.shop-hero {
  min-height: 430px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
}
.shop-hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.shop-hero-points li,
.shop-badges span,
.shop-trust-strip span,
.shop-trust-strip strong {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(7, 24, 47, .42);
  color: #fff;
  font-weight: 850;
}
.shop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.shop-hero-actions .button.primary {
  background: #c8a15a;
  border-color: #c8a15a;
  color: #07182f;
}
.shop-hero-actions .button.ghost {
  color: #fff;
  border-color: rgba(255,255,255,.62);
}
.shop-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.shop-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 16px;
  background: #07182f;
  color: #fff;
}
.shop-trust-strip strong {
  color: #ffd36e;
}
.visual-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1120px, 100%);
  margin: 0 auto;
}
.visual-categories-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.visual-categories button {
  min-height: 170px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(200, 161, 90, .34);
  background: #fff;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.visual-categories-two button {
  min-height: 245px;
}
.visual-categories button:hover,
.visual-categories button.is-active {
  transform: translateY(-3px);
  border-color: #c8a15a;
  box-shadow: 0 18px 42px rgba(7, 24, 47, .12);
}
.visual-categories img {
  width: 100%;
  height: 118px;
  object-fit: contain;
  padding: 12px;
  background:
    radial-gradient(circle at 50% 42%, #fff 0%, #f8f6f2 62%, #efe4ce 100%);
}
.visual-categories-two img {
  height: 178px;
}
.visual-categories span {
  padding: 0 14px 14px;
  color: #07182f;
  font-size: 20px;
  font-weight: 950;
}
.product-meta {
  align-self: center;
  padding: 4px 10px;
  border: 1px solid rgba(200, 161, 90, .4);
  background: #fff8e8;
}
.product-stars {
  color: #c8a15a;
  letter-spacing: 2px;
  font-size: 15px;
}
.product-card img {
  background:
    radial-gradient(circle at 50% 35%, #fff 0%, #fff 45%, #f6f1e8 100%);
  filter: drop-shadow(0 14px 18px rgba(7, 24, 47, .14));
}
.product-actions button {
  background: #07182f;
  border-color: #07182f;
  color: #fff;
}
.shop-testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1120px, 100%);
  margin: 8px auto 0;
}
.shop-testimonials article {
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(200, 161, 90, .28);
  background: #fff;
}
.shop-testimonials strong {
  color: #c8a15a;
  letter-spacing: 2px;
}
.shop-testimonials p {
  margin: 10px 0 0;
  color: #07182f;
  font-size: 20px;
  font-weight: 850;
}
.site-footer {
  background: #07182f;
  color: #f8f6f2;
}
.site-footer h3 {
  color: #c8a15a;
  margin: 0 0 14px;
}
.footer-trust-column {
  gap: 8px;
}
.footer-trust-column > span {
  color: #f8f6f2;
}
@media (max-width: 980px) {
  .visual-categories,
  .shop-testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .shop-hero {
    min-height: 520px;
  }
  .shop-hero-points,
  .shop-badges,
  .shop-hero-actions,
  .shop-trust-strip {
    justify-content: stretch;
  }
  .shop-hero-points li,
  .shop-badges span,
  .shop-trust-strip span,
  .shop-trust-strip strong,
  .shop-hero-actions .button {
    width: 100%;
    justify-content: center;
  }
  .visual-categories,
  .shop-testimonials {
    grid-template-columns: 1fr;
  }
  .visual-categories-two img {
    height: 160px;
  }
}

/* Home conversion polish */
body[data-page="home"] .hero {
  min-height: min(720px, calc(88svh - 78px));
}

body[data-page="home"] .hero-media {
  min-height: min(720px, calc(88svh - 78px));
  background:
    linear-gradient(90deg, rgba(5, 18, 35, .86), rgba(5, 18, 35, .42) 48%, rgba(5, 18, 35, .82)),
    linear-gradient(0deg, rgba(5, 18, 35, .74), rgba(5, 18, 35, .06) 52%, rgba(5, 18, 35, .42)),
    url("../img/products/wc-1701-2.jpg");
  background-size: cover;
  background-position: center 45%;
}

body[data-page="home"] .hero-copy {
  align-items: flex-start;
  text-align: start;
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

body[data-page="home"] .hero-logo {
  width: clamp(72px, 8vw, 112px);
  margin-bottom: 16px;
  align-self: flex-start;
}

body[data-page="home"] .hero-copy h1 {
  max-width: 760px;
}

body[data-page="home"] .hero-copy p {
  max-width: 680px;
  white-space: pre-line;
}

.home-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 2px;
  padding: 0;
  list-style: none;
}

.home-hero-points li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.home-feature-categories {
  padding: 56px clamp(20px, 5vw, 76px);
  background: #fff;
}

.home-feature-categories .section-heading {
  max-width: none;
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-category-grid a {
  min-height: 190px;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid rgba(200, 161, 90, .32);
  background: #fff;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.home-category-grid a:hover {
  transform: translateY(-3px);
  border-color: #c8a15a;
  box-shadow: 0 18px 42px rgba(7, 24, 47, .1);
}

.home-category-grid img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  padding: 14px;
  background: radial-gradient(circle at 50% 38%, #fff 0%, #f7f3eb 62%, #ece0c8 100%);
}

.home-category-grid span {
  padding: 14px;
  text-align: center;
  color: #07182f;
  font-size: 21px;
  font-weight: 950;
}

body[data-page="home"] .section-grid {
  grid-template-columns: 1fr;
  padding-top: 26px;
}

body[data-page="home"] .section-grid .banner-slot {
  min-height: 170px;
}

body[data-page="home"] .section-grid > aside:first-child,
body[data-page="home"] .section-grid > aside:last-child {
  display: none;
}

body[data-page="home"] .month-product {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(24px, 4vw, 44px);
}

body[data-page="home"] .month-product > div {
  order: -1;
}

body[data-page="home"] .month-product img {
  max-height: 380px;
  object-fit: contain;
  background: radial-gradient(circle at center, #fff 0%, #f6f1e8 70%, #ece0c8 100%);
}

.month-social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #c8a15a;
}

.month-social-proof strong {
  color: #07182f;
}

body[data-page="home"] .split-section {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

body[data-page="home"] .news-list {
  gap: 18px;
}

body[data-page="home"] .news-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(200, 161, 90, .26);
  background: #fff;
}

body[data-page="home"] .news-item img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  background: #f6f1e8;
}

body[data-page="home"] .news-item h3 {
  font-size: 21px;
}

body[data-page="home"] .product-card {
  min-height: 0;
}

.shop-results .product-card {
  min-height: 0;
}

body[data-page="home"] .product-body,
body[data-page="home"] .product-actions,
.shop-results .product-body,
.shop-results .product-actions {
  min-height: 0;
}

body[data-page="home"] .product-body p,
.shop-results .product-body p {
  display: none;
}

body[data-page="home"] .product-body h3,
.shop-results .product-body h3 {
  min-height: 56px;
}

.trust-icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-icons li {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 20px 14px;
  border: 1px solid rgba(200, 161, 90, .28);
  background: #fff;
  text-align: center;
}

.trust-icons span {
  font-size: 31px;
  line-height: 1;
}

.trust-icons strong {
  color: #07182f;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial-head img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.testimonial-head span {
  color: #c8a15a;
  letter-spacing: 2px;
}

body[data-page="home"] .testimonials article {
  border-color: rgba(200, 161, 90, .32);
  background: linear-gradient(180deg, #fff, #fffaf0);
}

.customer-photos {
  padding: 0 clamp(20px, 5vw, 76px) 56px;
  background: #fff;
}

.customer-photos .section-heading {
  max-width: none;
}

.customer-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.customer-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(200, 161, 90, .32);
  background: #fffaf0;
  box-shadow: 0 18px 42px rgba(7, 24, 47, .08);
}

.customer-photo-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  background: #f7f3eb;
  transition: transform .35s ease;
}

.customer-photo-grid figure:hover img {
  transform: scale(1.035);
}

.customer-photo-grid figcaption {
  padding: 14px 16px 16px;
  color: #07182f;
  font-weight: 850;
  text-align: center;
}

.site-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 18px clamp(20px, 5vw, 76px);
  background: #07182f;
  color: #fff;
}

.site-trust-bar strong {
  color: #ffd36e;
}

.site-trust-bar span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}

.footer-brand-column h2::before {
  content: "";
  display: block;
  width: 84px;
  height: 84px;
  margin-bottom: 12px;
  background: url("../img/yadstam-logo.png") center / contain no-repeat;
}

@media (max-width: 980px) {
  body[data-page="home"] .split-section,
  body[data-page="home"] .month-product,
  .home-category-grid,
  .customer-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body[data-page="home"] .hero-copy {
    width: calc(100% - 32px);
    align-items: center;
    text-align: center;
  }

  body[data-page="home"] .hero-logo {
    align-self: center;
  }

  .home-hero-points,
  body[data-page="home"] .hero-actions {
    justify-content: stretch;
    width: 100%;
  }

  .home-hero-points li,
  body[data-page="home"] .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  body[data-page="home"] .split-section,
  body[data-page="home"] .month-product,
  .home-category-grid,
  .trust-icons,
  .customer-photo-grid,
  body[data-page="home"] .news-item {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .news-item img {
    height: 190px;
  }

  .customer-photo-grid img {
    height: 260px;
  }
}

/* Mobile polish: keep navigation and course landing usable on phones/tablets. */
.cart-drawer[aria-hidden="true"] {
  display: none;
}
.cart-drawer.is-open {
  display: block;
}

@media (max-width: 900px) {
  .nav {
    align-items: center;
    flex-wrap: wrap;
    row-gap: 12px;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    margin-inline-start: auto;
  }
  .nav-links {
    display: none;
    order: 10;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 0 4px;
    border-top: 1px solid var(--line);
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links a {
    padding: 12px 4px;
  }
  .language-switcher {
    margin-inline-start: 0;
  }
  .course-hero.course-hero-premium,
  .course-hero {
    grid-template-columns: 1fr;
  }
  .course-hero-copy,
  .course-hero-media,
  .course-urgency,
  .course-actions,
  .course-actions .button,
  .course-actions button {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .course-trust-bar {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .topbar,
  .nav,
  .shop-layout,
  .course-section,
  .course-benefits,
  .course-gallery,
  .course-final-cta {
    padding-inline: 16px;
  }
  .cart-button span:first-child {
    display: none;
  }
  .course-actions .button,
  .course-actions button,
  .shop-hero-actions .button,
  .home-course-actions .button,
  .home-course-actions button {
    white-space: normal;
    text-align: center;
  }
  .shop-hero {
    margin-inline: 0;
    width: 100%;
  }
}

.course-price-stack {
  grid-template-columns: repeat(2, minmax(0, 260px));
}
.course-price-stack div,
.course-price-stack strong {
  min-width: 0;
}
.course-price-stack strong {
  width: max-content;
  max-width: 100%;
}

/* YADSTAM luxury brand experience refresh */
:root {
  --ink: #07182F;
  --gold: #C8A15A;
  --ivory: #F8F6F2;
  --text: #111111;
  --paper: #FFFFFF;
  --muted: #68625a;
  --line: rgba(7, 24, 47, .12);
}

html { scroll-behavior: smooth; }
body { background: var(--paper); color: var(--text); font-family: "Noto Sans Hebrew", "Heebo", "Assistant", Arial, sans-serif; }
a, button, .button { transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease, opacity .22s ease; }
a:focus-visible, button:focus-visible, .button:focus-visible, input:focus-visible, select:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
button:active, .button:active, a:active { transform: translateY(1px) scale(.99); }
.button, .product-actions button, .product-actions a, .cart-button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.button.primary, .product-actions button, .checkout-link { background: var(--ink); border-color: var(--ink); color: #fff; box-shadow: 0 14px 32px rgba(7,24,47,.14); }
.button.primary:hover, .product-actions button:hover, .checkout-link:hover { background: #0d2446; border-color: #0d2446; transform: translateY(-2px); box-shadow: 0 18px 38px rgba(7,24,47,.22); }
.button.ghost, .cart-whatsapp { background: rgba(255,255,255,.9); color: var(--ink); border-color: rgba(7,24,47,.18); }
.button.ghost:hover, .cart-whatsapp:hover { border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }

.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); }
.nav { min-height: 78px; background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); }
.brand span:last-child { letter-spacing: .04em; }
.nav-links a { position: relative; }
.nav-links a::after { content:""; position:absolute; inset-inline:0; bottom:-8px; height:1px; background:var(--gold); transform:scaleX(0); transition:transform .22s ease; }
.nav-links a:hover::after { transform:scaleX(1); }
.language-switcher button:hover, .language-switcher button.is-active { background: var(--ink); color:#fff; border-color:var(--ink); }

.hero { min-height: clamp(620px, 88svh, 900px); grid-template-columns: 1fr; position: relative; overflow: hidden; background: #07182F; }
.hero-media { position:absolute; inset:0; min-height:100%; background: linear-gradient(90deg, rgba(7,24,47,.88), rgba(7,24,47,.56), rgba(7,24,47,.2)), url("../img/course/sofrut-real-writing.jpg") center/cover; transform: scale(1.02); }
.hero-copy { position:relative; z-index:1; width:min(760px, calc(100% - 40px)); margin-inline: clamp(18px, 7vw, 96px); padding: clamp(120px, 18vh, 210px) 0; color:#fff; }
.hero-copy h1 { font-size: clamp(48px, 8vw, 112px); line-height:1.02; letter-spacing:0; color:#fff; max-width: 900px; }
.hero-copy p { font-size: clamp(18px, 2.1vw, 25px); line-height:1.75; color: rgba(255,255,255,.86); max-width: 650px; }
.eyebrow { color: var(--gold); letter-spacing:.16em; text-transform: uppercase; font-weight: 800; }
.home-hero-points { display:flex; flex-wrap:wrap; gap:10px; padding:0; margin: 26px 0; list-style:none; }
.home-hero-points li { border:1px solid rgba(255,255,255,.26); background:rgba(255,255,255,.08); padding:10px 14px; color:#fff; }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; }
.hero-actions .button { min-width: 180px; border-radius: 0; }

.luxury-trust-strip { display:grid; grid-template-columns: repeat(6, auto); justify-content:center; align-items:center; gap: clamp(12px, 3vw, 34px); padding: 18px clamp(18px, 5vw, 72px); background: var(--ivory); border-bottom:1px solid var(--line); color:var(--ink); font-weight:800; }
.luxury-trust-strip span { color: var(--gold); letter-spacing:.08em; }
.luxury-trust-strip a { color: var(--ink); }
.luxury-trust-strip a:hover { color: var(--gold); }

.pathways, .section-grid, .split-section, .trust, .testimonials, .customer-photos, .site-trust-bar, .whatsapp-cta, .home-feature-categories, .home-course-promo { max-width: 1380px; margin-inline:auto; }
.home-feature-categories, .section-grid, .split-section, .trust, .testimonials, .customer-photos { padding-block: clamp(54px, 8vw, 110px); }
.section-heading h2, .trust h2, .home-course-copy h2, .course-section h2, .product-info h1 { font-size: clamp(34px, 5vw, 72px); line-height:1.12; letter-spacing:0; color:var(--ink); }

.home-category-grid { display:grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap:18px; }
.home-category-grid a { position:relative; min-height: 280px; overflow:hidden; background:#000; color:#fff; display:flex; align-items:end; padding:22px; box-shadow:0 20px 55px rgba(7,24,47,.09); }
.home-category-grid img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.72; transition: transform .55s ease, opacity .3s ease; }
.home-category-grid span { position:relative; z-index:1; font-size:24px; font-weight:900; text-shadow:0 2px 18px rgba(0,0,0,.36); }
.home-category-grid a::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, transparent, rgba(7,24,47,.82)); }
.home-category-grid a:hover img { transform:scale(1.08); opacity:.9; }
.home-category-grid a:hover { transform:translateY(-4px); }

.product-grid { gap: clamp(18px, 3vw, 30px); }
.product-card { border:0; background:#fff; box-shadow:0 24px 70px rgba(7,24,47,.08); }
.product-card > a { display:block; overflow:hidden; background:var(--ivory); }
.product-card img { aspect-ratio: 1 / 1; transition: transform .55s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow:0 30px 80px rgba(7,24,47,.14); }
.product-card:hover img { transform: scale(1.06); }
.product-body { padding:22px; gap:12px; }
.product-badge {
  width: fit-content;
  border: 1px solid rgba(200, 161, 90, .42);
  background: #fffaf0;
  color: #8a6628;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-meta { color:var(--gold); text-transform:uppercase; letter-spacing:.12em; font-size:12px; font-weight:900; }
.product-body h3 { font-size: clamp(19px, 1.6vw, 25px); line-height:1.2; min-height: auto; }
.product-stars { color: var(--gold); letter-spacing:.08em; }
.price { font-size:19px; color:var(--ink); }
.product-actions { display:grid; grid-template-columns: 1fr auto; gap:10px; align-items:center; }
.product-actions a { grid-column: 1 / -1; border:1px solid var(--line); color:var(--ink); padding:11px 14px; justify-content:center; }
.product-actions a:hover { border-color:var(--gold); color:var(--gold); }
.wishlist-button { width:46px; padding:0!important; background:#fff!important; color:var(--ink)!important; border:1px solid var(--line)!important; box-shadow:none!important; font-size:22px; }
.wishlist-button:hover, .wishlist-button.is-active { color:#9b1c1c!important; border-color:#9b1c1c!important; }

.news-list { display:grid; gap:18px; }
.news-item { display:grid; grid-template-columns: 180px 1fr; gap:20px; align-items:center; background:#fff; border:1px solid var(--line); padding:14px; box-shadow:0 18px 50px rgba(7,24,47,.06); }
.news-item img { width:100%; height:150px; object-fit:cover; }
.news-item time { color:var(--gold); font-weight:800; }

.product-detail { max-width: 1320px; margin: 0 auto; padding: clamp(34px, 6vw, 90px) clamp(18px, 5vw, 70px); grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr); gap: clamp(28px, 5vw, 70px); align-items:start; }
.product-gallery, .product-info { background:#fff; border:1px solid var(--line); box-shadow:0 28px 80px rgba(7,24,47,.08); }
.product-gallery { padding: clamp(14px, 3vw, 28px); }
.product-info { padding: clamp(24px, 4vw, 44px); position:sticky; top:110px; }
.product-info .price { font-size: clamp(28px, 4vw, 44px); margin: 18px 0; }
.product-info .product-actions { display:flex; flex-wrap:wrap; }
.product-info .product-actions button, .product-info .product-actions a { flex:1 1 190px; }
.product-specs, .product-long-description, .related-products { max-width:1320px; margin-inline:auto; }
.product-specs { border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding-block:40px; }

.course-hero, .course-hero.course-hero-premium { min-height: 720px; }
.course-final-cta, .course-trust-bar, .included-card, .course-benefits article { box-shadow:0 24px 70px rgba(7,24,47,.08); }

.site-footer { background: var(--ink); color:#fff; margin-top:80px; }
.site-footer a, .site-footer span, .site-footer p { color:rgba(255,255,255,.78); }
.site-footer h2, .site-footer h3 { color:#fff; }
.footer-social-link:hover, .site-footer a:hover { color:var(--gold); transform:translateY(-2px); }
.footer-route-card { border:1px solid rgba(255,255,255,.16); padding:14px; }
.topbar a { color: inherit; }
.topbar a:hover { color: var(--gold); }
.home-category-grid a:focus-visible,
.product-card a:focus-visible,
.footer-social-link:focus-visible,
.footer-route-card:focus-visible { outline-offset: -4px; }
.news-item { transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.news-item:hover { transform: translateY(-3px); border-color: rgba(200, 161, 90, .38); box-shadow: 0 24px 70px rgba(7,24,47,.12); }
.month-product img { transition: transform .55s ease; }
.month-product:hover img { transform: scale(1.025); }

@keyframes luxuryFadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
.hero-copy, .luxury-trust-strip, .home-feature-categories, .product-card, .news-item, .trust, .testimonials article { animation: luxuryFadeUp .7s ease both; }

@media (max-width: 1180px) { .home-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .luxury-trust-strip { grid-template-columns: repeat(3, 1fr); text-align:center; } }
@media (max-width: 760px) {
  .hero { min-height: 720px; }
  .hero-media { background: linear-gradient(180deg, rgba(7,24,47,.82), rgba(7,24,47,.54)), url("../img/course/sofrut-real-writing.jpg") center/cover; }
  .hero-copy { width: calc(100% - 32px); margin-inline:16px; padding-top:120px; text-align:start; }
  .hero-copy h1 { font-size: clamp(44px, 13vw, 66px); }
  .hero-actions .button { width:100%; }
  .luxury-trust-strip { grid-template-columns: 1fr; gap:10px; }
  .home-category-grid { grid-template-columns: 1fr; }
  .home-category-grid a { min-height: 230px; }
  .product-grid, .product-grid.compact { grid-template-columns: 1fr; }
  .product-actions { grid-template-columns: 1fr auto; }
  .news-item { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; padding-inline:16px; }
  .product-info { position:static; }
}
.hero { max-width: 100%; }
.hero-media { transform: none; }
body { overflow-x: hidden; }

/* YADSTAM identity typography: OmstamV4 is display-only, never used below 32px. */
:root {
  --display-font: "OmstamV4", "Omstam", "Times New Roman", serif;
  --body-font: "Heebo", "Assistant", "Noto Sans Hebrew", "Segoe UI", Arial, sans-serif;
}

body,
input,
select,
textarea,
button,
.product-description,
.product-long-description,
.course-faq,
.content-page,
.checkout-form,
.contact-form {
  font-family: var(--body-font);
}

h1,
h2,
h3,
.hero-copy h1,
.shop-hero h1,
.shop-premium-banner h2,
.section-heading h2,
.trust h2,
.home-course-copy h2,
.course-hero h1,
.course-section h2,
.course-final-cta h2,
.course-index-hero h1,
.product-info h1,
.visual-categories span,
.site-footer h2,
.site-footer h3,
.testimonial-grid h3,
.customer-photos h2,
.month-product h2,
.news-item h3,
.home-feature-categories h2,
.checkout-hero h1,
.contact-hero h1,
.contact-card h2,
.contact-map-section h2 {
  font-family: var(--display-font);
  font-weight: 400;
  font-kerning: normal;
  letter-spacing: 0;
  word-spacing: .12em;
  line-height: 1.22;
  overflow-wrap: anywhere;
  text-rendering: optimizeLegibility;
}

h1,
.hero-copy h1,
.shop-hero h1,
.course-hero h1,
.course-index-hero h1,
.checkout-hero h1,
.contact-hero h1 {
  font-size: clamp(48px, 7.4vw, 112px);
  line-height: 1.02;
}

h2,
.shop-premium-banner h2,
.section-heading h2,
.trust h2,
.home-course-copy h2,
.course-section h2,
.course-final-cta h2,
.product-info h1,
.month-product h2,
.contact-map-section h2 {
  font-size: clamp(36px, 4.6vw, 74px);
}

h3,
.product-body h3,
.news-item h3,
.testimonial-grid h3,
.visual-categories span {
  font-size: clamp(32px, 2.35vw, 42px);
}

.product-body h3 {
  min-height: auto;
  letter-spacing: 0;
}

.product-body p,
.product-description,
.product-long-description,
.course-section p,
.course-faq,
.content-page p,
.content-page li {
  font-family: var(--body-font);
  letter-spacing: 0;
  line-height: 1.82;
}

.faq-page {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
  padding: clamp(72px, 9vw, 132px) 0;
}

.faq-hero {
  max-width: 860px;
  margin: 0 auto clamp(64px, 8vw, 110px);
  text-align: center;
}

.faq-hero h1 {
  margin: 12px 0 20px;
}

.faq-hero > p:last-child {
  max-width: 720px;
  margin-inline: auto;
  font-size: clamp(17px, 2vw, 21px);
}

.faq-language {
  padding: clamp(44px, 7vw, 88px) 0;
  border-top: 1px solid rgba(200, 161, 90, .38);
}

.faq-language h2 {
  max-width: 850px;
  margin: 10px 0 clamp(28px, 5vw, 50px);
}

.faq-language details {
  border-bottom: 1px solid rgba(7, 24, 47, .16);
  padding: 0;
}

.faq-language summary {
  position: relative;
  padding: 24px 44px 24px 0;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--body-font);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 750;
  line-height: 1.45;
  list-style: none;
}

.faq-language[dir="ltr"] summary {
  padding: 24px 0 24px 44px;
}

.faq-language summary::-webkit-details-marker {
  display: none;
}

.faq-language summary::before {
  content: "+";
  position: absolute;
  inset-inline-start: 4px;
  top: 21px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.faq-language details[open] summary::before {
  content: "−";
}

.faq-language details p {
  max-width: 880px;
  margin: 0;
  padding: 0 44px 28px 0;
  color: var(--muted);
}

.faq-language[dir="ltr"] details p {
  padding: 0 0 28px 44px;
}

.faq-language a {
  color: var(--navy);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.shop-premium-banner {
  grid-column: 1 / -1;
  min-height: clamp(340px, 44vw, 520px);
  display: grid;
  align-items: end;
  margin: clamp(10px, 2vw, 26px) 0 clamp(18px, 4vw, 52px);
  padding: clamp(26px, 5vw, 70px);
  color: #fff;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(90deg, rgba(7, 24, 47, .92), rgba(7, 24, 47, .66), rgba(7, 24, 47, .28)),
    url("../img/course/sofrut-real-writing.jpg") center / cover no-repeat;
  box-shadow: 0 34px 90px rgba(7, 24, 47, .18);
}

.shop-premium-banner::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(200, 161, 90, .42);
  pointer-events: none;
}

.shop-premium-banner > div {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

.shop-premium-banner h2 {
  margin: 0 0 18px;
  color: #fff;
  text-shadow: 0 16px 36px rgba(0, 0, 0, .34);
}

.shop-premium-banner p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.8;
}

.shop-premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.shop-premium-actions .button {
  min-width: 170px;
  justify-content: center;
  border-radius: 0;
}

.shop-premium-actions .button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #07182f;
}

.shop-premium-actions .button.ghost {
  border-color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.shop-premium-actions .button:hover {
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  h1,
  .hero-copy h1,
  .shop-hero h1,
  .course-hero h1,
  .checkout-hero h1,
  .contact-hero h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .shop-premium-banner {
    min-height: 460px;
    padding: 34px 22px;
    background:
      linear-gradient(180deg, rgba(7, 24, 47, .86), rgba(7, 24, 47, .48)),
      url("../img/course/sofrut-real-writing.jpg") center / cover no-repeat;
  }

  .shop-premium-banner::after {
    inset: 12px;
  }

  .shop-premium-actions .button {
    width: 100%;
  }
}

/* Mobile overflow guard: keep legacy/static pages aligned on small screens. */
@media (max-width: 680px) {
  body {
    width: 100%;
    position: relative;
  }

  img,
  video,
  iframe {
    max-width: 100%;
  }

  .topbar {
    padding: 7px 12px;
    gap: 8px 14px;
    font-size: 11px;
    line-height: 1.35;
  }

  .topbar span {
    white-space: nowrap;
  }

  .topbar span:first-child {
    display: none;
  }

  .nav {
    position: relative;
    padding: 10px 12px;
    padding-inline-end: 62px;
    gap: 8px;
    min-width: 0;
    justify-content: flex-start;
  }

  .brand {
    position: absolute;
    inset-inline-end: 12px;
    top: 50%;
    transform: translateY(-50%);
    min-width: 0;
    gap: 8px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .brand > span:not(.brand-mark) {
    display: none;
  }

  .brand span,
  .brand small {
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    color: var(--ink);
  }

  .cart-button {
    min-width: 46px;
    width: 46px;
    height: 42px;
    padding: 0;
    border-radius: 999px;
    overflow: hidden;
    white-space: nowrap;
  }

  .hero,
  .pathways,
  .section-grid,
  .split-section,
  .trust,
  .testimonials,
  .shop-layout,
  .footer-grid,
  .month-product,
  .product-layout,
  .contact-cards {
    grid-template-columns: 1fr !important;
  }

  .product-grid,
  .product-grid.compact {
    grid-template-columns: 1fr !important;
  }

  .hero-copy,
  .content-page,
  .shop-layout,
  .section-grid,
  .split-section,
  .testimonials,
  .trust,
  .whatsapp-cta,
  .month-product,
  .contact-cards {
    padding-inline: 16px;
  }

  .hero-copy h1,
  .shop-hero h1,
  .content-page h1,
  .product-detail h1 {
    overflow-wrap: anywhere;
  }

  .button,
  .cart-button,
  .product-actions button,
  .product-actions a {
    max-width: 100%;
  }

  .site-footer,
  footer {
    overflow-x: hidden;
  }

  .site-footer .footer-grid,
  footer .body {
    grid-template-columns: 1fr !important;
    padding-inline: 18px !important;
    text-align: center;
  }

  .site-footer ul,
  footer ul {
    padding: 0;
    margin: 0;
    justify-items: center;
  }

  .footer-social,
  .footer-directions,
  .social-row,
  .payment-chips {
    justify-content: center;
  }

  .footer-social-link,
  .footer-route-card,
  footer li a {
    max-width: 100%;
    justify-content: center;
    overflow-wrap: anywhere;
  }

  #cart-drawer {
    width: 100vw;
    max-width: 100vw;
  }

  html[lang="he"] h1,
  html[lang="he"] .hero-copy h1,
  html[lang="he"] .shop-hero h1,
  html[lang="he"] .product-body h3,
  html[lang="he"] .product-info h1 {
    letter-spacing: 0;
    word-spacing: .1em;
    line-height: 1.28;
  }
}
