/* ═══════════════════════════════════════════════════
   GALI ART GALLERY — Premium CSS
   Mobile-first, RTL, Dark/Light elegant design
   ═══════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --bg: #f5f2ec;
  --bg-dark: #1a1a1a;
  --surface: #fffdfa;
  --surface-glass: rgba(255, 253, 250, 0.82);
  --text: #1c1c1c;
  --text-light: #fff;
  --muted: #6d736d;
  --line: #e3ddd3;
  --accent: #8b6914;
  --accent-dark: #6b4f0e;
  --accent-soft: rgba(139, 105, 20, 0.08);
  --accent-glow: rgba(139, 105, 20, 0.18);
  --green: #0f766e;
  --green-soft: #dff3ef;
  --green-dark: #0a514c;
  --reserved: #8a5b13;
  --reserved-soft: #fff0c9;
  --sold: #716f6a;
  --sold-soft: #ebe8e2;
  --shadow: 0 20px 50px rgba(28, 28, 28, 0.12);
  --shadow-sm: 0 8px 24px rgba(28, 28, 28, 0.08);
  --shadow-lg: 0 32px 64px rgba(28, 28, 28, 0.18);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shell: min(1100px, calc(100% - 32px));
  --font-display: "Frank Ruhl Libre", "Heebo", serif;
  --font-body: "Heebo", "Noto Sans Hebrew", "Segoe UI", Arial, sans-serif;
  --transition: 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }
body {
  margin: 0;
  min-width: 320px;
  max-width: 100vw;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; background: none; border: none; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.is-hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.skip-link {
  position: fixed; z-index: 3000;
  inset-block-start: 12px; inset-inline-start: 12px;
  padding: 10px 16px; color: #fff;
  background: var(--accent-dark); border-radius: 999px;
  font-weight: 700; text-decoration: none;
  transform: translateY(-200%);
  transition: transform var(--transition);
}
.skip-link:focus { transform: translateY(0); }


/* ═══════════════════════════════════════════════════
   HERO — 100vh Fullscreen
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 89vh;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  background: #ffffff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(0, 0, 0, 0.04) 40%,
      rgba(0, 0, 0, 0.2) 100%
    );
  pointer-events: none;
}

/* Logo Pill */
.hero__logo-pill {
  position: relative;
  z-index: 2;
  margin-top: max(20px, env(safe-area-inset-top, 20px));
  width: min(90%, 460px);
  padding: 6px 20px;
  min-height: 34px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  animation: fadeInDown 0.8s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.08em;
  text-transform: lowercase;
  line-height: 1.2;
}

/* Scroll Peek */
.hero__peek {
  position: relative;
  z-index: 2;
  padding-bottom: 0;
  transform: translateY(20px);
}
.hero__peek-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 28px 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: none;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  animation: peekBounce 2s ease-in-out infinite;
  transition: transform var(--transition);
  width: 100%;
}
.hero__peek-card * {
  pointer-events: none;
}
.hero__peek-card:hover {
  transform: translateY(-4px);
}
.hero__peek-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.hero__peek-arrow {
  width: 20px;
  height: 20px;
  color: var(--accent);
  animation: bounceArrow 1.5s ease-in-out infinite;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes peekBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}


/* ═══════════════════════════════════════════════════
   ABOUT SECTION — Floating Card
   ═══════════════════════════════════════════════════ */
.about {
  padding-block: 48px 40px;
  margin-top: -30px;
  position: relative;
  z-index: 3;
}
.about__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.about__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(139, 105, 20, 0.2);
  flex-shrink: 0;
}
.about__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.about__text {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
.about__full-text {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 500ms cubic-bezier(0.4, 0, 0.2, 1), opacity 300ms ease;
}
.about__full-text.is-expanded {
  max-height: 600px;
  opacity: 1;
}
.about__full-text p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.about__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 18px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.about__toggle:hover {
  background: rgba(139, 105, 20, 0.13);
}
.about__toggle-icon {
  width: 16px;
  height: 16px;
  transition: transform 300ms ease;
}
.about__toggle[aria-expanded="true"] .about__toggle-icon {
  transform: rotate(180deg);
}

@media (min-width: 700px) {
  .about__card {
    flex-direction: row;
    align-items: flex-start;
    padding: 40px;
  }
  .about__avatar {
    width: 110px;
    height: 110px;
  }
}


/* ═══════════════════════════════════════════════════
   GALLERY & FILTERS
   ═══════════════════════════════════════════════════ */
.gallery {
  padding-block: 0 72px;
}
.gallery__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.03em;
}

.filters {
  position: sticky;
  z-index: 20;
  top: 8px;
  padding: 14px 16px;
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.filters__row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.filters__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.toggle input { position: absolute; opacity: 0; pointer-events: none; }
.toggle__track {
  position: relative;
  width: 42px;
  height: 24px;
  background: #d1cbc1;
  border-radius: 999px;
  transition: background 200ms ease;
}
.toggle__thumb {
  position: absolute;
  top: 3px;
  inset-inline-start: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(0,0,0,0.18);
  transition: transform 200ms ease;
}
.toggle input:checked + .toggle__track { background: var(--green); }
.toggle input:checked + .toggle__track .toggle__thumb { transform: translateX(-18px); }

.chips {
  display: flex;
  gap: 8px;
  padding: 2px 2px 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.chips::-webkit-scrollbar { display: none; width: 0; height: 0; }
.chips--sizes { margin-bottom: 4px; }

.chip {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 6px 16px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 180ms ease;
}
.chip:hover {
  color: var(--text);
  border-color: var(--accent-glow);
  background: var(--accent-soft);
}
.chip[aria-pressed="true"] {
  color: #fff;
  background: var(--text);
  border-color: var(--text);
}

.results-count {
  margin: 18px 0 12px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}


/* ═══════════════════════════════════════════════════
   ITEMS GRID & CARDS
   ═══════════════════════════════════════════════════ */
.items-grid, .loading-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.item-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.item-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-glow);
  box-shadow: var(--shadow);
}
.item-card:focus-visible {
  outline: 3px solid var(--accent-glow);
  outline-offset: 3px;
}

/* Sold card — still clickable but visually distinct */
.item-card--sold {
  opacity: 0.82;
}
.item-card--sold .item-card__image img {
  filter: grayscale(0.65) contrast(0.93);
}
.item-card--sold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255, 0.15);
  pointer-events: none;
  border-radius: inherit;
}

.item-card__image {
  position: relative;
  aspect-ratio: 16 / 11;
  max-height: 220px;
  overflow: hidden;
  background: #f8f6f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-card__image img {
  width: auto;
  height: auto;
  max-width: 94%;
  max-height: 94%;
  object-fit: contain;
  margin: auto;
  transition: transform 400ms ease;
}
.item-card:hover .item-card__image img {
  transform: scale(1.04);
}
.image-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 20px;
  color: rgba(28, 28, 28, 0.5);
  background: linear-gradient(135deg, var(--accent-soft), transparent 58%), #ece6dc;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}
.image-count {
  position: absolute;
  inset-inline-end: 10px;
  inset-block-end: 10px;
  padding: 4px 10px;
  color: #fff;
  background: rgba(28, 28, 28, 0.68);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.item-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}
.item-card__topline {
  display: flex;
  align-items: center;
  gap: 8px;
}
.item-category {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.71rem;
  font-weight: 800;
}
.status-badge--available { color: var(--green-dark); background: var(--green-soft); }
.status-badge--reserved { color: var(--reserved); background: var(--reserved-soft); }
.status-badge--sold { color: var(--sold); background: var(--sold-soft); }

.item-card h3 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}
.item-card__description {
  display: -webkit-box;
  margin: 6px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.88rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.item-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
}
.price-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.price {
  color: var(--accent-dark);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.original-price {
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: line-through;
}
.details-link {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
}

/* Card WhatsApp button */
.item-card__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 42px;
  margin-top: 14px;
  padding: 8px 16px;
  color: #ffffff !important;
  background: #1daa55 !important;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(29, 170, 85, 0.2);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.item-card__whatsapp:hover {
  background: #128c43 !important;
  box-shadow: 0 10px 24px rgba(18, 140, 67, 0.28);
  transform: translateY(-2px);
}
.item-card__whatsapp svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  flex: 0 0 20px !important;
  fill: currentColor !important;
  display: inline-block !important;
}

/* Sold badge on card */
.sold-home-badge {
  position: absolute;
  z-index: 4;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  padding: 5px 12px;
  color: #17643c;
  background: rgba(227, 245, 233, 0.94);
  border: 1px solid rgba(23, 100, 60, 0.14);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(23, 100, 60, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
  pointer-events: none;
}
.reserved-waitlist-badge {
  position: absolute;
  z-index: 4;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  padding: 5px 12px;
  color: #69420a;
  background: rgba(255, 240, 201, 0.94);
  border: 1px solid rgba(138, 91, 19, 0.2);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(138, 91, 19, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
  pointer-events: none;
}


/* ═══════════════════════════════════════════════════
   SKELETON LOADING
   ═══════════════════════════════════════════════════ */
.skeleton-card {
  min-height: 360px;
  overflow: hidden;
  background: linear-gradient(100deg, #e7e0d5 20%, #f7f3ec 40%, #e7e0d5 60%);
  background-size: 200% 100%;
  border-radius: var(--radius-lg);
  animation: shimmer 1.4s infinite linear;
}
@keyframes shimmer { to { background-position: -200% 0; } }

.empty-state {
  padding: 56px 24px;
  color: var(--muted);
  background: rgba(255,253,250,0.72);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}
.empty-state__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  place-items: center;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
}
.empty-state h3 { margin: 0; }
.empty-state p { margin: 8px auto 20px; }


/* ═══════════════════════════════════════════════════
   DISCLAIMER
   ═══════════════════════════════════════════════════ */
.disclaimer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  margin: 40px 0 0;
  padding: 20px;
  color: #655d53;
  background: rgba(255,253,250, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.disclaimer__icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 50%;
  font-weight: 800;
}
.disclaimer h3 { margin: 0 0 4px; font-size: 1rem; }
.disclaimer__list {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
  padding-inline-start: 20px;
  font-size: 0.88rem;
}


/* ═══════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════ */
.section-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
}
.section-subtitle {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.96rem;
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   PHOTO SHOWCASE CAROUSEL (גלריית תמונות)
   ═══════════════════════════════════════════════════ */
.photo-gallery {
  padding-block: 48px 64px;
  max-width: 100%;
  overflow-x: hidden;
}
.photo-carousel {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
}
.photo-carousel__track {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 24px 12px;
  max-width: 100%;
}
.photo-carousel__track::-webkit-scrollbar { display: none; }

.photo-slide {
  flex: 0 0 min(68%, 340px);
  scroll-snap-align: center;
  aspect-ratio: 4 / 3;
  max-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f8f6f0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1), opacity 400ms ease, box-shadow 400ms ease;
  opacity: 0.68;
  transform: scale(0.88);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.photo-slide.is-active {
  opacity: 1;
  transform: scale(1.06);
  z-index: 2;
  border-color: var(--accent-glow);
  box-shadow: var(--shadow-lg);
}
.photo-slide img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  margin: auto;
  display: block;
}

.photo-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  max-width: 260px;
  margin-inline: auto;
  overflow: hidden;
}
.photo-dot {
  width: 8px;
  height: 8px;
  background: var(--line);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 200ms ease;
}
.photo-dot.is-active {
  width: 24px;
  background: var(--accent);
  border-radius: 999px;
}

.faq {
  padding-block: 56px;
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq__item:hover {
  border-color: var(--accent-glow);
}
.faq__item.is-open {
  border-color: var(--accent-glow);
  box-shadow: var(--shadow-sm);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 700;
  text-align: start;
  cursor: pointer;
  transition: color var(--transition);
}
.faq__item.is-open .faq__question { color: var(--accent-dark); }
.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  transition: transform 300ms ease, background 300ms ease;
}
.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  background: var(--accent-glow);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1), padding 300ms ease;
}
.faq__answer-inner {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════
   TESTIMONIALS CAROUSEL
   ═══════════════════════════════════════════════════ */
.testimonials {
  padding-block: 40px 56px;
}
.testimonials__carousel-wrap {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.testimonials__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 16px;
}
.testimonials__track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 min(100%, 340px);
  scroll-snap-align: center;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
}
.testimonial-card__date {
  color: var(--muted);
  font-size: 0.78rem;
}
.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
  color: #e0a600;
  font-size: 1rem;
}
.testimonial-card__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--text);
  background: var(--surface-glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: all var(--transition);
}
.carousel-arrow:hover {
  background: var(--surface);
  box-shadow: var(--shadow);
}
.carousel-arrow--prev { inset-inline-start: -16px; }
.carousel-arrow--next { inset-inline-end: -16px; }

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.testimonials__dot {
  width: 8px;
  height: 8px;
  background: var(--line);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 200ms ease;
}
.testimonials__dot.is-active {
  width: 24px;
  background: var(--accent);
  border-radius: 999px;
}


/* ═══════════════════════════════════════════════════
   CUSTOM ORDER CTA
   ═══════════════════════════════════════════════════ */
.custom-order {
  padding-block: 64px;
  background:
    linear-gradient(135deg,
      rgba(139, 105, 20, 0.06) 0%,
      rgba(139, 105, 20, 0.02) 50%,
      rgba(15, 118, 110, 0.04) 100%
    );
  border-block: 1px solid var(--line);
}
.custom-order__inner {
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
}
.custom-order__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
}
.custom-order__subtitle {
  margin: 10px 0 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}
.custom-order__text {
  margin: 12px 0 24px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--accent-glow); outline-offset: 3px; }

.btn--primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 10px 28px rgba(139, 105, 20, 0.22);
}
.btn--primary:hover { background: var(--accent-dark); }

.btn--outline {
  color: var(--text);
  background: var(--surface);
  border-color: var(--line);
}
.btn--outline:hover { border-color: var(--accent-glow); background: #fff; }

.btn--whatsapp {
  color: #fff;
  background: #1daa55;
  box-shadow: 0 10px 26px rgba(29, 170, 85, 0.2);
}
.btn--whatsapp:hover { background: #128c43; }

.btn--sold {
  color: #696864;
  background: #e6e3dd;
  box-shadow: none;
  pointer-events: none;
}

.btn--lg { min-height: 52px; padding: 12px 28px; font-size: 1.05rem; }
.btn svg { flex-shrink: 0; }
.btn[aria-disabled="true"] { opacity: 0.5; pointer-events: none; }


/* ═══════════════════════════════════════════════════
   WHERE TO FIND ME (איפה אפשר למצוא אותי?)
   ═══════════════════════════════════════════════════ */
.where-to-find {
  padding-block: 48px 64px;
}
.events-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.event-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.event-card__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.event-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  border-radius: 999px;
}
.event-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}
.event-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}
.event-card__desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
}
.event-card__action {
  align-self: flex-start;
  margin-top: 6px;
}
.no-events-box {
  padding: 32px 24px;
  text-align: center;
  background: var(--surface-glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--muted);
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════
   PHOTO LIGHTBOX MODAL
   ═══════════════════════════════════════════════════ */
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.photo-lightbox[open] {
  opacity: 1;
  pointer-events: auto;
}
.photo-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.92);
}
.photo-lightbox__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 40px 60px;
}
.photo-lightbox__content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  transform: scale(0.95);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.photo-lightbox[open] .photo-lightbox__content img {
  transform: scale(1);
}
.photo-lightbox__close {
  position: absolute;
  top: 20px;
  inset-inline-end: 24px;
  z-index: 2600;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 24px;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 200ms ease, transform 200ms ease;
}
.photo-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
}
.photo-lightbox__arrow {
  position: absolute;
  top: 50%;
  z-index: 2600;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 28px;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 200ms ease, transform 200ms ease;
}
.photo-lightbox__arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.08);
}
.photo-lightbox__arrow--prev { inset-inline-start: 24px; }
.photo-lightbox__arrow--next { inset-inline-end: 24px; }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  color: #f0ede6;
  background: var(--bg-dark);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 40px;
}
.footer__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
}
.footer__note {
  margin: 6px 0 0;
  color: #b8b5ad;
  font-size: 0.92rem;
}

.footer__links {
  display: flex;
  gap: 12px;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}
.footer__social-link--whatsapp {
  color: #fff;
  background: #128c7e;
}
.footer__social-link--whatsapp:hover {
  background: #0e7a6d;
  transform: translateY(-2px);
}
.footer__social-link--instagram {
  color: #fff;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}
.footer__social-link--instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(253, 29, 29, 0.25);
}
.footer__social-link svg { width: 20px; height: 20px; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 16px;
  color: #7a7a74;
  border-block-start: 1px solid #2e2e2e;
  font-size: 0.78rem;
}
.footer__manage-link {
  color: #a0a098;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  transition: color 200ms ease;
}
.footer__manage-link:hover {
  color: #ffffff;
}

/* ═══════════════════════════════════════════════════
   FOOTER LEGAL LINKS
   ═══════════════════════════════════════════════════ */
.footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-block: 16px;
  border-block-start: 1px solid #2e2e2e;
  font-size: 0.88rem;
  flex-wrap: wrap;
}
.footer__legal a {
  color: #b8b5ad;
  text-decoration: none;
  transition: color 200ms ease;
}
.footer__legal a:hover,
.footer__legal a.is-active {
  color: #ffffff;
  text-decoration: underline;
}
.footer__legal span {
  color: #555;
}

/* ═══════════════════════════════════════════════════
   TERMS & CONDITIONS CHECKBOX IN MODAL
   ═══════════════════════════════════════════════════ */
.terms-agreement {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--surface-muted, #f8f6f0);
  border: 1px solid var(--line, #e2ded4);
  border-radius: var(--radius-md, 10px);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.terms-agreement.is-shake {
  animation: shake 500ms ease-in-out;
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.15);
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}
.terms-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  user-select: none;
}
.terms-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent, #6b8e23);
  cursor: pointer;
}
.terms-link {
  color: var(--accent-dark, #4b6b18);
  font-weight: 700;
  text-decoration: underline;
}
.terms-warning {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #d32f2f;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   SUB-PAGE LEGAL LAYOUT (terms, privacy, accessibility)
   ═══════════════════════════════════════════════════ */
.subpage-body {
  background: var(--bg, #fcfbfa);
  color: var(--text, #1c1b18);
}
.subpage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
}
.subpage-main {
  padding-block: 24px 64px;
}
.legal-card {
  background: var(--surface, #ffffff);
  border: 1px solid var(--line, #e2ded4);
  border-radius: var(--radius-lg, 16px);
  padding: clamp(24px, 5vw, 48px);
  box-shadow: var(--shadow-sm);
  max-width: 860px;
  margin: 0 auto;
}
.legal-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.legal-subtitle {
  margin: 0 0 32px;
  color: var(--muted, #75736c);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.legal-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  line-height: 1.7;
}
.legal-section h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}
.legal-section p {
  margin: 0 0 12px;
  color: #33322e;
}
.legal-section ul {
  margin: 8px 0 16px 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-section li {
  color: #33322e;
}
.legal-footer-nav {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}


/* ═══════════════════════════════════════════════════
   ITEM DIALOG (Modal)
   ═══════════════════════════════════════════════════ */
.item-dialog {
  width: min(1080px, calc(100% - 28px));
  max-height: min(90vh, 850px);
  padding: 0;
  overflow: auto;
  color: var(--text);
  background: var(--surface);
  border: 0;
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 90px rgba(21, 18, 13, 0.38);
}
.item-dialog::backdrop {
  background: rgba(20, 24, 22, 0.72);
  backdrop-filter: blur(6px);
}
.dialog-close {
  position: absolute;
  z-index: 5;
  inset-block-start: 14px;
  inset-inline-end: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--text);
  background: var(--surface-glass);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: all var(--transition);
}
.dialog-close:hover { background: #fff; }
.dialog-close:focus-visible { outline: 3px solid var(--accent-glow); outline-offset: 3px; }

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  min-height: 580px;
}
.dialog-gallery {
  padding: 18px;
  background: #ece6dc;
}
.dialog-gallery__stage {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #ded8cf;
  border-radius: var(--radius-lg);
}
.dialog-gallery__image,
.dialog-gallery__image img { width: 100%; height: 100%; }
.dialog-gallery__image img { object-fit: contain; }

.gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: rgba(28, 28, 28, 0.65);
  border: 0;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background var(--transition);
}
.gallery-arrow:hover { background: rgba(28, 28, 28, 0.85); }
.gallery-arrow--prev { inset-inline-start: 12px; }
.gallery-arrow--next { inset-inline-end: 12px; }

.dialog-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
}
.thumbnail {
  flex: 0 0 68px;
  width: 68px;
  height: 54px;
  padding: 0;
  overflow: hidden;
  background: #d9d1c4;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 200ms ease;
}
.thumbnail[aria-current="true"] { border-color: var(--accent); }
.thumbnail img { width: 100%; height: 100%; object-fit: cover; }

.dialog-details {
  display: flex;
  flex-direction: column;
  padding: 64px 32px 28px;
}
.dialog-details__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.dialog-details h2 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.dialog-description {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  white-space: pre-line;
  line-height: 1.65;
}
.dialog-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 20px;
}
.dialog-price {
  color: var(--accent-dark);
  font-size: 2rem;
  font-weight: 900;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 22px 0 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.fact { padding: 12px 14px; background: #fff; }
.fact dt { color: var(--muted); font-size: 0.72rem; font-weight: 700; }
.fact dd { margin: 3px 0 0; font-weight: 800; font-size: 0.9rem; }

.dialog-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}
.dialog-actions .btn { flex: 1; }


/* ═══════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════ */
.toast {
  position: fixed;
  z-index: 2000;
  inset-inline-start: 50%;
  inset-block-end: 22px;
  max-width: calc(100% - 32px);
  padding: 12px 20px;
  color: #fff;
  background: var(--bg-dark);
  border-radius: 999px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 200ms ease, transform 200ms ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }


/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .items-grid, .loading-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dialog-layout { grid-template-columns: 1fr; }
  .dialog-gallery__stage { height: min(55vh, 460px); }
  .dialog-details { padding-top: 32px; }
  .carousel-arrow--prev { inset-inline-start: 4px; }
  .carousel-arrow--next { inset-inline-end: 4px; }
}

@media (max-width: 650px) {
  :root {
    --shell: min(100% - 20px, 1100px);
    --radius-xl: 22px;
    --radius-lg: 17px;
  }

  .hero { min-height: 100svh; }
  .hero__logo-pill { padding: 10px 28px; }
  .hero__logo-text { font-size: 1.1rem; }

  .about { padding-block: 36px 28px; margin-top: -24px; }
  .about__card { padding: 24px; }
  .about__avatar { width: 72px; height: 72px; }
  .about__title { font-size: 1.5rem; }

  .gallery { padding-block-end: 56px; }
  .filters { top: 6px; padding: 10px 12px; }

  .items-grid, .loading-grid { grid-template-columns: 1fr; gap: 14px; }
  .item-card__image { aspect-ratio: 16 / 11; }

  .faq { padding-block: 40px; }
  .faq__question { padding: 15px 16px; font-size: 0.94rem; }

  .testimonial-card { flex: 0 0 calc(100% - 8px); }

  .custom-order { padding-block: 48px; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; gap: 8px; }
  .footer__links { flex-direction: column; gap: 10px; }
  .footer__social-link { justify-content: center; }

  .disclaimer { grid-template-columns: 1fr; padding: 16px; margin-top: 28px; }

  .item-dialog {
    width: 100%;
    max-height: 94vh;
    margin-block: auto 0;
    border-radius: 22px 22px 0 0;
  }
  .dialog-gallery { padding: 8px; }
  .dialog-gallery__stage { height: 38vh; min-height: 260px; border-radius: 15px; }
  .dialog-details { padding: 26px 18px 22px; }
  .facts { grid-template-columns: 1fr; }
  .dialog-actions { flex-direction: column; }
  .dialog-actions .btn { width: 100%; }

  .toast { inset-block-end: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
