/* ========================================
   מאפיית לב יהודה — עיצוב ראשי
   RTL | Hebrew | Boutique Bakery
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --color-burgundy: #7A1A2E;
  --color-burgundy-dark: #5c1222;
  --color-burgundy-light: #9b2f45;
  --color-dark: #1E1C1A;
  --color-dark-80: rgba(30, 28, 26, 0.8);
  --color-cream: #E8E0C8;
  --color-cream-light: #F0EBD8;
  --color-wheat: #C4975A;
  --color-wheat-light: #D4AA74;
  --color-bg: #F5F0E6;
  --color-white: #FDFAF5;
  --color-text-muted: #6B6560;
  --color-border: rgba(196, 151, 90, 0.25);

  --font-display: 'Frank Ruhl Libre', Georgia, serif;
  --font-body: 'Heebo', Arial, sans-serif;
  --font-accent: 'David Libre', Georgia, serif;
  --font-story: 'Secular One', Georgia, serif;

  --border-radius: 8px;
  --border-radius-lg: 16px;
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;

  --shadow-sm: 0 2px 8px rgba(30, 28, 26, 0.08);
  --shadow-md: 0 4px 20px rgba(30, 28, 26, 0.12);
  --shadow-lg: 0 8px 40px rgba(30, 28, 26, 0.18);

  --max-width: 1200px;
  --section-padding: 90px 0;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  direction: rtl;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

input, textarea, select, button {
  font-family: var(--font-body);
  font-size: inherit;
}

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

/* ===== SECTION PADDING ===== */
.section-padding {
  padding: var(--section-padding);
}

/* ===== BACKGROUND VARIANTS ===== */
.bg-cream {
  background: var(--color-cream-light);
}

.bg-dark {
  background: var(--color-dark);
  color: var(--color-white);
}

/* ===== SECTION INTRO ===== */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-wheat);
  margin-bottom: 12px;
  position: relative;
  padding-right: 28px;
}

.section-label::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--color-wheat);
}

.section-label.light {
  color: var(--color-wheat-light);
}

.section-label.light::before {
  background: var(--color-wheat-light);
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-burgundy);
  margin-bottom: 16px;
}

.section-title.light {
  color: var(--color-cream);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Ripple effect */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: ripple-anim 0.55s linear;
  pointer-events: none;
}

@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0; }
}

.btn-primary {
  background: var(--color-burgundy);
  color: var(--color-white);
  border-color: var(--color-burgundy);
}

.btn-primary:hover {
  background: var(--color-burgundy-dark);
  border-color: var(--color-burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122, 26, 46, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.7);
}

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

.btn-wheat {
  background: var(--color-wheat);
  color: var(--color-dark);
  border-color: var(--color-wheat);
  font-weight: 700;
}

.btn-wheat:hover {
  background: var(--color-wheat-light);
  border-color: var(--color-wheat-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 151, 90, 0.35);
}

.btn-full {
  width: 100%;
}

/* ===== FADE IN ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-delay {
  transition-delay: 0.15s;
}

.fade-in-delay-2 {
  transition-delay: 0.3s;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 24px;
}

.logo-link {
  flex-shrink: 0;
}

.site-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark);
  padding: 6px 12px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.nav-list a:hover {
  color: var(--color-burgundy);
  background: rgba(122, 26, 46, 0.06);
}

.nav-cta {
  background: var(--color-burgundy) !important;
  color: var(--color-white) !important;
  padding: 8px 20px !important;
}

.nav-cta:hover {
  background: var(--color-burgundy-dark) !important;
  color: var(--color-white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

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

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

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  z-index: 999;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 24px 24px;
  transform: translateY(-110%);
  transition: transform 0.35s ease;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-list a {
  display: block;
  padding: 12px 16px;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: var(--border-radius);
  color: var(--color-dark);
}

.mobile-nav-list a:hover {
  background: var(--color-cream);
  color: var(--color-burgundy);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 80px;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

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

@media (max-width: 600px) {
  .hero {
    min-height: 70vh;
  }

  .hero-img {
    object-position: center 30%;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 28, 26, 0.92) 0%,
    rgba(30, 28, 26, 0.60) 40%,
    rgba(30, 28, 26, 0.30) 70%,
    rgba(30, 28, 26, 0.10) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  padding-top: var(--header-height);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-wheat-light);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  white-space: nowrap;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--color-cream);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.badge {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(196, 151, 90, 0.6);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-cream);
  background: rgba(196, 151, 90, 0.12);
  letter-spacing: 0.05em;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll-arrow {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-cream);
  opacity: 0.6;
  animation: bounce 2.2s infinite;
}

.hero-scroll-arrow svg {
  width: 28px;
  height: 28px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT ===== */
.about {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-text .lead-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.about-body-text {
  font-family: var(--font-story);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.story-quote {
  border-right: 4px solid var(--color-wheat);
  padding: 12px 20px;
  margin: 32px 0 0;
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--color-burgundy);
  font-style: normal;
  background: rgba(196, 151, 90, 0.07);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* About images — single founder photo */
.founder-img-wrap {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  box-shadow: var(--shadow-lg);
}

.founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.founder-img-wrap:hover img {
  transform: scale(1.03);
}

.founders-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-cream);
  border: 2px dashed var(--color-wheat);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 16px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  min-height: 160px;
}

.placeholder-icon {
  font-size: 2rem;
  opacity: 0.5;
}

/* ===== PRODUCTS GALLERY SLIDER ===== */
.products {
  background: var(--color-white);
  overflow: hidden;
}

.products .section-intro {
  padding: 0 24px;
}

.product-slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--color-white);
}

.product-slider {
  display: flex;
  width: 100%;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.product-slide {
  flex: 0 0 100%;
  width: 100%;
}

.product-slide-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f8f5ef;
}

.product-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.8s ease;
}

.product-slide-img:hover img {
  transform: scale(1.02);
}



/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: calc(50% - 24px);
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(253, 250, 245, 0.92);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--color-dark);
  box-shadow: var(--shadow-md);
}

.slider-arrow:hover {
  background: var(--color-burgundy);
  border-color: var(--color-burgundy);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

.slider-arrow--prev {
  right: 20px;
}

.slider-arrow--next {
  left: 20px;
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  padding: 20px 40px 40px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.dot.active {
  background: var(--color-burgundy);
  transform: scale(1.4);
}

/* ===== GALLERY / VIDEO REEL ===== */
.reel-player-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.reel-player {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
}

.reel-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-play-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 28, 26, 0.55);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.reel-play-btn:hover {
  background: rgba(122, 26, 46, 0.75);
  border-color: rgba(255,255,255,0.8);
  transform: translateX(-50%) scale(1.08);
}

@media (max-width: 640px) {
  .reel-player {
    max-width: 100%;
    border-radius: var(--border-radius);
  }
}

/* ===== GEO LOCATION ===== */
.geo-section {
  text-align: center;
  margin-bottom: 32px;
}

.btn-geo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--color-burgundy);
  color: var(--color-white);
  border: none;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-geo:hover {
  background: var(--color-burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122, 26, 46, 0.3);
}

.btn-geo:disabled {
  opacity: 0.6;
  cursor: wait;
}

.geo-result {
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--color-white);
  border: 1.5px solid var(--color-wheat);
  border-radius: var(--border-radius-lg);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
}

.geo-result .geo-store-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-burgundy);
  margin-bottom: 4px;
}

.geo-result .geo-store-addr {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.geo-result .geo-distance {
  font-size: 0.82rem;
  color: var(--color-wheat);
  font-weight: 600;
  margin-bottom: 12px;
}

.geo-result .btn-geo-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: #00c0e0;
  color: #fff;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.geo-result .btn-geo-nav:hover {
  background: #00a8c8;
}

/* ===== STORE SEARCH ===== */
.store-search-wrap {
  max-width: 700px;
  margin: 0 auto 28px;
}

.store-search-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  right: 16px;
  color: var(--color-text-muted);
  pointer-events: none;
}

.store-search-input {
  width: 100%;
  padding: 13px 48px 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 40px;
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark);
  direction: rtl;
  text-align: right;
  outline: none;
  transition: border-color 0.2s ease;
}

.store-search-input:focus {
  border-color: var(--color-burgundy);
  box-shadow: 0 0 0 3px rgba(122, 26, 46, 0.08);
}

/* ===== NEIGHBORHOOD GROUPS ===== */
.neighborhood-group {
  margin-bottom: 8px;
}

.neighborhood-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-wheat);
  padding: 14px 0 6px;
  border-bottom: 1px solid rgba(196,151,90,0.2);
  margin-bottom: 0;
}

.neighborhood-group[hidden] {
  display: none;
}

.no-results-msg {
  text-align: center;
  padding: 32px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.no-results-msg a {
  color: var(--color-burgundy);
  text-decoration: underline;
}

/* ===== WHERE TO BUY ===== */

/* Elegant location list */
.locations-list {
  list-style: none;
  margin: 0 0 48px;
  border-top: 1px solid var(--color-border);
}

.location-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  gap: 16px;
  flex-wrap: wrap;
}

.location-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
}

.location-row--coming-soon .location-name {
  color: var(--color-text-muted);
  font-weight: 400;
  font-style: italic;
}

.coming-soon-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 3px 12px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.location-nav-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-btn--waze {
  color: #33ccff;
  border-color: rgba(51, 204, 255, 0.3);
  background: rgba(51, 204, 255, 0.06);
}

.nav-btn--waze:hover {
  background: #33ccff;
  color: var(--color-dark);
  border-color: #33ccff;
}

.nav-btn--maps {
  color: var(--color-wheat);
  border-color: var(--color-border);
  background: transparent;
}

.nav-btn--maps:hover {
  background: var(--color-wheat);
  color: var(--color-dark);
  border-color: var(--color-wheat);
}

/* Map embed */
.map-embed {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

.map-embed iframe {
  display: block;
}

.where-to-buy-cta {
  text-align: center;
  padding: 32px;
  background: var(--color-cream);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
}

.where-to-buy-cta p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--color-dark);
}

/* ===== B2B ===== */
.b2b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.b2b-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.b2b-img-main {
  grid-column: 1 / -1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.b2b-img-main img,
.b2b-img-secondary img,
.b2b-img-third img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.b2b-img-main:hover img,
.b2b-img-secondary:hover img,
.b2b-img-third:hover img {
  transform: scale(1.03);
}

.b2b-img-secondary,
.b2b-img-third {
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.b2b-text .section-label {
  margin-bottom: 8px;
}

.b2b-text .section-title {
  margin-bottom: 20px;
}

.b2b-text > p {
  color: rgba(253, 250, 245, 0.75);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.b2b-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.b2b-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(253, 250, 245, 0.85);
}

.check {
  color: var(--color-wheat);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--color-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-wheat);
  opacity: 0.2;
  position: absolute;
  top: -8px;
  right: 20px;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--color-wheat);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.stars {
  color: var(--color-wheat);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--color-dark);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-burgundy);
  margin-bottom: 24px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.contact-icon {
  font-size: 1.2rem;
  width: 32px;
  flex-shrink: 0;
}

.contact-list a {
  color: var(--color-dark);
  font-weight: 500;
  border-bottom: 1px solid transparent;
}

.contact-list a:hover {
  color: var(--color-burgundy);
  border-bottom-color: var(--color-burgundy);
}

.kashrus-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--color-cream);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
}

.kashrus-icon {
  font-size: 1.5rem;
}

.kashrus-badge strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
}

.kashrus-badge span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-burgundy);
  box-shadow: 0 0 0 3px rgba(122, 26, 46, 0.1);
}

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

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-dark);
  color: rgba(253, 250, 245, 0.8);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(196, 151, 90, 0.15);
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0.95);
}

.footer-slogan {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-cream);
  margin-bottom: 4px;
}

.footer-location {
  font-size: 0.85rem;
  color: rgba(253, 250, 245, 0.55);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(196, 151, 90, 0.12);
  border: 1px solid rgba(196, 151, 90, 0.25);
  color: var(--color-wheat-light);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-wheat);
  border-color: var(--color-wheat);
  color: var(--color-dark);
  transform: translateY(-2px);
}

.footer-nav h4,
.footer-kashrus h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(196, 151, 90, 0.2);
}

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

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(253, 250, 245, 0.65);
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--color-wheat-light);
  padding-right: 4px;
}

.kashrus-display {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(196, 151, 90, 0.08);
  border: 1px solid rgba(196, 151, 90, 0.2);
  border-radius: var(--border-radius);
  margin-top: 8px;
}

.kashrus-star {
  font-size: 1.4rem;
  color: var(--color-wheat-light);
}

.kashrus-display strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 2px;
}

.kashrus-display span {
  font-size: 0.78rem;
  color: rgba(253, 250, 245, 0.55);
}

/* Challah blessing gimmick */
.footer-challah-gimmick {
  display: flex;
  align-items: center;
  justify-content: center;
}

.challah-blessing {
  text-align: center;
  padding: 24px;
  border: 1px solid rgba(196, 151, 90, 0.2);
  border-radius: var(--border-radius-lg);
  background: rgba(196, 151, 90, 0.04);
}

.blessing-text {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  color: var(--color-wheat-light);
  line-height: 1.4;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.blessing-sub {
  font-size: 0.78rem;
  color: rgba(253, 250, 245, 0.45);
  letter-spacing: 0.05em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(253, 250, 245, 0.4);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: rgba(196, 151, 90, 0.5);
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 70px 0;
  }

  .about-grid,
  .b2b-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .b2b-grid {
    direction: rtl;
  }

  .b2b-images {
    order: -1;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-arrow--prev {
    right: 12px;
  }

  .slider-arrow--next {
    left: 12px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

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

  .gallery-item--wide {
    grid-column: 1 / -1;
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* לוגו ממורכז במובייל */
  .header-inner {
    position: relative;
  }

  .logo-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 640px) {
  :root {
    --section-padding: 56px 0;
    --header-height: 64px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
  }

  .product-slide-img {
    aspect-ratio: unset;
    height: 60vh;
    min-height: 260px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
  }

  .slider-arrow--prev {
    right: 8px;
  }

  .slider-arrow--next {
    left: 8px;
  }

  .location-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .gallery-item--wide {
    grid-column: 1;
  }

  .store-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .store-item > .store-name {
    min-width: unset;
  }

  .b2b-images {
    grid-template-columns: 1fr;
  }

  .b2b-img-main {
    grid-column: 1;
  }

  .about-img-grid {
    grid-template-columns: 1fr;
  }

  .about-img-secondary,
  .about-img-founders {
    aspect-ratio: 16 / 9;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

/* ===== FORM SUCCESS ===== */
.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-burgundy);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--color-text-muted);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: var(--color-burgundy);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-burgundy-dark);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
}

/* ===== ACCORDION (WHERE TO BUY) ===== */
.region-accordion {
  max-width: 700px;
  margin: 0 auto 48px;
  border-top: 1px solid var(--color-border);
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  text-align: right;
  color: var(--color-dark);
  transition: var(--transition);
}

.accordion-header:hover .region-title {
  color: var(--color-burgundy);
}

.region-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  transition: color var(--transition);
}

.accordion-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-wheat);
}

.accordion-header[aria-expanded="true"] .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-body {
  padding-bottom: 16px;
}

.store-list {
  list-style: none;
}

.store-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(196, 151, 90, 0.12);
}

.store-item > .store-name {
  flex: 0 0 auto;
  min-width: 160px;
}

.store-item > .store-address {
  flex: 1;
}

.store-waze {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #00c0e0;
  background: rgba(0, 192, 224, 0.1);
  border: 1px solid rgba(0, 192, 224, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.store-waze:hover {
  background: #00c0e0;
  color: #fff;
}

.store-item:last-child {
  border-bottom: none;
}

.store-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
}

.store-address {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* ===== GALLERY CLOSING TEXT ===== */
.gallery-closing-text {
  font-family: var(--font-story);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.9;
  color: var(--color-dark);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 28px 32px;
  background: rgba(196, 151, 90, 0.1);
  border-radius: var(--border-radius-lg);
  border: 1.5px solid var(--color-wheat);
  box-shadow: 0 2px 12px rgba(196, 151, 90, 0.12);
}

/* ===== KASHRUS IMAGE ===== */
.kashrus-img {
  max-width: 200px;
  height: auto;
  border-radius: 0;
  background: transparent;
}

.footer-kashrus-img {
  max-width: 160px;
  height: auto;
  border-radius: 0;
  margin-top: 8px;
  background: transparent;
}

/* ===== HAFRASHAH BANNER ===== */
.hafrashah-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--color-white);
  border: 2px solid var(--color-wheat);
  border-radius: var(--border-radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow-md);
}

.hafrashah-banner-text p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .hafrashah-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
}

/* ===== REVIEW SLIDER ===== */
.review-slider-wrap {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  padding-bottom: 48px;
}

.review-slider {
  display: flex;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.review-slide {
  flex: 0 0 100%;
  transition: transform 0.4s ease;
}

.review-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-lg);
}

.review-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--color-burgundy);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}

.review-btn:hover {
  background: var(--color-burgundy);
  color: var(--color-white);
}

.review-prev { right: -20px; }
.review-next { left: -20px; }

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: 16px;
  width: 100%;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--color-border);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.review-dot.active {
  background: var(--color-burgundy);
  transform: scale(1.3);
}
