/* ================================================================
   אבי קסוטו — סטודיו לאמנות ציורית וסדנאות
   Global Stylesheet v3.0 | עיצוב בהיר בהשראת האתר הישן | RTL עברית
   ================================================================ */

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

/* ─── VARIABLES ─────────────────────────────────────────────── */
:root {
  --bg:          #F9F8F6;
  --bg2:         #FFFFFF;
  --bg3:         #F3F1EC;
  --bg4:         #ECE8E0;
  --gold:        #A89378;
  --gold-light:  #8F7B60;
  --gold-muted:  rgba(168,147,120,0.10);
  --gold-border: rgba(168,147,120,0.32);
  --muted:       rgba(20,18,16,0.05);
  --text:        #000000;
  --text2:       #5A574F;
  --text3:       #8B877D;
  --border:      rgba(20,18,16,0.09);
  --glow:        0 10px 32px rgba(20,18,16,0.09);
  --h:           77px;
  --r:           3px;
  --ease:        cubic-bezier(0.4,0,0.2,1);
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Assistant', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  direction: rtl;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
.serif { font-family: 'Assistant', sans-serif; }

h1, h2, h3, h4 {
  font-family: 'Assistant', sans-serif;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
}
h1 { font-size: 42px; }
h2 { font-size: 30px; }
h3 { font-size: 20px; }
h4 { font-size: 1rem; }
p  { color: var(--text); font-size: 18px; line-height: 27px; }

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.section-title { margin-bottom: 1.1rem; }
.section-sub   { max-width: 560px; margin: 0 auto 3rem; text-align: center; }

/* ─── UTILITY ───────────────────────────────────────────────── */
.container { width: 92%; max-width: 1140px; margin: 0 auto; }
.text-center { text-align: center; }
.text-gold   { color: var(--text); }
.italic      { font-style: italic; }

.gold-rule {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--text);
  margin: 1rem auto 0;
}
.gold-rule.right { margin-right: 0; margin-left: auto; }

.section    { padding: 90px 0; }
.section-sm { padding: 60px 0; }

/* ─── IMAGES ────────────────────────────────────────────────── */
.art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 0;
  transition: all 0.28s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Assistant', sans-serif;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 24px rgba(168,147,120,0.4);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  background: var(--muted);
  border-color: var(--text);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border);
  font-size: 0.8rem;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(20,18,16,0.18); }

/* ─── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--h);
  display: flex;
  align-items: center;
  background: rgba(249,248,246,0.96);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(249,248,246,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(20,18,16,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* מיושר בדיוק ל-container של התוכן (1140px ממורכז) — כמו החתימות באתר הישן */
  width: 92%;
  max-width: 1140px;
  margin: 0 auto;
  height: 100%;
  padding: 0;
  position: relative;
}

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-img { display: block; width: 151px; height: auto; }
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-name {
  font-family: 'Assistant', sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  letter-spacing: 0.04em;
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: static;
}

.nav-item { }
/* התפריט הנפתח נפתח בדיוק מתחת ל"גלריה" — בלי רווח, כך שאין "אזור מת" בדרך אליו */
.nav-has-mega { position: relative; height: 100%; display: flex; align-items: center; }
.nav-link {
  display: block;
  padding: 13px 20px;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0.85rem; left: auto;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width 0.25s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 1.7rem); }

/* Arrow indicator — physically LEFT of the word (after in RTL reading direction) */
.nav-has-mega > .nav-link {
  position: relative;
  padding-left: 14px;
}
.nav-has-mega > .nav-link::before {
  content: '▾';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.55rem;
  color: var(--text3);
}

/* ─── MEGA MENU ─────────────────────────────────────────────── */
/* position:fixed → always relative to viewport, never to a parent element */
/* תפריט "גלריה" — רשימת טקסט נקייה (בלי תמונות), ממש מתחת לכפתור */
.mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 190px;
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--border);
  border-top: 2px solid var(--text);
  border-radius: 0 0 6px 6px;
  padding: 0.6rem 0;
  display: none;
  flex-direction: column;
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 40px rgba(20,18,16,0.14);
  direction: rtl;
  z-index: 9999;
}
.nav-has-mega:hover .mega-menu,
.nav-has-mega.mega-open .mega-menu { display: flex; }
.mega-menu > a {
  display: block;
  padding: 0.5rem 1.4rem;
  font-size: 16px;
  color: var(--text2);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.mega-menu > a:hover { background: var(--bg3); color: var(--text); }

.mega-col h5 {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.mega-col a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text2);
  padding: 0.35rem 0;
  transition: color 0.2s;
}
.mega-col a:hover { color: var(--text); }
.mega-thumb {
  width: 36px;
  height: 28px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}
.mega-art-preview {
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.mega-art-preview:hover { border-color: var(--text); }
.mega-art-preview img {
  width: 100%; height: 130px;
  object-fit: cover; display: block;
  transition: transform 0.4s var(--ease);
}
.mega-art-preview:hover img { transform: scale(1.05); }
.mega-art-caption-mini {
  padding: 0.45rem 0.6rem;
  font-size: 0.65rem; color: var(--text3);
  background: var(--bg3); text-align: center;
  letter-spacing: 0.06em;
}

.header-cta { margin-right: 1rem; }

/* ─── MOBILE MENU ───────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: rgba(249,248,246,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem; text-align: center;
  direction: rtl;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Assistant', sans-serif;
  font-size: 1.8rem; color: var(--text);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--text); }
.mobile-nav-close {
  position: absolute; top: 1.5rem; left: 2rem;
  font-size: 1.8rem; color: var(--text2); cursor: pointer;
}

/* ─── HERO — קרוסלה תחומה (boxed), כמו באתר הישן — לא full-bleed ─ */
.hero { position: relative; padding: calc(var(--h) + 28px) 0 0; }

.hero-carousel {
  position: relative;
  height: 560px;
  min-height: 320px;
  overflow: hidden;
  background: var(--bg);
  border-radius: 4px;
}
.hero-carousel-track { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}
.hero-slide.active { opacity: 1; z-index: 1; }
/* התמונה מוצגת ביחס הטבעי שלה, ממורכזת ותחומה (לא נמתחת) — כמו באתר הישן */
.hero-slide img { width: 100%; height: 100%; object-fit: contain; display: block; }
.hero-slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: none;
  padding: 1.4rem 1.5rem 1.6rem;
  text-align: center;
}
.hero-slide-caption .cap-title {
  color: #F9F8F6; font-size: 1.15rem; font-weight: 600; letter-spacing: 0.04em;
  text-shadow: 0 0 10px rgba(0,0,0,0.55);
}
.hero-slide-caption .cap-sub {
  color: rgba(249,248,246,0.92); font-size: 0.8rem; margin-top: 0.2rem; letter-spacing: 0.02em;
  text-shadow: 0 0 8px rgba(0,0,0,0.55);
}
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(249,248,246,0.88); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); cursor: pointer; z-index: 3; transition: all 0.2s;
  backdrop-filter: blur(4px); font-size: 0.9rem;
}
.hero-arrow:hover { background: #fff; color: var(--text); border-color: var(--border); }
.hero-arrow.prev { right: 1.25rem; }
.hero-arrow.next { left: 1.25rem; }
.hero-dots {
  position: absolute; bottom: 1.1rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 0.45rem;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(249,248,246,0.6); border: none; cursor: pointer; transition: all 0.2s; padding: 0;
}
.hero-dot.active { background: var(--gold-light); width: 20px; border-radius: 4px; }

/* welcome section below the carousel — two columns (טקסט + תמונה), כמו באתר הישן */
.hero-welcome { padding: 90px 0; }
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.welcome-img { display: flex; justify-content: flex-end; }
.welcome-img img { width: 100%; max-width: 399px; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 0; display: block; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text); margin-bottom: 1.5rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 28px; height: 1px; background: var(--text);
}
.hero-title { font-size: 35px; line-height: 1; margin-bottom: 16px; }
.hero-title em { font-style: italic; color: var(--text); }
.hero-desc { font-size: 18px; line-height: 27px; color: var(--text); margin-bottom: 1.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── STUDIO STRIP (הסטודיו שלי — עמוד הבית) ────────────────── */
.studio-strip { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.studio-strip-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center;
  padding: 60px 0;
}
.studio-strip-details h2 { font-size: 28px; }
.studio-strip-map { border-radius: 4px; overflow: hidden; border: 1px solid var(--border); height: 220px; }
.studio-strip-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(0.96); }
.studio-strip-details h5 { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text3); margin-bottom: 0.4rem; }
.studio-strip-details span { display: block; font-size: 0.9rem; color: var(--text2); margin-bottom: 0.5rem; }
.studio-strip-waze { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text); margin-top: 0.4rem; }

/* ─── TRUST STRIP ───────────────────────────────────────────── */
.trust-strip {
  padding: 16px 0;
  margin-bottom: 56px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  overflow: hidden;
}
.trust-track {
  display: flex; gap: 5.5rem;
  animation: trustScroll 32s linear infinite;
  width: max-content;
}
@keyframes trustScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-item { display: flex; align-items: center; gap: 0.9rem; white-space: nowrap; flex-shrink: 0; }
.trust-icon {
  width: 32px; height: 32px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text3); font-size: 0.9rem;
}
.trust-text strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); }
.trust-text span   { font-size: 0.72rem; color: var(--text3); }
.trust-sep { width: 1px; height: 30px; background: var(--border); flex-shrink: 0; }

/* ─── BENEFITS ──────────────────────────────────────────────── */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
}
.benefit-card { background: var(--bg2); padding: 3rem 2.5rem; transition: background 0.3s; }
.benefit-card:hover { background: var(--bg3); }
.benefit-num {
  font-family: 'Assistant', sans-serif;
  font-size: 3.5rem; font-weight: 900;
  line-height: 1; margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--text) 0%, rgba(20,18,16,0.25) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.benefit-card h3 { margin-bottom: 1rem; font-size: 1.3rem; }
.benefit-card p  { font-size: 0.9rem; line-height: 1.8; }

/* ─── GALLERY PREVIEW ───────────────────────────────────────── */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 8px;
}
.gp-item { position: relative; overflow: hidden; border-radius: 2px; cursor: pointer; }
.gp-item:nth-child(1) { grid-row: 1 / 3; }
.gp-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gp-item:hover img { transform: scale(1.04); }
.gp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1.2rem;
}
.gp-item:hover .gp-overlay { opacity: 1; }
.gp-overlay span { font-size: 0.85rem; color: #F9F8F6; font-family: 'Assistant', sans-serif; }

/* ─── PRODUCT CARD ──────────────────────────────────────────── */
.product-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--border); box-shadow: var(--glow); transform: translateY(-4px);
}
.product-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 0.7rem; left: 0.7rem;
  background: rgba(0,0,0,0.75); border: 1px solid rgba(255,255,255,0.12);
  color: var(--text2); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.2rem 0.5rem; border-radius: 2px;
  backdrop-filter: blur(4px);
}
.product-info { padding: 1.2rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.product-title { font-family: 'Assistant', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.product-title-en { font-size: 0.78rem; color: var(--text3); font-style: italic; }
.product-meta { display: flex; gap: 0.8rem; font-size: 0.73rem; color: var(--text3); margin-top: 0.2rem; flex-wrap: wrap; }
.product-meta span::before { content: '·'; margin-left: 0.4rem; }
.product-meta span:first-child::before { content: ''; }
.product-price { font-size: 1.15rem; font-weight: 700; color: var(--text); font-family: 'Assistant', sans-serif; margin-top: 0.4rem; }
.product-cta { margin-top: auto; padding-top: 1rem; }
.product-cta .btn { width: 100%; justify-content: center; }
a.product-img { display: block; }
a.product-title { text-decoration: none; transition: color 0.2s; }
a.product-title:hover { color: var(--gold); }

/* ─── PRODUCT DETAIL PAGE (דף מוצר) ─────────────────────────────── */
.product-back { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 15px; color: var(--text2); margin-bottom: 2rem; text-decoration: none; }
.product-back:hover { color: var(--text); }
.product-detail { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3.5rem; align-items: start; }
.product-detail-img img { width: 100%; display: block; border: 1px solid var(--border); }
.product-detail-brand { font-size: 15px; color: var(--text2); letter-spacing: 0.02em; margin-bottom: 0.6rem; }
.product-detail-title { font-size: 32px; font-weight: 600; line-height: 1.1; margin-bottom: 1.6rem; }
.product-detail-specs { list-style: none; margin: 0 0 1.6rem; padding: 0; border-top: 1px solid var(--border); }
.product-detail-specs li { display: flex; justify-content: space-between; padding: 0.8rem 0; border-bottom: 1px solid var(--border); font-size: 17px; }
.product-detail-specs li span { color: var(--text2); }
.product-detail-specs li strong { color: var(--text); font-weight: 600; }
.product-detail-price { font-size: 30px; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.product-detail-note { font-size: 16px; color: var(--text2); line-height: 1.7; margin-bottom: 1.8rem; }
.product-detail-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.product-detail-cta .btn { flex: 1; justify-content: center; min-width: 180px; }
@media (max-width: 860px) { .product-detail { grid-template-columns: 1fr; gap: 2rem; } }

/* ─── GALLERY CARD ──────────────────────────────────────────── */
.gallery-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}
.gallery-card:hover { border-color: var(--border); box-shadow: var(--glow); transform: translateY(-3px); }
.gallery-card-img { overflow: hidden; }
.gallery-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); display: block; }
.gallery-card:hover .gallery-card-img img { transform: scale(1.06); }
.gallery-card-size { padding: 0.5rem 0.2rem 0; font-size: 0.78rem; color: var(--text2); text-align: center; }
.gallery-card-info { padding: 0.9rem 1rem; display: flex; justify-content: space-between; align-items: flex-end; }
.gallery-card-title { font-family: 'Assistant', sans-serif; font-size: 0.95rem; color: var(--text); line-height: 1.3; font-weight: 700; }
.gallery-card-en    { font-size: 0.73rem; color: var(--text3); font-style: italic; margin-top: 0.15rem; }
.gallery-card-tag {
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text3); border: 1px solid var(--border);
  padding: 0.15rem 0.5rem; border-radius: 2px; white-space: nowrap;
}

/* ─── GALLERY GRID — 4 בשורה, אחיד (כמו החנות ובאתר הישן) ─────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-card-img { aspect-ratio: 4 / 3; }

/* ─── GALLERY FILTERS ───────────────────────────────────────── */
.gallery-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; justify-content: center; }
.filter-btn {
  padding: 0.45rem 1.1rem; font-size: 0.78rem; font-weight: 500;
  color: var(--text3); background: var(--bg2);
  border: 1px solid var(--border); border-radius: 2px;
  cursor: pointer; transition: all 0.2s; font-family: 'Assistant', sans-serif;
}
.filter-btn:hover { color: var(--text); border-color: rgba(20,18,16,0.15); }
.filter-btn.active { color: var(--bg); background: var(--text); border-color: var(--text); }

/* ─── LIGHTBOX ──────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.94);
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); padding: 2rem;
  direction: rtl;
}
.lightbox.active { display: flex; }
.lightbox-inner {
  position: relative; max-width: 900px; width: 100%; max-height: 90vh;
  display: grid; grid-template-columns: 1fr 260px; gap: 2rem;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
}
.lightbox-img-wrap { overflow: hidden; }
.lightbox-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-info { padding: 2rem 1.5rem 2rem 0; display: flex; flex-direction: column; justify-content: space-between; }
.lightbox-title { font-family: 'Assistant', sans-serif; font-size: 1.4rem; margin-bottom: 0.3rem; }
.lightbox-en { font-style: italic; color: var(--text3); margin-bottom: 1.5rem; font-size: 0.85rem; }
.lightbox-detail { font-size: 0.82rem; color: var(--text2); margin-bottom: 0.4rem; }
.lightbox-close {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 1.4rem; color: var(--text2); cursor: pointer;
  transition: color 0.2s; z-index: 1;
}
.lightbox-close:hover { color: var(--text); }
.lightbox-nav { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.lightbox-nav button {
  flex: 1; padding: 0.6rem;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text2); font-size: 1rem; border-radius: 3px;
  transition: all 0.2s; cursor: pointer;
}
.lightbox-nav button:hover { background: var(--muted); border-color: var(--border); color: var(--text); }

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 4px;
  padding: 2.2rem 2rem; position: relative; transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: var(--border); }
.quote-mark {
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: 'Assistant', sans-serif;
  font-size: 5rem; line-height: 0;
  color: var(--muted); pointer-events: none;
}
.testimonial-text { font-style: italic; color: var(--text2); font-size: 0.92rem; line-height: 1.8; margin-bottom: 1.5rem; padding-top: 1rem; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px;
  background: var(--muted); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Assistant', sans-serif; font-size: 1rem; color: var(--text); flex-shrink: 0;
}
.author-name  { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.author-role  { font-size: 0.73rem; color: var(--text3); }
.stars { color: var(--text); font-size: 0.75rem; margin-bottom: 0.1rem; }

/* ─── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0; position: relative; overflow: hidden; text-align: center;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(20,18,16,0.04) 0%, transparent 60%);
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p  { max-width: 520px; margin: 0 auto 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 0.75rem; direction: ltr;
  font-size: 1.5rem; font-family: 'Assistant', sans-serif;
  color: var(--text); margin: 1.5rem 0;
}

/* ─── ABOUT PAGE ────────────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-img-frame { position: relative; border: 1px solid var(--border); border-radius: 2px; overflow: hidden; }
.about-img-frame::before {
  content: ''; position: absolute; inset: -1px;
  border: 1px solid var(--border);
  transform: translate(-12px, 12px);
  z-index: -1; border-radius: 2px;
}
.about-img-frame img { width: 100%; display: block; }
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p  { margin-bottom: 1.2rem; }
.about-manifesto {
  background: var(--bg2); border-right: 3px solid var(--text);
  padding: 1.5rem 1.8rem; margin: 2rem 0;
  font-family: 'Assistant', sans-serif; font-style: italic;
  font-size: 1.1rem; color: var(--text); line-height: 1.7;
}
.credentials-list { margin: 1.5rem 0; }
.credentials-list li {
  display: flex; gap: 0.75rem; padding: 0.6rem 0;
  font-size: 0.88rem; color: var(--text2);
  border-bottom: 1px solid var(--border);
}
.credentials-list li::before { content: '✦'; color: var(--text); font-size: 0.6rem; margin-top: 0.25rem; flex-shrink: 0; }

/* ─── WORKSHOPS ─────────────────────────────────────────────── */
.workshops-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 4rem; }
.workshop-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: border-color 0.3s, transform 0.3s var(--ease); }
.workshop-card:hover { border-color: var(--border); transform: translateY(-3px); }
.workshop-card-header { padding: 1.8rem 1.8rem 1.2rem; border-bottom: 1px solid var(--border); }
.workshop-level { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); margin-bottom: 0.5rem; }
.workshop-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.workshop-card-body { padding: 1.5rem 1.8rem; }
.workshop-detail { display: flex; gap: 0.6rem; font-size: 0.82rem; color: var(--text2); margin-bottom: 0.5rem; align-items: flex-start; }
.workshop-detail-icon { color: var(--text); flex-shrink: 0; margin-top: 1px; }
.workshop-card-footer { padding: 1rem 1.8rem 1.8rem; }
.workshop-price { font-size: 1.2rem; font-family: 'Assistant', sans-serif; color: var(--text); margin-bottom: 0.8rem; }
.workshop-price span { font-size: 0.75rem; color: var(--text3); font-family: 'Assistant', sans-serif; }

/* ─── CONTACT FORM ──────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-kicker { font-size: 22px; font-weight: 400; color: var(--text); margin-bottom: 0.5rem; }
.contact-title  { font-size: 55px; font-weight: 600; line-height: 1; }
.contact-submit { font-size: 25px; padding: 15px 30px; width: 100%; justify-content: center; }
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text2); margin-bottom: 0.5rem; }
.form-control {
  width: 100%; background: rgba(0,0,0,0.07); border: none;
  border-radius: 0; padding: 6px 24px; min-height: 47px;
  font-size: 18px; color: var(--text); font-family: 'Assistant', sans-serif;
  transition: box-shadow 0.2s; outline: none;
  direction: rtl;
}
.form-control:focus { box-shadow: 0 0 0 2px var(--gold-border); }
.form-control::placeholder { color: var(--text2); }
.form-control option { background: var(--bg2); }
textarea.form-control { resize: vertical; min-height: 113px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.contact-info-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 4px; padding: 1.5rem; }
.contact-info-card h4 { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); margin-bottom: 0.6rem; }
.contact-info-card p { font-size: 0.88rem; line-height: 1.6; }
.map-placeholder {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 4px;
  height: 220px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--text3); font-size: 0.85rem; gap: 0.5rem; margin-top: 1.5rem;
}
.map-placeholder .map-icon { font-size: 2rem; color: var(--text3); }

/* ─── SOCIAL ────────────────────────────────────────────────── */
.social-links { display: flex; gap: 0.75rem; align-items: center; }
.social-link {
  width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text3); font-size: 0.9rem; transition: all 0.2s;
}
.social-link:hover { border-color: var(--border); color: var(--text); background: var(--muted); }

/* ─── POPUP ─────────────────────────────────────────────────── */
.popup-overlay {
  position: fixed; inset: 0; z-index: 8888;
  background: rgba(0,0,0,0.82);
  display: none; align-items: center; justify-content: center;
  padding: 1rem; backdrop-filter: blur(8px); direction: rtl;
}
.popup-overlay.active { display: flex; }
.popup-box {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 6px; max-width: 540px; width: 100%;
  overflow: hidden; box-shadow: 0 32px 80px rgba(20,18,16,0.16), var(--glow);
}
.popup-header {
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  padding: 2rem 2.5rem 1.5rem; border-bottom: 1px solid var(--border);
  position: relative; text-align: center;
}
.popup-header h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.popup-header p  { font-size: 0.88rem; }
.popup-close { position: absolute; top: 1rem; left: 1.2rem; font-size: 1.3rem; color: var(--text3); cursor: pointer; transition: color 0.2s; }
.popup-close:hover { color: var(--text); }
.popup-body { padding: 2rem 2.5rem; }
.popup-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--muted); border: 1px solid var(--border);
  border-radius: 2px; padding: 0.4rem 0.8rem;
  font-size: 0.72rem; color: var(--text); font-weight: 600;
  letter-spacing: 0.08em; margin-bottom: 1.5rem;
}

/* ─── SHOP SIDEBAR ──────────────────────────────────────────── */
.shop-layout { display: grid; grid-template-columns: 200px 1fr; gap: 3rem; align-items: start; }
.shop-sidebar h5 {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text3); margin-bottom: 0.8rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-filters { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-filter-group { display: flex; flex-direction: column; gap: 0.3rem; }
.sidebar-filter-btn {
  text-align: right; font-size: 0.82rem; color: var(--text2);
  padding: 0.3rem 0; cursor: pointer; transition: color 0.2s;
  background: none; border: none; font-family: 'Assistant', sans-serif;
}
.sidebar-filter-btn:hover { color: var(--text); }
.sidebar-filter-btn.active { color: var(--text); font-weight: 600; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); padding: 72px 0 0; }
/* המבנה האמיתי מהאתר הישן: 3 עמודות (ריקה + פרטי התקשרות + רשתות חברתיות) */
.footer-grid-real { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding-bottom: 2rem; }
.footer-col h2 { font-size: 20px; margin-bottom: 1rem; }
.footer-col .footer-links a, .footer-col .footer-links span { font-size: 16px; color: var(--text2); display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-col .footer-links a:hover { color: var(--text); }
.footer-col .footer-links .icon { width: 1.1em; text-align: center; color: var(--text); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.footer-brand p { font-size: 0.88rem; color: var(--text2); line-height: 1.75; margin-top: 1rem; max-width: 280px; }
.footer-logo-img { height: 44px; width: auto; margin-bottom: 0.5rem;  }
.footer-logo-name { font-family: 'Assistant', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--text); }
.footer-logo-sub { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text); margin-top: 2px; }
.footer-col h5 { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text3); margin-bottom: 1.2rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-size: 0.85rem; color: var(--text2); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-contact-item { display: flex; gap: 0.6rem; font-size: 0.85rem; color: var(--text2); margin-bottom: 0.6rem; align-items: flex-start; line-height: 1.5; }
.footer-contact-item .icon { color: var(--text); margin-top: 1px; flex-shrink: 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.78rem; color: var(--text3); }

/* ─── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  padding: calc(var(--h) + 72px) 0 72px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(20,18,16,0.04) 0%, transparent 60%);
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p  { max-width: 560px; margin: 0 auto; }

/* ─── STATS ─────────────────────────────────────────────────── */
.stats-row { display: flex; gap: 3rem; margin: 2rem 0; flex-wrap: wrap; }
.stat-num  { font-family: 'Assistant', sans-serif; font-size: 2.4rem; font-weight: 900; color: var(--text); line-height: 1; }
.stat-label { font-size: 0.73rem; color: var(--text3); margin-top: 0.25rem; }

/* ─── MISC ──────────────────────────────────────────────────── */
.shop-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.shop-preview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.75rem; color: var(--text3); margin-bottom: 2.5rem; }
.breadcrumb a { color: var(--text3); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--text2); }
.breadcrumb-sep { font-size: 0.6rem; }

/* ─── ANIMATIONS ────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ─── PAGE HERO EXTRAS ──────────────────────────────────────── */
.page-hero-inner { display: flex; flex-direction: column; align-items: center; }
.page-hero-sub   { max-width: 560px; margin: 0 auto 1.5rem; color: var(--text2); }
.breadcrumb      { justify-content: center; }

/* ─── ABOUT (new grid) ──────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 5rem; align-items: start; }
.about-img-wrap  { position: relative; }
.about-img-frame img { width: 100%; display: block; }
/* אודות: התמונה האמיתית באתר הישן קטנה (300×350), לא ממלאת עמודה */
.about-content:not(.ws-content) + .about-img-wrap .about-img-frame { max-width: 300px; }
.ws-content h1 { font-size: 37px; }
.ws-content h2 { margin-bottom: 1.2rem; }
.about-img-quote {
  margin-top: 1.5rem; padding: 1.2rem 1.5rem;
  background: var(--bg3); border-right: 3px solid var(--text);
  font-style: italic; font-size: 0.9rem; color: var(--text2);
}
.about-img-quote blockquote { font-family: 'Assistant', sans-serif; font-size: 1rem; color: var(--text); margin-bottom: 0.4rem; }
.about-img-quote cite { font-size: 0.78rem; color: var(--text); }

/* ─── ABOUT — thumb strip / statement / poem (תוכן אמיתי מהאתר הישן) ─ */
.about-thumb-strip { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; }
.about-thumb-strip img { width: 150px; height: 150px; object-fit: cover; border-radius: 3px; flex-shrink: 0; }
.about-statement { max-width: 780px; }
.gallery-cta-grid { display: grid; grid-template-columns: 1.85fr 1fr; gap: 3rem; align-items: center; }
.gallery-cta h2 { font-size: 35px; font-weight: 400; margin-bottom: 1.2rem; }
.gallery-cta-img img { width: 100%; display: block; }
@media (max-width: 900px) { .gallery-cta-grid { grid-template-columns: 1fr; } .gallery-cta-img { order: -1; } }
.about-statement h2 { margin-bottom: 1.5rem; }
.about-statement p { line-height: 2; }
.about-poem { font-style: italic; margin-bottom: 1.8rem; }
.about-poem:last-child { margin-bottom: 0; }
.about-content h2 { margin-bottom: 1rem; }
.about-content p  { margin-bottom: 1.1rem; }
/* רווח בין הכותרת "אבי קסוטו" לטקסט — כמו ב"הצהרת אמן" וב"יצירה" (רק בדף אודות, לא בסדנאות) */
.about-content:not(.ws-content) h1 { margin-bottom: 1.5rem; }
.about-creds { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.5rem; }
.cred-item { display: flex; align-items: center; gap: 0.7rem; font-size: 0.85rem; color: var(--text2); }

/* ─── HOME: סדנאות + סטודיו (דו-טורי, מהאתר הישן) ───────────────── */
.studio-workshops-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.ws-teaser h2, .studio-col h2 { font-size: 35px; font-weight: 400; margin-bottom: 1.4rem; line-height: 1; }
.ws-teaser-img { margin-bottom: 1.4rem; }
.ws-teaser-img img { width: 100%; max-height: 500px; object-fit: cover; display: block; }
.ws-teaser p { margin-bottom: 1.6rem; }
.studio-map { height: 300px; overflow: hidden; margin-bottom: 1.3rem; border: 1px solid var(--border); }
.studio-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(0.96); }
.studio-addr { list-style: none; margin: 0 0 1rem; padding: 0; }
.studio-addr li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 18px; line-height: 27px; color: var(--text); margin-bottom: 0.55rem; }
.studio-addr li i { color: var(--text); margin-top: 4px; }
.studio-addr a { color: inherit; text-decoration: none; }
@media (max-width: 900px) { .studio-workshops-grid { grid-template-columns: 1fr; gap: 2.4rem; } }

/* ─── כפתור קו-תחתי (סגנון "לגלרייה" מהאתר הישן) ───────────────── */
.btn-underline {
  background: transparent; color: var(--text); border: none;
  border-bottom: 1px solid var(--text); border-radius: 0;
  padding: 10px 4px; font-size: 20px; font-weight: 400;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-underline:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ─── WORKSHOPS: שורת תמונות סדנאות — סידור אלכסוני מדורג (מהאתר הישן) ─ */
.ws-photos-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.ws-photo img { width: 100%; height: 400px; object-fit: cover; display: block; }
/* ב-RTL: ילד ראשון = מימין (גבוה), אחרון = משמאל (נמוך) — אפקט אלכסון */
.ws-photos-row .ws-photo:nth-child(1) { margin-top: 0; }
.ws-photos-row .ws-photo:nth-child(2) { margin-top: 60px; }
.ws-photos-row .ws-photo:nth-child(3) { margin-top: 135px; }
@media (max-width: 800px) {
  .ws-photos-row { grid-template-columns: 1fr; }
  .ws-photo img { height: auto; }
  .ws-photos-row .ws-photo { margin-top: 0 !important; }
}

/* ─── HOME: פאנל "הגלרייה" עם מסגרת+צל (מהאתר הישן) ─────────────── */
.gallery-cta-panel {
  background: var(--bg);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.28);
  padding: 2.4rem 2.6rem;
}

/* ─── ABOUT: שלוש תמונות עבודה (ריבועיות, שורה) ─────────────────── */
.about-work-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.about-work-photo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
@media (max-width: 800px) { .about-work-photos { grid-template-columns: 1fr; } }

/* ─── CONTACT: מפה בעמודת הפרטים ─────────────────────────────────── */
.contact-map { height: 300px; overflow: hidden; margin-bottom: 1.6rem; border: 1px solid var(--border); }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(0.96); }

/* ─── ABOUT: CTA "סדנאות ציור" עם רקע תמונה + overlay קרם (מהאתר הישן) ─ */
.about-cta { position: relative; padding: 100px 0; background-size: cover; background-position: center; overflow: hidden; }
.about-cta-overlay { position: absolute; inset: 0; background: var(--bg); opacity: 0.89; z-index: 0; }
.about-cta > .container { position: relative; z-index: 1; }
.about-cta-title { font-size: 60px; font-weight: 600; line-height: 1; margin-bottom: 1.6rem; color: var(--text); }
.about-cta p { color: var(--text); }
@media (max-width: 700px) { .about-cta-title { font-size: 40px; } .about-cta { padding: 64px 0; } }

/* ─── PROCESS STEPS ─────────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process-step { background: var(--bg3); border: 1px solid var(--border); border-radius: 4px; padding: 1.8rem 1.5rem; }
.process-num {
  font-family: 'Assistant', sans-serif; font-size: 2.5rem; font-weight: 900;
  color: var(--text3); line-height: 1; margin-bottom: 1rem;
}
.process-img { aspect-ratio: 4/3; overflow: hidden; border-radius: 3px; margin-bottom: 1.2rem; }
.process-img img { width: 100%; height: 100%; object-fit: cover; }
.process-step h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }

/* ─── CATEGORY SHOWCASE ─────────────────────────────────────── */
.cat-showcase { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.cat-item { position: relative; border-radius: 3px; overflow: hidden; cursor: pointer; aspect-ratio: 3/4; }
.cat-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.cat-item:hover img { transform: scale(1.06); }
.cat-label {
  position: absolute; bottom: 0; right: 0; left: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  padding: 1.5rem 1rem 1rem; color: #F9F8F6; font-size: 0.88rem;
}

/* ─── FILTER BAR ────────────────────────────────────────────── */
.filter-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.filter-count { font-size: 0.78rem; color: var(--text3); }
.filter-count span { color: var(--text); font-weight: 600; }
.filter-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* ─── LIGHTBOX (new class names) ────────────────────────────── */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.94);
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); padding: 2rem; direction: rtl;
}
.lightbox-overlay.active { display: flex; }
.lightbox-inner {
  position: relative; max-width: 960px; width: 100%; max-height: 92vh;
  display: grid; grid-template-columns: 1fr 280px; gap: 0;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
}
.lb-img-wrap { overflow: hidden; background: var(--bg4); }
.lb-img-wrap img { width: 100%; height: 100%; object-fit: contain; max-height: 80vh; }
.lb-info { padding: 2rem 1.5rem 2rem 2rem; display: flex; flex-direction: column; }
.lb-title-he { font-family: 'Assistant', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.lb-title-en { font-style: italic; color: var(--text3); font-size: 0.85rem; margin-bottom: 1.5rem; }
.lb-details { display: flex; flex-direction: column; gap: 0.5rem; }
.lb-detail-item { display: flex; gap: 0.5rem; font-size: 0.83rem; }
.lb-label { color: var(--text3); font-weight: 600; }
.lb-close {
  position: absolute; top: 0.8rem; left: 0.8rem;
  font-size: 1.3rem; color: var(--text2); cursor: pointer; z-index: 2;
  width: 34px; height: 34px; background: var(--bg3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); transition: all 0.2s;
}
.lb-close:hover { color: var(--text); border-color: var(--border); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; width: 40px; height: 40px;
  background: rgba(0,0,0,0.7); border: 1px solid var(--border);
  color: var(--text2); border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.lb-nav:hover { background: var(--muted); border-color: var(--border); color: var(--text); }
.lb-prev { right: 300px; }
.lb-next { left: 1rem; }

/* ─── SHOP EXTRAS ───────────────────────────────────────────── */
.shop-main { min-width: 0; }
.shop-header-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.shop-count-label { font-size: 0.78rem; color: var(--text3); }
.shop-count-label span { color: var(--text); font-weight: 600; }
.sidebar-section { }
.sidebar-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); margin-bottom: 0.7rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.3rem; }

/* ─── ASSURANCE ─────────────────────────────────────────────── */
.assurance-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.assurance-item { text-align: center; }
.assurance-icon { font-size: 2rem; color: var(--text); margin-bottom: 1rem; }
.assurance-item h4 { margin-bottom: 0.5rem; font-size: 0.95rem; }
.assurance-item p  { font-size: 0.82rem; }

/* ─── WORKSHOPS PAGE ────────────────────────────────────────── */
.workshops-hero { position: relative; overflow: hidden; }
.workshops-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, rgba(249,248,246,0.93) 0%, rgba(243,241,236,0.86) 100%);
}
.workshops-hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.25; z-index: -1;
}
.ws-why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.ws-why-item { background: var(--bg2); border: 1px solid var(--border); border-radius: 4px; padding: 2rem 1.5rem; transition: border-color 0.3s; }
.ws-why-item:hover { border-color: var(--border); }
.ws-why-icon { font-size: 1.5rem; color: var(--text); margin-bottom: 1rem; }
.ws-why-item h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.programs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.program-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 6px;
  padding: 2rem 1.8rem; position: relative; transition: border-color 0.3s, transform 0.3s var(--ease);
}
.program-card:hover { border-color: var(--border); transform: translateY(-3px); }
.program-card.featured { border-color: var(--border); background: linear-gradient(135deg, var(--bg3), rgba(20,18,16,0.04)); }
.program-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; background: var(--bg); border: 1px solid var(--border);
  color: var(--text3); padding: 0.2rem 0.6rem; border-radius: 2px; margin-bottom: 1.2rem;
}
.program-badge.gold { background: var(--muted); border-color: var(--border); color: var(--text); }
.program-icon { font-size: 2rem; color: var(--text3); margin-bottom: 0.8rem; }
.program-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.program-duration { font-size: 0.78rem; color: var(--text3); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.4rem; }
.program-features { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.program-features li { font-size: 0.83rem; color: var(--text2); display: flex; align-items: center; gap: 0.5rem; }
.program-features li i { color: var(--text); font-size: 0.7rem; flex-shrink: 0; }
.program-note { font-size: 0.75rem; color: var(--text3); border-top: 1px solid var(--border); padding-top: 0.8rem; margin-bottom: 0.5rem; }
.intensive-banner { background: var(--bg3); border: 1px solid var(--border); border-radius: 6px; padding: 2rem 2.5rem; }
.intensive-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.intensive-inner h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.intensive-inner p  { font-size: 0.88rem; color: var(--text2); }

/* ─── STUDIO INFO ───────────────────────────────────────────── */
.studio-info h2 { margin-bottom: 0.5rem; }
.studio-info h3 { font-size: 18px; font-weight: 400; margin-bottom: 1rem; }
.contact-form-wrap h3 { margin-bottom: 1rem; }
.studio-details { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.studio-detail-item { display: flex; gap: 1rem; align-items: flex-start; }
.studio-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--muted); border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--text); font-size: 0.9rem;
}
.studio-detail-item strong { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text3); margin-bottom: 0.2rem; }
.studio-detail-item span  { font-size: 0.88rem; color: var(--text2); line-height: 1.6; }
.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.map-placeholder { background: var(--bg2); border: 1px solid var(--border); border-radius: 6px; height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem; color: var(--text3); }
.map-pin { font-size: 2.5rem; color: var(--text3); }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.faq-item { background: var(--bg2); border: 1px solid var(--border); border-radius: 4px; padding: 1.5rem 1.8rem; }
.faq-item h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--text); }
.faq-item p  { font-size: 0.85rem; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .gallery-grid  { grid-template-columns: repeat(3, 1fr); }
  .shop-layout   { grid-template-columns: 1fr; }
  .shop-sidebar  { display: flex; flex-direction: row; gap: 1rem; flex-wrap: wrap; }
  .sidebar-filter-group { flex-direction: row; gap: 0.5rem; }
  .mega-menu { width: 340px; }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-carousel { height: 320px; }
  .hero-arrow { width: 34px; height: 34px; }
  .welcome-grid { grid-template-columns: 1fr; gap: 2rem; }
  .welcome-img { order: -1; }
  .logo-en { display: none; }
  .studio-strip-inner { grid-template-columns: 1fr; gap: 2rem; padding: 40px 0; }
  .benefits-grid { grid-template-columns: 1fr; gap: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; }
  .gallery-preview-grid .gp-item:first-child { grid-column: 1/3; grid-row: auto; }
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .workshops-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .cat-showcase { grid-template-columns: repeat(2,1fr); }
  .ws-why-grid { grid-template-columns: repeat(2,1fr); }
  .programs-grid { grid-template-columns: 1fr; }
  .assurance-grid { grid-template-columns: repeat(2,1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .lightbox-inner { grid-template-columns: 1fr; }
  .lb-prev { right: auto; right: 3rem; }
  .lb-next { left: auto; left: 1rem; }
  .intensive-inner { flex-direction: column; }
}
@media (max-width: 640px) {
  :root { --h: 64px; }
  .section { padding: 60px 0; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .shop-grid     { grid-template-columns: 1fr 1fr; }
  .shop-preview-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .gallery-preview-grid .gp-item:first-child { grid-column: 1; }
  .lightbox-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns  { flex-direction: column; }
  .cta-btns   { flex-direction: column; align-items: center; }
  .process-steps { grid-template-columns: 1fr; }
  .cat-showcase  { grid-template-columns: repeat(2,1fr); }
  .ws-why-grid   { grid-template-columns: 1fr; }
  .assurance-grid { grid-template-columns: 1fr; }
  .header-inner { width: 92%; padding: 0; }
  .filter-bar   { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ─── WHATSAPP FLOAT ────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 22px; left: 22px; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(20,18,16,0.22);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
@media (max-width: 640px) {
  .wa-float { width: 48px; height: 48px; bottom: 16px; left: 16px; font-size: 1.3rem; }
}

/* ─── WORDPRESS HOST OVERRIDES ──────────────────────────────── */
/* Astra/Elementor kit CSS fights our base styles on generic selectors —
   force our design to win regardless of stylesheet load order. */
html, body { background: var(--bg) !important; }
.elementor-container.elementor-container.elementor-container { max-width: 100% !important; }
.hero-welcome, .section { background: var(--bg); }
