/* ============================================================
   ecaudio — עילית קאר אודיו
   Charming-pattern commerce layout, ecaudio brand. Mobile-first.
   ============================================================ */

:root {
  --paper:   #ffffff;
  --paper-2: #f6f8f9;
  --ink:     #14171a;
  --ink-2:   #3d454b;
  --steel:   #78838a;
  --line:    #e3e8ea;
  --carbon:  #0e1113;
  --carbon-2:#171c1f;
  --accent:  #29b6dc;
  --accent-d:#1690b2;
  --accent-l:#e7f7fc;
  --wa:      #25D366;
  --wrap: 1140px;
  --r: 10px;
  --ticker-h: 38px;
  --nav-h: 66px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; overflow-x: clip; max-width: 100%; }
body {
  font-family: 'Heebo', -apple-system, 'Segoe UI', Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

#main-wrapper { min-height: 100vh; overflow-x: clip; }

.wrap { width: min(var(--wrap), 100% - 40px); margin-inline: auto; }
section { padding: clamp(54px, 8vw, 96px) 0; }

/* ---------- type ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .8rem; font-weight: 600; letter-spacing: .18em;
  color: var(--steel); text-transform: uppercase;
  margin-bottom: 14px;
}
.kicker::before { content: ""; width: 34px; height: 1px; background: var(--accent); }
h2.sec-title {
  font-size: clamp(1.6rem, 4.4vw, 2.4rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -.01em;
}
.sec-sub { color: var(--ink-2); max-width: 560px; margin-top: 10px; font-size: 1.02rem; }
.sec-center { text-align: center; }
.sec-center .sec-sub { margin-inline: auto; }
/* עמוד אודות — מרכוז כותרות המקטעים + פסקאות פתיח + כפתורים. גוף הטקסט הצפוף
   וכרטיסי השירות נשארים מיושרים לימין (קריאוּת + עיצוב הכרטיס עם האייקון בימין).
   (מרכוז בלוק ה-story-lead נעשה ב-.about-story .story-lead עם margin auto.) */
.about-page .band-cta { justify-content: center; }
.about-page .story-body, .about-page .svc-card { text-align: right; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 30px; border-radius: 50px;
  font-weight: 600; font-size: 1rem; font-family: inherit;
  border: 2px solid transparent; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--accent-d); outline-offset: 3px; }
.btn-solid { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-solid:hover { background: var(--carbon-2); box-shadow: 0 8px 24px rgba(14,17,19,.2); }
.btn-accent { background: var(--accent); color: #06272f; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-d); border-color: var(--accent-d); color: #fff; box-shadow: 0 8px 24px rgba(41,182,220,.35); }
.btn-line { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-line:hover { background: var(--ink); color: #fff; }
.btn-line-inv { border-color: rgba(255,255,255,.4); color: #fff; background: transparent; }
.btn-line-inv:hover { border-color: #fff; background: rgba(255,255,255,.08); }
/* כפתור לבן מלא — בולט על רקע כהה (ראש דף הביקורות) */
.btn-white { background: #fff; color: #06272f; border-color: #fff; }
.btn-white:hover { background: #eaf6fa; border-color: #eaf6fa; color: #06272f; box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }

/* ---------- skip ---------- */
.skip { position: absolute; inset-inline-start: -999px; top: 10px; z-index: 600; background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 8px; }
.skip:focus { inset-inline-start: 12px; }

/* ============================================================
   ticker banner (thin rotating strip above navbar)
   ============================================================ */
.ticker-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--ticker-h);
  background: var(--carbon);
  z-index: 101;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.ticker-bar .announcement-text {
  font-size: .82rem; font-weight: 600; letter-spacing: .05em;
  color: #cfe9f2;
  transition: opacity .5s ease;
  padding-inline: 12px;
}
.ticker-bar .announcement-text.fade-out { opacity: 0; }

/* ============================================================
   navbar — [hamburger + user] | logo | [wishlist + cart]
   ============================================================ */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 100;
  transition: box-shadow .4s ease;
}
.navbar::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease;
}
.navbar.scrolled { box-shadow: 0 1px 24px rgba(14,17,19,.08); }
.has-ticker .navbar { top: var(--ticker-h); }

.nav-container {
  max-width: var(--wrap);
  margin: 0 auto; padding: 0 20px;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 12px;
}
.nav-container > nav { display: contents; }
.nav-side { display: flex; align-items: center; gap: 4px; }
.nav-side-end   { justify-self: start; }
.nav-side-start { justify-self: end; }

.nav-logo { justify-self: center; display: flex; flex-direction: column; align-items: center; gap: 1px; line-height: 1; text-decoration: none; }
.nav-logo img { height: 42px; width: auto; }
.nav-logo-sub { font-size: .6rem; font-weight: 800; letter-spacing: .13em; color: var(--steel); white-space: nowrap; }
@media (max-width: 640px) { .nav-logo img { height: 34px; } .nav-logo-sub { font-size: .54rem; letter-spacing: .1em; } }
.foot-logo-sub { display: block; font-size: .74rem; font-weight: 800; letter-spacing: .1em; color: var(--steel); margin-top: 7px; }

.nav-icon-btn {
  position: relative; width: 38px; height: 38px;
  border: none; background: transparent; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0; flex-shrink: 0;
  transition: color .2s, transform .2s;
}
.nav-icon-btn:hover { color: var(--accent-d); transform: translateY(-1px); }
.nav-icon-btn svg { width: 21px; height: 21px; }

/* מתג שפה עברית/אנגלית (מוזרק ע"י js/i18n.js) */
.lang-toggle {
  font-family: inherit; font-weight: 700; font-size: .78rem; letter-spacing: .02em;
  min-width: 38px; height: 32px; padding: 0 10px;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  border-radius: 50px; cursor: pointer; line-height: 1; flex-shrink: 0;
  transition: color .2s, border-color .2s, transform .2s;
}
.lang-toggle:hover { color: var(--accent-d); border-color: var(--accent-d); transform: translateY(-1px); }
.lang-toggle:focus-visible { outline: 2px solid var(--accent-d); outline-offset: 2px; }

.cart-badge, .wishlist-badge {
  position: absolute; top: -3px; inset-inline-end: -3px;
  min-width: 17px; height: 17px; border-radius: 50px;
  background: var(--accent-d); color: #fff;
  font-size: .64rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px; border: 1.5px solid #fff;
  pointer-events: none; line-height: 1;
}

/* hamburger */
.nav-hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5.5px;
  background: none; border: none; cursor: pointer; padding: 8px;
  position: relative; z-index: 500;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s ease, opacity .22s ease;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   side drawer menu
   ============================================================ */
.nav-links {
  position: fixed; top: 0; inset-inline-start: 0; bottom: 0;
  width: min(88%, 350px);
  background: var(--paper);
  display: flex; flex-direction: column; align-items: stretch; gap: 0;
  padding: 76px 0 32px;
  z-index: 400;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.32,.72,.24,1);
  box-shadow: -12px 0 40px rgba(14,17,19,.14);
  overflow-y: auto; margin: 0;
}
.nav-links.is-open { transform: translateX(0); }

.nav-drawer-close {
  position: absolute; top: 14px; inset-inline-end: 14px;
  width: 36px; height: 36px; border: none; background: transparent;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; cursor: pointer; z-index: 5;
  transition: background .2s, color .2s;
}
.nav-drawer-close:hover { background: var(--accent-l); color: var(--accent-d); }

.nav-links .nav-item-link a {
  display: block; width: 100%;
  font-size: 1rem; font-weight: 500; color: var(--ink);
  padding: 14px 26px; text-align: start;
  transition: color .2s, padding-inline-start .2s;
}
.nav-links .nav-item-link a:hover { color: var(--accent-d); padding-inline-start: 32px; }
.nav-links .nav-link-accent a { color: var(--accent-d); font-weight: 700; }
/* קו חוצץ מתחת ל"מבצעים" — אותו עיצוב כמו הקו שמתחת ל"אודות" (border ב-‎--line) */
.nav-links .nav-sale-divider { border-bottom: 1px solid var(--line); padding-bottom: 8px; margin-bottom: 8px; }

.nav-links .nav-top-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 6px 24px 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
  font-size: .85rem; color: var(--steel);
}
.nav-links .nav-top-row .drawer-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; color: var(--ink); direction: ltr;
}
.nav-links .nav-top-row .drawer-phone svg { width: 15px; height: 15px; color: var(--accent-d); }

.nav-links .nav-section-header {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  color: var(--accent-d); text-transform: uppercase;
  padding: 22px 26px 10px; margin-top: 6px;
  border-top: 1px solid var(--line);
}

.nav-expand-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: transparent; border: none;
  padding: 13px 26px;
  font-family: inherit; font-size: 1rem; font-weight: 500; color: var(--ink);
  cursor: pointer; text-align: start;
  transition: color .2s;
}
.nav-expand-btn:hover { color: var(--accent-d); }
.nav-chevron { transition: transform .3s ease; flex-shrink: 0; color: var(--steel); }
.nav-expand-btn[aria-expanded="true"] { color: var(--accent-d); }
.nav-expand-btn[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); color: var(--accent-d); }

.nav-sublist { margin: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.nav-item-expandable.is-expanded > .nav-sublist { max-height: 500px; }
.nav-sublist a {
  display: block; width: 100%;
  font-size: .88rem; font-weight: 400; color: var(--ink-2);
  padding: 9px 42px; text-align: start;
  transition: color .2s, padding-inline-start .2s;
}
.nav-sublist a:hover { color: var(--accent-d); padding-inline-start: 48px; }

.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(14,17,19,.45);
  z-index: 350;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* ============================================================
   hero — image + centered logo + 2 CTAs
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--ticker-h) + var(--nav-h) + 40px) 20px 70px;
  position: relative;
  background: var(--carbon);
  color: #fff;
  overflow: hidden;
}
.hero-bg { position: absolute !important; inset: 0; z-index: 0; }
.hero-bg picture { display: block; width: 100%; height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
/* מובייל: תמונה חתוכה-לאנכי (art-direction ב-<picture>) + מעט יותר בהירה */
@media (max-width: 768px) { .hero-bg img { opacity: .48; } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(75% 90% at 50% 100%, rgba(8,11,13,.2), rgba(8,11,13,.86));
}
.hero > *:not(.hero-bg) { position: relative; z-index: 1; }

.hero-logo-wrap {
  background: #fff; border-radius: 18px;
  padding: 18px 30px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  margin-bottom: 30px;
  max-width: min(420px, 82vw);
}
.hero-logo-wrap img { width: 100%; height: auto; }
.hero-brand {
  color: rgba(255,255,255,.92); font-weight: 800;
  font-size: clamp(.82rem, 2.2vw, 1rem); letter-spacing: .16em;
  margin: -14px 0 22px; text-shadow: 0 2px 10px rgba(0,0,0,.4);
}

.hero-title {
  font-size: clamp(1.7rem, 5.6vw, 3.1rem);
  font-weight: 900; line-height: 1.15; letter-spacing: -.01em;
  max-width: 700px;
}
.hero-subtitle {
  font-size: clamp(.98rem, 2.6vw, 1.15rem);
  color: #c3ccd1; font-weight: 300;
  max-width: 560px; margin: 14px auto 38px;
}
.hero-cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-cta-group .btn { padding: 15px 38px; font-size: 1.05rem; }

/* ============================================================
   categories gallery
   ============================================================ */
.categories-section { background: var(--paper); text-align: center; }
.categories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: clamp(28px, 5vw, 44px);
}
@media (max-width: 768px) { .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 375px) { .categories-grid { grid-template-columns: 1fr; } }

.category-card {
  position: relative; overflow: hidden;
  border-radius: 16px; cursor: pointer; display: block;
  aspect-ratio: 1 / 1; width: 100%;
  border: none; padding: 0; background: var(--carbon-2);
  transition: transform .3s ease, box-shadow .3s ease;
}
.category-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(41,182,220,.25); }
.category-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,11,13,.72) 0%, rgba(8,11,13,.08) 55%, transparent 100%);
  display: flex; align-items: flex-end; padding: 16px 18px;
  transition: background .3s ease;
}
.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(22,144,178,.82) 0%, rgba(41,182,220,.15) 55%, transparent 100%);
}
.category-card-label {
  color: #fff; font-size: 1.05rem; font-weight: 700;
  line-height: 1.3; text-align: start;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
@media (max-width: 768px) {
  .category-card { border-radius: 12px; }
  .category-card-label { font-size: .92rem; }
  .category-card:hover { transform: none; }
}

/* ============================================================
   product cards (hot / featured)
   ============================================================ */
.shop-section { background: var(--paper-2); }
.shop-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: clamp(28px, 5vw, 44px);
}
@media (max-width: 980px) { .shop-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (max-width: 700px) { .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.pc {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; cursor: pointer; text-align: start;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.pc:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(14,17,19,.1); }
.pc-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--paper-2); }
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, opacity .4s ease; }
.pc:hover .pc-img img { transform: scale(1.05); }
/* hover swap: fade a second product image in over the main one (pointer devices only) */
.pc-img-alt { position: absolute; inset: 0; opacity: 0; pointer-events: none; }
@media (hover: hover) { .pc-img.has-alt:hover .pc-img-alt { opacity: 1; } }
/* touch devices: sliding a finger over a card (e.g. while scrolling) swaps to the
   second image — the mobile equivalent of the desktop hover swap (see store.js). */
.pc.show-alt .pc-img-alt { opacity: 1; }
.pc-badge {
  position: absolute; top: 10px; inset-inline-start: 10px;
  background: var(--accent); color: #06272f;
  font-size: .72rem; font-weight: 700;
  padding: 3px 11px; border-radius: 50px;
}
.pc-fav {
  position: absolute; top: 8px; inset-inline-end: 8px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--steel);
  transition: color .2s, transform .2s;
}
.pc-fav:hover { transform: scale(1.1); color: var(--accent-d); }
.pc-fav svg { width: 17px; height: 17px; }
.pc-fav.is-fav { color: #e0245e; }
.pc-fav.is-fav svg { fill: #e0245e; }
.pc-body { padding: 13px 15px 15px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.pc-cat { font-size: .74rem; color: var(--steel); letter-spacing: .04em; }
.pc-name {
  font-size: .95rem; font-weight: 600; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pc-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 8px; }
.pc-price { display: inline-flex; align-items: baseline; gap: 7px; flex-wrap: wrap; font-size: 1.02rem; font-weight: 800; color: var(--ink); }
.pc-price .pc-now { white-space: nowrap; }
.pc-price.has-sale .pc-now { color: var(--accent-d); }
.pc-add {
  border: 1.5px solid var(--accent-d); background: transparent; color: var(--accent-d);
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, transform .2s;
}
.pc-add:hover { background: var(--accent-d); color: #fff; transform: scale(1.08); }
.pc-add svg { width: 16px; height: 16px; }

.sec-more { text-align: center; margin-top: clamp(28px, 5vw, 40px); }

/* ============================================================
   about
   ============================================================ */
.about-section { background: var(--paper); }
.about-layout {
  display: grid; grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 6vw, 64px); align-items: center;
}
@media (max-width: 820px) { .about-layout { grid-template-columns: 1fr; } }

/* ============================================================
   home "about + works" — one dark card: the loved "מי אנחנו" panel on top,
   a dynamic video coverflow pushed to its bottom. Coverflow built by main.js
   (renderCoverflow), reuses the shared .proj-media facade/player (works-media.js).
   ============================================================ */
.feature-works { background: var(--paper); overflow: hidden; }

/* the beautiful dark box */
.fw-card {
  position: relative; overflow: hidden; color: #fff;
  border-radius: 26px; padding: clamp(24px, 3.4vw, 46px);
  background:
    radial-gradient(90% 60% at 85% 0%, rgba(41,182,220,.15), transparent 55%),
    linear-gradient(165deg, var(--carbon-2), var(--carbon));
  box-shadow: 0 30px 70px rgba(14,17,19,.28);
}

/* head — the "about us" content (start-side text + stats/CTA) */
.fw-card-head {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(20px, 4vw, 52px); align-items: center;
}
.fw-head-main .kicker { color: #9fd9e8; }
.fw-title {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -.01em; margin: 8px 0 14px; color: #fff;
}
.fw-title em { color: var(--accent); font-style: normal; }
.fw-lead-text { color: #b9c3c9; font-size: 1.02rem; line-height: 1.75; }
.fw-head-side { display: flex; flex-direction: column; gap: 20px; }
.fw-stats { display: flex; flex-wrap: wrap; gap: 16px 26px; }
.fw-stat b { display: block; color: var(--accent); font-size: 1.4rem; font-weight: 800; line-height: 1.1; }
.fw-stat span { color: #8b969d; font-size: .78rem; }
.fw-cta { display: flex; flex-wrap: wrap; gap: 10px; }

/* videos block — pushed to the bottom of the same card */
.fw-videos {
  margin-top: clamp(26px, 3.4vw, 44px); padding-top: clamp(22px, 3vw, 36px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.fw-videos-label { display: block; text-align: center; color: #8b969d; font-size: .9rem; margin-bottom: clamp(14px, 2.2vw, 24px); }

/* coverflow — transparent now; the card is the dark panel */
.cf { position: relative; outline: none; }
.cf-viewport { position: relative; }
.cf-stage { position: relative; height: clamp(200px, 30vw, 380px); perspective: 1600px; touch-action: pan-y; }
.cf-slide {
  position: absolute; top: 50%; left: 50%;
  width: clamp(280px, 42vw, 560px);
  transform: translate(-50%, -50%);
  transition: transform .55s cubic-bezier(.22, .61, .36, 1), opacity .45s ease;
  cursor: pointer; will-change: transform, opacity;
}
.cf-slide .proj-media {
  aspect-ratio: 16 / 9; border-radius: 16px;
  box-shadow: 0 26px 54px rgba(0,0,0,.5); background: #0a0e10;
}
.cf-slide.is-active .proj-media {
  box-shadow: 0 40px 90px rgba(0,0,0,.6), 0 0 0 2px rgba(41,182,220,.55);
}
.cf-slide:not(.is-active) .proj-media { filter: brightness(.62) saturate(.9); }
.cf-slide:not(.is-active) .proj-media img { transition: none; }
/* only the centered clip shows a play button (sides are for navigating) */
.cf-slide:not(.is-active) .play { display: none; }
/* physical center: clear the base's logical insets FIRST, then anchor with left/right
   (in RTL, inset-inline-end === physical left, so it must not come after `left`) */
.fw-card .cf-slide.is-active .proj-media .play {
  top: 50%; bottom: auto;
  inset-inline-start: auto; inset-inline-end: auto;
  left: 50%; right: auto;
  transform: translate(-50%, -50%); width: 62px; height: 62px; z-index: 2;
}
.fw-card .cf-slide.is-active .proj-media .play svg { width: 22px; height: 22px; margin: 0; }

/* nav arrows — true vertical center of the video window (translateY, not half-height math) */
.cf-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 40;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.28); color: #fff;
  display: grid; place-items: center; cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.cf-nav:hover { background: var(--accent); border-color: var(--accent); color: #06272f; transform: translateY(-50%) scale(1.07); }
.cf-nav svg { width: 22px; height: 22px; }
.cf-prev { inset-inline-start: clamp(-6px, 0.5vw, 10px); }   /* RTL: הקודם בצד ההתחלה (ימין) */
.cf-next { inset-inline-end: clamp(-6px, 0.5vw, 10px); }     /* RTL: הבא בצד הסיום (שמאל) */

/* caption + dots */
.cf-bar { margin-top: clamp(16px, 2.4vw, 26px); text-align: center; }
.cf-caption { color: #fff; font-weight: 700; font-size: 1.05rem; min-height: 1.4em; }
.cf-dots { display: flex; gap: 8px; justify-content: center; margin-top: 12px; }
.cf-dot {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.28); cursor: pointer; transition: background .25s, width .25s;
}
.cf-dot:hover { background: rgba(255,255,255,.5); }
.cf-dot.is-on { background: var(--accent); width: 24px; border-radius: 5px; }

@media (max-width: 820px) {
  .fw-card-head { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .fw-card { padding: 22px 14px 26px; border-radius: 20px; }
  .cf-slide { width: min(80vw, 340px); }
  .cf-nav { width: 42px; height: 42px; }   /* top:50% + translateY(-50%) נשמר — מרכז אמיתי */
  /* שני כפתורי ה-CTA זה-לצד-זה (לא אחד מעל השני) — רוחב שווה, טקסט ממורכז */
  .fw-cta, .workshop-band .band-cta, .work-more { flex-wrap: nowrap; gap: 8px; }
  .fw-cta .btn, .workshop-band .band-cta .btn, .work-more .btn { flex: 1 1 0; min-width: 0; padding: 12px 8px; font-size: .88rem; text-align: center; }
}
.about-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* ============================================================
   workshop band (dark CTA)
   ============================================================ */
.workshop-band {
  background: var(--carbon); color: #fff;
  position: relative; overflow: hidden;
}
.workshop-band .bg { position: absolute; inset: 0; }
.workshop-band .bg img { width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.workshop-band .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,11,13,.92), rgba(8,11,13,.55)); }
.workshop-band .wrap { position: relative; z-index: 1; }
.workshop-band h2 { color: #fff; }
.workshop-band .sec-sub { color: #aab6bd; }
.workshop-band .band-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ============================================================
   shop page — breadcrumb, category bar, toolbar
   ============================================================ */
.shop-page-head {
  padding: calc(var(--ticker-h) + var(--nav-h) + 22px) 0 0;
  background: var(--paper);
}

/* breadcrumb (pattern from Charming) */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: .9rem; line-height: 1;
}
.breadcrumb a { color: var(--ink-2); transition: color .2s ease; }
.breadcrumb a:hover { color: var(--accent-d); }
.breadcrumb-sep { color: var(--steel); font-weight: 300; user-select: none; }
.breadcrumb-current { color: var(--steel); font-weight: 400; }

.shop-title-row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.shop-title-row h1 { font-size: clamp(1.6rem, 4.4vw, 2.3rem); font-weight: 800; letter-spacing: -.01em; }
.shop-count { color: var(--steel); font-size: .92rem; }

/* category bar */
.shop-cats-wrap { position: relative; }
/* edge fades — hint that the row scrolls sideways; each side shows only when there's
   more content that way (toggled by shop.js via .can-left / .can-right). */
.shop-cats-wrap::before, .shop-cats-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 52px;
  pointer-events: none; z-index: 2; opacity: 0; transition: opacity .2s;
}
.shop-cats-wrap::before { left: 0;  background: linear-gradient(to left,  transparent, var(--paper) 78%); }
.shop-cats-wrap::after  { right: 0; background: linear-gradient(to right, transparent, var(--paper) 78%); }
.shop-cats-wrap.can-left::before  { opacity: 1; }
.shop-cats-wrap.can-right::after  { opacity: 1; }
/* round chevron buttons over the fades — a clear "there's more" cue, clickable to scroll */
.shop-cats-nav {
  position: absolute; top: calc(50% - 1px); transform: translateY(-50%); z-index: 3;
  width: 32px; height: 32px; border-radius: 50%; padding: 0;
  display: none; align-items: center; justify-content: center;
  background: #fff; border: 1.5px solid var(--line); color: var(--ink-2); cursor: pointer;
  box-shadow: 0 2px 10px rgba(14,17,19,.14); transition: color .2s, border-color .2s;
}
.shop-cats-nav:hover { color: var(--accent-d); border-color: var(--accent-d); }
.shop-cats-nav svg { width: 17px; height: 17px; }
.shop-cats-nav--start { right: -2px; }
.shop-cats-nav--end   { left: -2px; }
.shop-cats-wrap.can-right .shop-cats-nav--start { display: inline-flex; }
.shop-cats-wrap.can-left  .shop-cats-nav--end   { display: inline-flex; }

.shop-cats {
  display: flex; gap: 10px; overflow-x: auto; padding: 15px 2px 13px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.shop-cats::-webkit-scrollbar { display: none; }
.cat-chip {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; border-radius: 50px;
  background: var(--paper-2); border: 1.5px solid var(--line);
  font-family: inherit; font-size: .92rem; font-weight: 600; color: var(--ink-2);
  cursor: pointer; white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s;
}
.cat-chip:hover { border-color: var(--accent-d); color: var(--accent-d); }
.cat-chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* toolbar */
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 10px 0; border-top: 1px solid var(--line);
}
/* מיון — כפתור-אייקון עגול. ה-select שקוף פרוס מעליו, כך שלחיצה על הכפתור
   פותחת את אפשרויות המיון המקוריות (בלי JS נוסף — shop.js עדיין קורא #shop-sort). */
.shop-sort-wrap {
  position: relative; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50px;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  cursor: pointer; transition: border-color .15s, color .15s;
}
.shop-sort-wrap:hover,
.shop-sort-wrap:focus-within { border-color: var(--accent-d); color: var(--accent-d); }
.shop-sort-ico { width: 19px; height: 19px; pointer-events: none; }
.shop-sort {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; padding: 0; border: none; background: transparent; color: transparent;
  opacity: 0; cursor: pointer; -webkit-appearance: none; appearance: none;
}

/* מצא התאמה לרכב שלך */
.vehicle-fit {
  margin: 12px 0 2px;
  background: var(--accent-l); border: 1px solid #bfe8f3; border-radius: 14px;
  padding: 12px 16px;
}
.vehicle-fit-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.vehicle-fit-head { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-d); }
.vehicle-fit-head svg { width: 22px; height: 22px; }
.vehicle-fit-head strong { font-size: .98rem; color: var(--ink); }
.vehicle-fit-selects { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; flex: 1; }
/* יצרן/דגם/שנתון = קומבובוקסים (.ws-combo) — תיבות טקסט להקלדה עם רשימה נפתחת,
   זהות לדף העבודות ולבורר הקטגוריה. אין יותר <select> נייטיב. */
.vehicle-fit-selects .ws-combo { flex: 1 1 130px; }
/* מובייל: התאמות סרגל-הכלים והבוררים בבלוק @media (max-width: 640px) בהמשך */

/* חיפוש מוצר */
.shop-search {
  display: flex; align-items: center; gap: 8px; flex: 1; max-width: 340px;
  border: 1.5px solid var(--line); border-radius: 50px; padding: 7px 15px; background: #fff;
}
.shop-search:focus-within { border-color: var(--accent-d); }
.shop-search svg { width: 17px; height: 17px; color: var(--steel); flex: 0 0 auto; }
.shop-search input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: inherit; font-size: .92rem; color: var(--ink); min-width: 0;
}
/* מסתירים את כפתור ה-× המובנה של הדפדפן ל-type="search" — יש לנו ×‎ משלנו
   (.shop-search-clear), אחרת מופיעים שני איקסים בתיבה. */
.shop-search input[type="search"]::-webkit-search-cancel-button,
.shop-search input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; appearance: none; }
.shop-search input[type="search"]::-ms-clear { display: none; }
.shop-search-clear {
  border: none; background: transparent; color: var(--steel); font-size: 1.3rem; line-height: 1;
  cursor: pointer; padding: 0 2px;
}
.shop-search-clear:hover { color: var(--ink); }

/* ─── התאמות מובייל לסרגל הכלים של החנות ─────────────────────────────── */
@media (max-width: 640px) {
  /* סרגל הכלים: חיפוש (רחב) + כפתור מיון (אייקון) באותה שורה */
  .shop-toolbar { align-items: center; gap: 10px; padding: 9px 0; }
  .shop-search { max-width: none; flex: 1; }
  .shop-sort-wrap { width: 40px; height: 40px; }

  /* מצא התאמה לרכב: הכותרת בשורה משלה, ושלושת הבוררים ברשת אחידה של 3 עמודות.
     כפתור "נקה" (כשיש סינון פעיל) יורד לשורה נפרדת מתחת ולא דוחס את הבוררים. */
  .vehicle-fit { padding: 11px 12px; }
  .vehicle-fit-inner { gap: 9px; }
  .vehicle-fit-head { width: 100%; }
  .vehicle-fit-selects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; width: 100%; }
  .vehicle-fit-selects .ws-combo { flex: initial; min-width: 0; padding: 0 8px; }
  .vehicle-fit-selects .ws-combo-input { font-size: .85rem; padding-inline: 2px; }

  /* צ'יפים קומפקטיים יותר — מותאמים למגע בלי לתפוס חצי מסך */
  .shop-cats { gap: 8px; padding: 12px 2px 10px; }
  .cat-chip { padding: 7px 14px; font-size: .88rem; }
  .shop-count { font-size: .86rem; }
}

.shop-main { background: var(--paper-2); padding: clamp(28px, 4vw, 44px) 0 clamp(54px, 8vw, 90px); }
.shop-main .shop-grid { margin-top: 0; }

/* "טען עוד" — עמוד ראשון קל, אצווה נוספת בלחיצה (בכל המכשירים) */
.shop-loadmore { display: flex; justify-content: center; margin-top: clamp(24px, 3.5vw, 36px); }
.shop-loadmore:empty { margin-top: 0; }
.shop-loadmore-btn { min-width: 240px; font-weight: 700; }
.shop-loadmore-rest { font-weight: 400; opacity: .7; }

.shop-empty {
  text-align: center; padding: 60px 20px;
  background: #fff; border: 1px dashed var(--line); border-radius: 16px;
}
.shop-empty h3 { font-size: 1.15rem; margin-bottom: 8px; }
.shop-empty p { color: var(--steel); font-size: .95rem; margin-bottom: 20px; }

.shop-note { text-align: center; color: var(--steel); font-size: .85rem; margin-top: 26px; }

/* ============================================================
   product page (PDP)
   ============================================================ */
.pdp { padding: calc(var(--ticker-h) + var(--nav-h) + 30px) 0 clamp(54px, 8vw, 90px); }
.pdp-layout {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(26px, 5vw, 60px); align-items: start;
  margin-top: 8px;
}
@media (max-width: 860px) { .pdp-layout { grid-template-columns: 1fr; } }

.pdp-gallery { position: sticky; top: calc(var(--ticker-h) + var(--nav-h) + 20px); }
@media (max-width: 860px) { .pdp-gallery { position: static; } }
.pdp-main-img {
  position: relative;
  aspect-ratio: 4/3; border-radius: 16px; overflow: hidden;
  background: var(--paper-2); border: 1px solid var(--line);
}
.pdp-main-img img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.pdp-zoom-hint {
  position: absolute; bottom: 10px; inset-inline-end: 10px;
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15,22,32,.55); color: #fff; border: none;
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  transition: background .18s, transform .18s;
}
.pdp-zoom-hint:hover { background: rgba(15,22,32,.8); transform: scale(1.08); }
.pdp-zoom-hint svg { width: 19px; height: 19px; }

/* fullscreen image lightbox — full (uncropped) image + arrows/keys/swipe */
.pdp-lb {
  position: fixed; inset: 0; z-index: 10050;
  background: rgba(8,11,13,.94); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
}
.pdp-lb.is-open { display: flex; }
.pdp-lb-stage { margin: 0; display: flex; align-items: center; justify-content: center; max-width: 100%; max-height: 100%; }
.pdp-lb-img { max-width: 94vw; max-height: 88vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.pdp-lb-close {
  position: absolute; top: max(14px, env(safe-area-inset-top)); inset-inline-end: max(14px, env(safe-area-inset-right));
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.38); color: #fff;
  transition: background .18s;
}
.pdp-lb-close:hover { background: rgba(255,255,255,.28); }
.pdp-lb-close svg { width: 22px; height: 22px; }
.pdp-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.38); color: #fff;
  transition: background .18s;
}
.pdp-lb-nav:hover { background: rgba(255,255,255,.28); }
.pdp-lb-nav svg { width: 26px; height: 26px; }
.pdp-lb-prev { inset-inline-start: max(12px, env(safe-area-inset-left)); }
.pdp-lb-next { inset-inline-end: max(12px, env(safe-area-inset-right)); }
.pdp-lb-count {
  position: absolute; bottom: max(16px, env(safe-area-inset-bottom)); left: 0; right: 0;
  text-align: center; color: #fff; font-size: .9rem; font-weight: 700; letter-spacing: .06em;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
  direction: ltr; /* "1 / 3" — לא להתהפך ל-RTL */
}
@media (max-width: 560px) {
  .pdp-lb-nav { width: 44px; height: 44px; }
  .pdp-lb-nav svg { width: 22px; height: 22px; }
  .pdp-lb-img { max-width: 96vw; max-height: 82vh; }
}
.pdp-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; }
.pdp-thumb {
  flex: 0 0 auto; width: 84px; aspect-ratio: 4/3; border-radius: 10px; overflow: hidden;
  border: 2px solid var(--line); background: var(--paper-2); cursor: pointer; padding: 0;
  transition: border-color .2s;
}
.pdp-thumb.active, .pdp-thumb:hover { border-color: var(--accent-d); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp-cat { font-size: .85rem; color: var(--steel); letter-spacing: .04em; }
.pdp h1 { font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 800; line-height: 1.2; margin: 6px 0 10px; }
.pdp-sku { font-size: .8rem; color: var(--steel); }

.pdp-vehicle {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-l); color: var(--accent-d);
  font-size: .85rem; font-weight: 700;
  padding: 7px 16px; border-radius: 50px; margin-top: 12px;
}
.pdp-vehicle svg { width: 16px; height: 16px; }

.pdp-price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin: 18px 0 4px; }
.pdp-price { font-size: 1.9rem; font-weight: 900; }
.pdp-price-row.has-sale .pdp-price { color: var(--accent-d); }
.pdp-orig { font-size: 1.1rem; color: var(--steel); text-decoration: line-through; }
.pdp-sale-tag { background: var(--accent-d); color: #fff; font-size: .75rem; font-weight: 700; padding: 3px 11px; border-radius: 50px; }
.pdp-vat { font-size: .78rem; color: var(--steel); margin-bottom: 16px; }

.pdp-stock { font-size: .88rem; font-weight: 600; margin-bottom: 18px; }
.pdp-stock.in { color: #16a34a; }
.pdp-stock.low { color: #d97706; }
.pdp-stock.out { color: #dc2626; }

.pdp-note-field { margin: 16px 0 14px; }
.pdp-note-field > label { display: block; font-size: .92rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.pdp-note-field .req { color: #dc2626; }
.pdp-note-opt { font-weight: 500; color: var(--steel); font-size: .82rem; }
.pdp-note-field textarea {
  width: 100%; font-family: inherit; font-size: .95rem; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 12px; padding: 10px 12px; resize: vertical; min-height: 46px;
}
.pdp-note-field textarea:focus { outline: none; border-color: var(--accent-d); }
.pdp-note-field.is-invalid textarea { border-color: #dc2626; background: #fef2f2; }
.pdp-note-err { color: #dc2626; font-size: .82rem; font-weight: 600; margin-top: 5px; }
.ec-ditem-note { font-size: .8rem; color: var(--ink-2); margin-top: 4px; background: var(--paper-2); border-radius: 8px; padding: 4px 8px; }
.co-summary-item-note { display: block; font-size: .78rem; color: var(--ink-2); margin-top: 3px; }
.pdp-actions { display: flex; gap: 12px; align-items: stretch; flex-wrap: wrap; margin-bottom: 12px; }
.qty {
  display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 50px;
  overflow: hidden; background: #fff;
}
.qty button {
  width: 42px; height: 48px; border: none; background: none; cursor: pointer;
  font-size: 1.2rem; color: var(--ink); font-family: inherit;
}
.qty button:hover { color: var(--accent-d); }
.qty input {
  width: 44px; text-align: center; border: none; font-family: inherit;
  font-size: 1rem; font-weight: 700; -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.pdp-add { flex: 1; min-width: 180px; font-size: 1.05rem; }
.pdp-fav-btn {
  width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; cursor: pointer; color: var(--steel);
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, border-color .2s;
}
.pdp-fav-btn:hover { border-color: #e0245e; color: #e0245e; }
.pdp-fav-btn.is-fav { color: #e0245e; border-color: #e0245e; }
.pdp-fav-btn.is-fav svg { fill: #e0245e; }
.pdp-fav-btn svg { width: 20px; height: 20px; }
.pdp-wa { width: 100%; }

.pdp-desc { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.pdp-desc h2 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.pdp-desc p { color: var(--ink-2); font-size: .96rem; line-height: 1.75; white-space: pre-line; }

.pdp-notes { margin-top: 18px; display: grid; gap: 8px; }
.pdp-note { display: flex; align-items: center; gap: 10px; font-size: .86rem; color: var(--ink-2); }
.pdp-note svg { width: 16px; height: 16px; color: var(--accent-d); flex: 0 0 auto; }

.pdp-related { background: var(--paper-2); }

.pdp-notfound { text-align: center; padding: 80px 20px; }

/* sale price on product cards */
.pc-orig { font-size: .8rem; color: var(--steel); text-decoration: line-through; font-weight: 500; white-space: nowrap; }
.pc-badge.sale { background: var(--accent-d); color: #fff; }

/* ============================================================
   checkout (pattern inspired by Charming, ecaudio brand)
   ============================================================ */
.co-section { padding: calc(var(--ticker-h) + var(--nav-h) + 34px) 0 clamp(54px, 8vw, 90px); background: var(--paper-2); min-height: 80vh; }
.co-secure-header {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: .88rem; font-weight: 600; color: var(--steel); margin-bottom: 26px;
}
.co-secure-header svg { width: 15px; height: 15px; }
.co-title { text-align: center; font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; margin-bottom: 6px; }

.co-form-layout { display: grid; grid-template-columns: 1fr 380px; gap: 34px; align-items: start; margin-top: 26px; }
@media (max-width: 900px) { .co-form-layout { grid-template-columns: 1fr; } }

.co-form-panel { display: flex; flex-direction: column; gap: 20px; }
.co-section-title { font-size: .78rem; font-weight: 700; color: var(--steel); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.co-field-group { display: flex; flex-direction: column; gap: 12px; padding: 20px; background: #fff; border-radius: 16px; border: 1px solid var(--line); }
.co-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 520px) { .co-fields-row { grid-template-columns: 1fr; } }
.co-field { display: flex; flex-direction: column; gap: 4px; }
.co-label { font-size: .8rem; font-weight: 600; color: var(--ink-2); }
.co-label .req { color: #dc2626; }
.co-input {
  padding: 11px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: .92rem; color: var(--ink); background: var(--paper-2);
  width: 100%; transition: border-color .2s; direction: rtl;
}
.co-input:focus { outline: none; border-color: var(--accent-d); }
.co-input.err { border-color: #dc2626; }
textarea.co-input { resize: vertical; min-height: 64px; }

/* login stub for registered customers (infrastructure) */
.co-auth-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 20px; background: var(--accent-l); border: 1px solid rgba(41,182,220,.35);
  border-radius: 14px; font-size: .9rem; color: var(--accent-d); flex-wrap: wrap;
}
.co-auth-row b { font-weight: 700; }
.co-auth-btn {
  border: 1.5px solid var(--accent-d); background: #fff; color: var(--accent-d);
  border-radius: 50px; padding: 7px 18px; font-family: inherit; font-size: .85rem;
  font-weight: 700; cursor: pointer;
}
.co-auth-btn[disabled] { opacity: .55; cursor: not-allowed; }

/* delivery selector */
.co-delivery-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .co-delivery-selector { grid-template-columns: 1fr; } }
.co-delivery-option {
  display: flex; flex-direction: column; gap: 6px; padding: 14px 16px;
  border: 2px solid var(--line); border-radius: 14px; cursor: pointer;
  transition: border-color .2s, background .2s; background: var(--paper-2);
}
.co-delivery-option input[type="radio"] { display: none; }
.co-delivery-option--active { border-color: var(--accent-d); background: var(--accent-l); }
.co-delivery-name { font-size: .9rem; font-weight: 700; color: var(--ink); }
.co-delivery-cost { font-size: .82rem; color: var(--steel); font-weight: 600; }
.co-free-badge { color: var(--accent-d); }
.co-ship-note { font-size: .78rem; line-height: 1.55; color: var(--ink-2); background: var(--paper-2); border: 1px solid var(--line); border-radius: 10px; padding: 9px 12px; margin: 0 0 14px; }

.co-terms-row { display: flex; align-items: center; gap: 10px; font-size: .84rem; color: var(--ink-2); }
.co-terms-row a { color: var(--accent-d); text-decoration: underline; }
.co-form-err { font-size: .84rem; color: #dc2626; min-height: 1.2rem; text-align: center; }
.co-submit-btn { width: 100%; min-height: 52px; font-size: 1.05rem; font-weight: 700; }
.co-trust-icons { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.co-trust-badge {
  font-size: .74rem; font-weight: 700; color: var(--steel);
  border: 1px solid var(--line); border-radius: 6px; padding: 4px 10px; background: #fff;
}

/* summary panel */
.co-summary-panel {
  position: sticky; top: calc(var(--ticker-h) + var(--nav-h) + 20px);
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px;
}
@media (max-width: 900px) { .co-summary-panel { position: static; order: -1; } }
.co-summary-header { font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.co-summary-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; max-height: 300px; overflow-y: auto; }
.co-summary-item { display: flex; align-items: center; gap: 12px; }
.co-summary-item-img {
  position: relative; width: 52px; height: 52px; border-radius: 8px; overflow: hidden;
  background: var(--paper-2); flex-shrink: 0;
}
.co-summary-item-img img { width: 100%; height: 100%; object-fit: cover; }
.co-summary-item-qty {
  position: absolute; top: -1px; inset-inline-end: -1px; background: var(--ink); color: #fff;
  border-radius: 0; border-end-start-radius: 8px; min-width: 20px; height: 20px; font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.co-summary-item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.co-summary-item-name {
  font-size: .86rem; font-weight: 600; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.co-summary-item-price { font-size: .88rem; font-weight: 600; color: var(--ink-2); flex-shrink: 0; }

.co-coupon-row { display: flex; gap: 8px; margin-bottom: 14px; }
.co-coupon-row .co-input { flex: 1; }
.co-coupon-apply {
  border: 1.5px solid var(--ink); background: #fff; color: var(--ink);
  border-radius: 10px; padding: 0 18px; font-family: inherit; font-weight: 700; cursor: pointer;
  transition: background .2s, color .2s;
}
.co-coupon-apply:hover { background: var(--ink); color: #fff; }
.co-coupon-ok { font-size: .8rem; color: #16a34a; font-weight: 600; margin: -8px 0 12px; }
.co-coupon-err { font-size: .8rem; color: #dc2626; font-weight: 600; margin: -8px 0 12px; }

.co-summary-totals { display: flex; flex-direction: column; gap: 8px; font-size: .9rem; }
.co-summary-row { display: flex; justify-content: space-between; color: var(--ink-2); }
.co-summary-row.discount { color: #16a34a; font-weight: 600; }
.co-summary-divider { border: none; border-top: 1.5px solid var(--line); margin: 6px 0; }
.co-summary-total { display: flex; justify-content: space-between; font-size: 1.15rem; font-weight: 800; color: var(--ink); }
.co-summary-vat { font-size: .75rem; color: var(--steel); text-align: end; }

.co-empty { text-align: center; padding: 70px 20px; }

/* payment page stub */
.pay-box {
  max-width: 560px; margin: 26px auto 0; background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 30px; text-align: center;
}
.pay-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-l); color: var(--accent-d);
  font-size: .85rem; font-weight: 700; padding: 7px 16px; border-radius: 50px; margin-bottom: 16px;
}
.pay-order-no { font-size: .9rem; color: var(--steel); margin-bottom: 4px; }
.pay-total { font-size: 2rem; font-weight: 900; margin-bottom: 18px; }
.pay-placeholder {
  border: 2px dashed var(--line); border-radius: 14px; padding: 34px 20px;
  color: var(--steel); font-size: .95rem; background: var(--paper-2); margin-bottom: 18px;
}
.pay-note { font-size: .8rem; color: var(--steel); }

/* ============================================================
   google reviews
   ============================================================ */
.reviews-section { background: var(--paper); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: clamp(28px, 5vw, 44px); text-align: start;
}
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px;
  padding: 24px 22px; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.review-stars { color: #f5a623; letter-spacing: 3px; font-size: 1.05rem; }
.review-card p { color: var(--ink-2); font-size: .96rem; line-height: 1.7; }
.review-card cite { font-style: normal; font-weight: 600; font-size: .85rem; color: var(--steel); }

/* ביקורות כצילום מסך מגוגל */
.review-card--shot { padding: 12px; gap: 12px; }
.review-shot-link { position: relative; display: block; border-radius: 10px; overflow: hidden; }
.review-shot {
  width: 100%; height: auto; display: block; border-radius: 10px;
  border: 1px solid var(--line);
}
/* הביקורת אינה קישור — תצוגה בלבד, בלי אינטראקציה או זום בריחוף */
.review-shot-badge {
  position: absolute; top: 8px; inset-inline-end: 8px;
  width: 26px; height: 26px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
}
.review-card--shot figcaption {
  font-weight: 600; font-size: .85rem; color: var(--steel);
  padding: 0 6px 4px; text-align: start;
}

/* עמוד ביקורות מלא (reviews.html) */
.reviews-head {
  background: var(--carbon); color: #fff;
  padding: calc(var(--ticker-h) + var(--nav-h) + 56px) 0 56px;
  position: relative; overflow: hidden; text-align: center;
}
.reviews-head .kicker { color: #8d989f; }
.reviews-head h1 { font-size: clamp(1.9rem, 5.5vw, 3.2rem); font-weight: 900; line-height: 1.1; }
.reviews-head-stars { color: #f5a623; letter-spacing: 2px; }
.reviews-head p { color: #c3ccd1; max-width: 620px; margin: 14px auto 0; font-weight: 300; }
.reviews-head .head-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }
.reviews-total { color: #f5a623; font-weight: 600; }
.reviews-page-section { padding-top: clamp(40px, 6vw, 64px); padding-bottom: clamp(40px, 6vw, 64px); }
.reviews-page-section .reviews-grid { margin-top: 0; }
.reviews-empty { text-align: center; padding: clamp(30px, 6vw, 60px) 0; }
.reviews-empty h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 800; margin-bottom: 10px; }
.reviews-empty p { color: var(--steel); margin-bottom: 22px; }
.sec-more--dual { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   footer
   ============================================================ */
footer.site {
  background: var(--carbon); color: #97a3aa;
  padding: 40px 0 28px; font-size: .88rem;
}
.foot-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.foot-logo { background: #fff; border-radius: 10px; padding: 8px 13px; text-align: center; }
.foot-logo img { height: 32px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.07); color: #cdd6da;
  transition: background .2s, color .2s, transform .2s;
}
.socials a:hover { background: var(--accent); color: #06272f; transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.foot-info {
  display: flex; gap: 8px 26px; flex-wrap: wrap;
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: .85rem;
}
.foot-info a:hover { color: #fff; }
.foot-legal {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.09);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .8rem; color: #6d7880;
}
.foot-legal nav { display: flex; gap: 16px; flex-wrap: wrap; }
.foot-legal a:hover { color: #fff; }

/* ============================================================
   floating actions (desktop AND mobile — no bottom bar)
   ============================================================ */
.whatsapp-fab {
  position: fixed; bottom: 24px; inset-inline-start: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 8px 30px rgba(37,211,102,.55); }
.whatsapp-fab svg { width: 29px; height: 29px; fill: #fff; }
@media (max-width: 480px) {
  .whatsapp-fab { width: 52px; height: 52px; bottom: 18px; inset-inline-start: 16px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
}

/* ============================================================
   wishlist / cart drawers
   ============================================================ */
.ec-backdrop {
  position: fixed; inset: 0;
  background: rgba(14,17,19,.42);
  z-index: 9998; opacity: 0;
  transition: opacity .28s ease;
}
.ec-backdrop.is-open { opacity: 1; }

.ec-drawer {
  position: fixed; top: 0; inset-inline-start: 0; bottom: 0;
  width: min(88%, 360px);
  background: #fff; z-index: 9999;
  display: flex; flex-direction: column;
  transform: translateX(105%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  box-shadow: -10px 0 30px rgba(14,17,19,.14);
}
.ec-drawer.is-open { transform: translateX(0); }

.ec-drawer-head {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--line);
}
.ec-drawer-close {
  width: 36px; height: 36px; border: none; background: transparent;
  cursor: pointer; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background .2s;
}
.ec-drawer-close:hover { background: var(--accent-l); }
.ec-drawer-title {
  margin: 0; flex: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-size: 1.12rem; font-weight: 600;
}
.ec-drawer-count { display: inline-flex; align-items: center; gap: 6px; color: var(--accent-d); font-size: .95rem; }
.ec-drawer-body { flex: 1; overflow-y: auto; padding: 14px 16px 24px; }

.ec-drawer-empty { text-align: center; padding: 48px 20px 24px; color: var(--steel); }
.ec-empty-title { font-size: 1rem; font-weight: 600; color: var(--ink); margin: 16px 0 6px; }
.ec-empty-sub { font-size: .88rem; margin: 0 0 22px; line-height: 1.5; }

.ec-ditem {
  position: relative;
  display: grid; grid-template-columns: 88px 1fr; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.ec-ditem:last-of-type { border-bottom: none; }
.ec-ditem-img { width: 88px; height: 88px; border-radius: 12px; overflow: hidden; background: var(--paper-2); }
.ec-ditem-img img { width: 100%; height: 100%; object-fit: cover; }
.ec-ditem-info { min-width: 0; padding-inline-end: 26px; display: flex; flex-direction: column; gap: 4px; }
.ec-ditem-info h3 {
  font-size: .93rem; font-weight: 600; line-height: 1.35; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
/* product image + name in a drawer link to the product page */
.ec-ditem-link { cursor: pointer; }
.ec-ditem-info h3.ec-ditem-link:hover { color: var(--accent-d); }
.ec-ditem-price { font-size: .93rem; font-weight: 700; color: var(--accent-d); }
.ec-ditem-add {
  border: 1.5px solid var(--accent-d); background: transparent; color: var(--accent-d);
  padding: 6px 14px; border-radius: 50px;
  font-size: .8rem; font-weight: 600; cursor: pointer; font-family: inherit;
  align-self: flex-start;
  transition: background .2s, color .2s;
}
.ec-ditem-add:hover { background: var(--accent-d); color: #fff; }
.ec-ditem-remove {
  position: absolute; top: 12px; inset-inline-end: 0;
  width: 26px; height: 26px; border: none; background: transparent;
  color: var(--steel); cursor: pointer; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.ec-ditem-remove:hover { background: var(--accent-l); color: var(--accent-d); }

.ec-cart-foot { padding-top: 18px; }
.ec-cart-total {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1.05rem; padding: 12px 2px;
  border-top: 2px solid var(--ink);
}
.ec-cart-note { font-size: .8rem; color: var(--steel); margin: 6px 0 14px; }

.ec-toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff;
  padding: 11px 26px; border-radius: 50px;
  font-size: .9rem; font-weight: 600;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 10000;
}
.ec-toast--show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   workshop page (services, videos, marquee, contact)
   ============================================================ */
.page-head {
  background: var(--carbon); color: #fff;
  padding: calc(var(--ticker-h) + var(--nav-h) + 56px) 0 56px;
  position: relative; overflow: hidden;
}
.page-head .bg { position: absolute; inset: 0; }
.page-head .bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.page-head .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,11,13,.9), rgba(8,11,13,.5)); }
.page-head .wrap { position: relative; z-index: 1; text-align: center; }
.page-head h1 { font-size: clamp(1.9rem, 5.5vw, 3.2rem); font-weight: 900; line-height: 1.1; }
.page-head p { color: #c3ccd1; max-width: 560px; margin: 14px auto 0; font-weight: 300; }
.page-head .head-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }

/* ============================================================
   works search — פאנל חיפוש עבודות (קטגוריה בולטת + יצרן/דגם + כפתור חיפוש)
   כהה למעלה (משתלב עם ה-hero), אבל הצ'יפים והתיבות לבנים וממורכזים.
   ============================================================ */
/* hero דק — כותרת אחת ממורכזת בכחול, והחיפוש עולה גבוה */
.page-head--works { padding-top: calc(var(--ticker-h) + var(--nav-h) + 28px); padding-bottom: clamp(14px, 2.2vw, 24px); }
.page-head--works .wrap { text-align: center; }
.page-head--works h1 { margin: 0; color: var(--accent); }
.works-search { background: var(--carbon); color: #fff; padding: clamp(10px, 1.6vw, 18px) 0 clamp(22px, 3vw, 30px); }
.works-search .wrap { display: flex; flex-direction: column; gap: clamp(14px, 2vw, 20px); }
.ws-block-label { font-size: .9rem; font-weight: 700; color: #c3ccd1; margin-bottom: 12px; text-align: center; }

/* קטגוריות — הפילטר הבולט, לבן וממורכז (רוב הגולשים מחפשים לפי סוג עבודה) */
.ws-cats-block .ws-block-label { color: #fff; font-size: 1.04rem; font-weight: 800; }
.works-cats { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.works-cats .cat-chip { padding: 10px 18px; font-size: .96rem; font-weight: 700; background: #fff; border-color: #fff; color: var(--ink); }
.works-cats .cat-chip:hover { background: #eaf6fa; border-color: #eaf6fa; color: var(--accent-d); }
.works-cats .cat-chip.active { background: var(--accent); border-color: var(--accent); color: #06272f; }
@media (max-width: 560px) { .works-cats .cat-chip { padding: 8px 14px; font-size: .88rem; } }

/* יצרן / דגם + כפתור חיפוש — תיבות לבנות דקות, נשארות בשורה אחת גם בנייד */
.ws-vehicle { display: flex; gap: 8px; align-items: stretch; justify-content: center; max-width: 640px; margin: 0 auto; }
.ws-combo {
  position: relative; flex: 1 1 0; min-width: 0; display: flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 0 10px;
  transition: border-color .15s, box-shadow .15s;
}
.ws-combo.is-open { border-color: var(--accent-d); box-shadow: 0 0 0 3px var(--accent-l); }
.ws-combo.is-disabled { opacity: .6; background: var(--paper-2); }
.ws-combo-input { flex: 1 1 auto; min-width: 0; border: 0; background: transparent; padding: 10px 2px; font: inherit; font-size: .92rem; color: var(--ink); outline: none; }
.ws-combo-input::placeholder { color: var(--steel); }
.ws-combo-input:disabled { cursor: not-allowed; }
.ws-combo-chev { flex: 0 0 auto; width: 16px; height: 16px; color: var(--steel); transition: transform .2s; }
.ws-combo.is-open .ws-combo-chev { transform: rotate(180deg); }
/* × בתוך התיבה — מחליף את החץ כשיש טקסט, מנקה את השדה בלחיצה */
.ws-combo-clear {
  display: none; flex: 0 0 auto; width: 20px; height: 20px; padding: 0; margin: 0; border: 0;
  border-radius: 50%; background: rgba(0,0,0,.07); color: var(--ink-2); font-size: 15px; line-height: 1;
  cursor: pointer; align-items: center; justify-content: center;
}
.ws-combo-clear:hover { background: rgba(0,0,0,.14); color: var(--ink); }
.ws-combo.has-text .ws-combo-clear { display: inline-flex; }
.ws-combo.has-text .ws-combo-chev { display: none; }
.ws-combo-list {
  position: absolute; top: calc(100% + 5px); inset-inline: 0; z-index: 40; margin: 0; padding: 5px; list-style: none;
  max-height: 240px; overflow-y: auto; background: #fff; border: 1px solid var(--line);
  border-radius: 10px; box-shadow: 0 14px 34px rgba(0,0,0,.3);
}
.ws-combo-list li { padding: 9px 11px; border-radius: 7px; font-size: .9rem; color: var(--ink-2); cursor: pointer; }
.ws-combo-list li:hover { background: var(--accent-l); color: var(--accent-d); }
.ws-combo-list .ws-combo-empty, .ws-combo-list .ws-combo-empty:hover { color: var(--steel); cursor: default; font-style: italic; background: transparent; }
.ws-search-btn {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--accent); color: #06272f; border: 1px solid var(--accent); border-radius: 10px;
  padding: 0 18px; font: inherit; font-weight: 800; font-size: .92rem; cursor: pointer;
  transition: background .15s, border-color .15s, box-shadow .15s;
}
.ws-search-btn svg { width: 17px; height: 17px; }
.ws-search-btn:hover { background: var(--accent-d); border-color: var(--accent-d); color: #fff; box-shadow: 0 6px 18px rgba(41,182,220,.35); }
/* קטגוריה: צ'יפים בדסקטופ ← דרופדאון בנייד (באותו סגנון של יצרן/דגם) */
.ws-cat-combo { display: none; width: 100%; max-width: 640px; margin: 0 auto; }
@media (max-width: 560px) {
  .works-cats { display: none; }
  .ws-cat-combo { display: flex; }
}

/* חנות — קטגוריות: צ'יפים בדסקטופ, רשימה נפתחת עם חיפוש בנייד (כמו דף העבודות) */
.shop-cat-mobile { display: none; margin-top: 10px; }
.shop-cat-label { font-size: .82rem; font-weight: 700; color: var(--ink-2); margin-bottom: 6px; }
.shop-cat-combo { width: 100%; }
@media (max-width: 560px) {
  .shop-cats-wrap { display: none; }
  .shop-cat-mobile { display: block; }
}
@media (max-width: 420px) { .ws-search-txt { display: none; } .ws-search-btn { padding: 0 13px; } }

/* מקטע העבודות — שורת ספירה אחת בלבד, צמודה לחיפוש (בלי כותרת / שטח מת) */
#portfolio { padding-top: clamp(20px, 3vw, 32px); }
#projects-sub { color: #fff; font-size: clamp(1.05rem, 2.6vw, 1.3rem); font-weight: 700; max-width: none; margin: 0 0 clamp(16px, 2.4vw, 24px); }

/* ===== שירותים — כרטיסים מודרניים ===== */
/* flexbox (לא grid) כדי ששורה אחרונה חלקית (כאן 2 כרטיסים מתוך 5) תמורכז במקום
   להידחק לצד ולהשאיר חלל. flex-grow:0 שומר על רוחב אחיד — לא נמתחים למלא. */
.svc-grid { margin-top: clamp(26px, 4vw, 40px); --svc-gap: clamp(14px, 2vw, 18px); display: flex; flex-wrap: wrap; justify-content: center; gap: var(--svc-gap); }
.svc-grid > .svc-card { flex: 0 1 100%; }
@media (min-width: 560px) { .svc-grid > .svc-card { flex-basis: calc((100% - var(--svc-gap)) / 2); } }
@media (min-width: 900px) { .svc-grid > .svc-card { flex-basis: calc((100% - 2 * var(--svc-gap)) / 3); } }
.svc-card {
  position: relative; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(20px, 2.6vw, 26px);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-card::before {
  content: attr(data-num);
  position: absolute; inset-inline-end: 16px; top: 8px;
  font-size: 4rem; font-weight: 800; line-height: 1;
  color: var(--ink); opacity: .05; letter-spacing: -.04em;
  font-variant-numeric: tabular-nums; pointer-events: none;
}
.svc-card:hover {
  transform: translateY(-6px); border-color: var(--accent);
  box-shadow: 0 20px 44px -20px rgba(22,144,178,.55);
}
.svc-top { display: flex; align-items: center; margin-bottom: 14px; position: relative; z-index: 1; }
.svc-tile {
  width: 54px; height: 54px; border-radius: 15px; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--accent);
  transition: background .25s ease, color .25s ease, transform .3s ease;
}
.svc-tile svg { width: 27px; height: 27px; }
.svc-card:hover .svc-tile {
  background: linear-gradient(135deg, var(--accent), var(--accent-d));
  color: #06272f; transform: scale(1.05) rotate(-4deg);
}
.svc-card h3 { font-size: clamp(1.08rem, 2.3vw, 1.26rem); font-weight: 700; position: relative; z-index: 1; }
.svc-card p { color: var(--ink-2); font-size: .94rem; line-height: 1.65; margin-top: 7px; position: relative; z-index: 1; }

/* פס אקולייזר מונפש — מוטיב אודיו (ממולא ב-JS: workshop.js) */
.eq-strip { display: flex; align-items: flex-end; gap: 3px; }
.eq-strip span {
  flex: 1 1 0; min-width: 2px; height: 100%;
  background: linear-gradient(to top, var(--accent-d), var(--accent));
  border-radius: 3px; transform: scaleY(.18); transform-origin: bottom;
  animation: eqPulse 1.1s ease-in-out infinite;
}
@keyframes eqPulse { 0%, 100% { transform: scaleY(.16); } 50% { transform: scaleY(1); } }
.svc-eq { height: 26px; margin-top: auto; padding-top: 14px; opacity: .55; transition: opacity .25s; }
.svc-card:hover .svc-eq { opacity: 1; }

/* קו לייזר סורק — כרטיס חיתוכי לייזר */
.laser-line { position: absolute; inset: 0; overflow: hidden; border-radius: inherit; pointer-events: none; z-index: 0; }
.laser-line::after {
  content: ""; position: absolute; inset-inline: 0; top: -6%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 14px 2px rgba(41,182,220,.55);
  animation: laserScan 3.2s ease-in-out infinite;
}
@keyframes laserScan { 0% { top: -6%; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { top: 106%; opacity: 0; } }

/* כרטיס 03 — כפתור ווליום מסתובב (סגנון דשבורד רכב) */
.svc-knob { margin-top: auto; padding-top: 16px; display: flex; align-items: center; }
.knob-wrap {
  position: relative; width: 48px; height: 48px; border-radius: 50%; flex: 0 0 auto;
  background: radial-gradient(circle at 50% 36%, #2b323b, var(--ink));
  box-shadow: inset 0 1px 3px rgba(255,255,255,.08), 0 3px 9px rgba(0,0,0,.28);
}
.knob-wrap::before {
  content: ""; position: absolute; inset: -7px; border-radius: 50%;
  background: repeating-conic-gradient(from 215deg, var(--steel) 0 1.5deg, transparent 1.5deg 15deg);
  -webkit-mask: radial-gradient(circle, transparent 25px, #000 26px);
          mask: radial-gradient(circle, transparent 25px, #000 26px);
  opacity: .5;
}
.knob-ind {
  position: absolute; top: 5px; left: 50%; width: 3px; height: 14px; margin-left: -1.5px;
  border-radius: 2px; background: var(--accent); box-shadow: 0 0 8px var(--accent);
  transform-origin: 50% 19px; animation: knobTurn 3.4s ease-in-out infinite;
}
@keyframes knobTurn { 0% { transform: rotate(-135deg); } 50% { transform: rotate(135deg); } 100% { transform: rotate(-135deg); } }

/* כרטיס 04 — חריטת לוגו חיה בלייזר */
.svc-engrave { margin-top: auto; padding-top: 14px; position: relative; }
.svc-engrave svg { width: 100%; height: 40px; display: block; overflow: visible; }
.engrave-text {
  font-family: 'Heebo', sans-serif; font-size: 26px; font-weight: 800; letter-spacing: .5px;
  fill: none; stroke: var(--accent); stroke-width: 1.1; stroke-linejoin: round;
  stroke-dasharray: 480; stroke-dashoffset: 480; animation: engrave 4.6s ease-in-out infinite;
}
@keyframes engrave {
  0% { stroke-dashoffset: 480; } 55% { stroke-dashoffset: 0; }
  78% { stroke-dashoffset: 0; opacity: 1; } 92% { opacity: .1; }
  100% { stroke-dashoffset: 480; opacity: 0; }
}
.engrave-spark {
  position: absolute; top: 50%; width: 7px; height: 7px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 11px 3px var(--accent), 0 0 5px 1px #fff; transform: translateY(-50%);
  animation: sparkMove 4.6s ease-in-out infinite;
}
@keyframes sparkMove {
  0% { left: 8%; opacity: 0; } 6% { opacity: 1; }
  55% { left: 90%; opacity: 1; } 62% { opacity: 0; } 100% { left: 90%; opacity: 0; }
}

/* כרטיס 05 — כוונת מצלמה (viewfinder) */
.svc-cam { margin-top: auto; padding-top: 16px; position: relative; height: 56px; }
.cam-corner { position: absolute; width: 15px; height: 15px; border: 2px solid var(--accent); opacity: .85; }
.cam-corner.tl { top: 6px; left: 10px; border-right: 0; border-bottom: 0; border-top-left-radius: 3px; }
.cam-corner.tr { top: 6px; right: 10px; border-left: 0; border-bottom: 0; border-top-right-radius: 3px; }
.cam-corner.bl { bottom: 6px; left: 10px; border-right: 0; border-top: 0; border-bottom-left-radius: 3px; }
.cam-corner.br { bottom: 6px; right: 10px; border-left: 0; border-top: 0; border-bottom-right-radius: 3px; }
.cam-reticle {
  position: absolute; top: 50%; left: 50%; width: 22px; height: 22px;
  transform: translate(-50%, -50%); animation: focusLock 3s ease-in-out infinite;
}
.cam-reticle::before, .cam-reticle::after { content: ""; position: absolute; background: var(--accent); }
.cam-reticle::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.cam-reticle::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
@keyframes focusLock {
  0%, 100% { transform: translate(-50%, -50%) scale(1.3); opacity: .45; }
  45%, 55% { transform: translate(-50%, -50%) scale(.8); opacity: 1; }
}
.cam-rec {
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .58rem; font-weight: 700; letter-spacing: .1em; color: var(--steel);
}
.cam-rec::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #e11d48; animation: recBlink 1.2s steps(1) infinite; }
@keyframes recBlink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: .15; } }

/* חשיפה בגלילה (reveal-on-scroll — מופעל ב-workshop.js) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; transition-delay: calc(var(--i, 0) * .07s); }
.reveal.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .eq-strip span { animation: none !important; transform: scaleY(.5); }
  .laser-line::after, .knob-ind, .engrave-spark, .cam-reticle, .cam-rec::before { animation: none !important; }
  .laser-line::after, .engrave-spark { opacity: 0; }
  .engrave-text { animation: none !important; stroke-dashoffset: 0; opacity: 1; }
  .cam-reticle { transform: translate(-50%, -50%) scale(1); opacity: .85; }
  .svc-card:hover, .story-stats .stat:hover { transform: none; }
}

.work { background: var(--carbon); color: #fff; }
.work .kicker { color: #8d989f; }
.work .sec-sub { color: #9aa5ac; }
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; margin-top: clamp(28px, 5vw, 44px); }
.vid {
  position: relative; border-radius: var(--r); overflow: hidden;
  background: var(--carbon-2); cursor: pointer; border: 0; padding: 0;
  font-family: inherit; text-align: inherit;
}
.vid:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.vid.lg { grid-column: span 6; aspect-ratio: 16/9; }
.vid.sm { grid-column: span 4; aspect-ratio: 16/10; }
@media (max-width: 900px) { .vid.lg { grid-column: span 12; } .vid.sm { grid-column: span 6; } }
@media (max-width: 560px) { .vid.sm { grid-column: span 12; aspect-ratio: 16/9; } }
.vid img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .5s; }
.vid:hover img { transform: scale(1.04); }
.vid::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,8,10,.78) 0%, transparent 45%); }
.vid .meta {
  position: absolute; z-index: 2; bottom: 0; inset-inline: 0;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 10px;
  padding: 14px 16px;
}
.vid .meta b { font-size: .98rem; font-weight: 600; color: #fff; line-height: 1.35; }
.vid .meta small { display: block; color: #98a3aa; font-size: .78rem; font-weight: 400; margin-top: 2px; }
.vid .play {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.14); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.35);
  display: grid; place-items: center; color: #fff;
  transition: background .2s, border-color .2s;
}
.vid:hover .play { background: var(--accent); border-color: var(--accent); color: #06272f; }
.vid .play svg { width: 16px; height: 16px; margin-inline-start: 2px; }
.vid iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }
.work-more { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* projects grid (workshop page, dark section) */
.chip-dark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: #c3ccd1; }
.chip-dark:hover { border-color: var(--accent); color: var(--accent); }
.chip-dark.active { background: var(--accent); border-color: var(--accent); color: #06272f; }

.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 8px;
}
@media (max-width: 900px) { .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 560px) { .projects-grid { grid-template-columns: 1fr; } }
.proj {
  background: var(--carbon-2); border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px; overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.proj:hover { transform: translateY(-4px); border-color: rgba(41,182,220,.4); }
.proj-media {
  position: relative; display: block; width: 100%; aspect-ratio: 16/10;
  border: 0; padding: 0; cursor: pointer; background: var(--carbon); overflow: hidden;
}
.proj-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.proj:hover .proj-media img { transform: scale(1.05); }
.proj-media .play {
  position: absolute; bottom: 12px; inset-inline-start: 12px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.35);
  display: grid; place-items: center; color: #fff;
  transition: background .2s, border-color .2s, color .2s;
}
.proj-media:hover .play { background: var(--accent); border-color: var(--accent); color: #06272f; }
.proj-media .play svg { width: 15px; height: 15px; margin-inline-start: 2px; }
.proj-media .proj-more {
  position: absolute; top: 10px; inset-inline-start: 10px;
  background: rgba(8,11,13,.75); color: #fff; font-size: .75rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
}
.proj-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* סרטון שהועלה מהמכשיר — נגן HTML5 שממלא את האריח בזמן ניגון inline (דסקטופ) */
.proj-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #000; border: 0; display: block; }
.proj-media--tt.is-ph, .proj-media--ext.is-ph { background: linear-gradient(135deg, #12181b, #1d262b); }
.proj-media .proj-ph {
  position: absolute; inset: 0; display: flex; flex-direction: column; gap: 8px;
  align-items: center; justify-content: center; color: #cfd6da;
}
.proj-media .proj-ph svg { width: 34px; height: 34px; opacity: .9; }
.proj-media .proj-ph b { font-size: .9rem; font-weight: 700; letter-spacing: .02em; }
a.proj-media { text-decoration: none; }
.proj-media.is-playing img, .proj-media.is-playing .play, .proj-media.is-playing .proj-ph { opacity: 0; }

/* נגן וידאו במסך מלא לנייד (js/workshop.js) — כפתורים גדולים משלנו, כי כפתורי היוטיוב
   בתוך ה-iframe קטנים מדי ולעיתים לא מגיבים למגע ב-iOS */
.ec-video-lightbox {
  position: fixed; inset: 0; z-index: 10002;
  background: rgba(8,11,13,.95); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  padding: 16px max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
}
.ec-video-lightbox.is-open { display: flex; }
.ec-video-lightbox .ec-vl-stage {
  /* cap width by both 900px and what fits the viewport height (minus the control bar), so
     the 16/9 player never overflows and grows to use the screen when the phone is rotated */
  width: 100%; max-width: min(900px, calc((100dvh - 130px) * 16 / 9)); aspect-ratio: 16/9;
  background: #000; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.ec-video-lightbox .ec-vl-stage iframe { display: block; width: 100%; height: 100%; border: 0; }
.ec-video-lightbox .ec-vl-stage video { display: block; width: 100%; height: 100%; object-fit: contain; background: #000; border: 0; }
.ec-vl-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; width: 100%; max-width: 640px; }
.ec-vl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 48px; padding: 12px 20px; border-radius: 999px; cursor: pointer;
  font: inherit; font-size: .95rem; font-weight: 700; text-decoration: none;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.38); color: #fff;
  transition: background .18s;
}
.ec-vl-btn:hover { background: rgba(255,255,255,.26); }
.ec-vl-btn.ec-vl-play { background: var(--accent); border-color: var(--accent); color: #06272f; }
.ec-vl-btn.ec-vl-play:hover { background: var(--accent-d); border-color: var(--accent-d); color: #fff; }
:fullscreen.ec-vl-stage, .ec-vl-stage:fullscreen { border-radius: 0; }
.proj-body { padding: 15px 17px 18px; }
.proj-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.proj-cat {
  font-size: .72rem; font-weight: 700; color: var(--accent);
  background: rgba(41,182,220,.12); padding: 3px 11px; border-radius: 50px;
}
.proj-car {
  font-size: .72rem; font-weight: 700; color: #c3ccd1;
  background: rgba(255,255,255,.08); padding: 3px 11px; border-radius: 50px;
  letter-spacing: .04em;
}
.proj-body h3 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.proj-body p { color: #9aa5ac; font-size: .88rem; line-height: 1.6; }

.works-strip { padding: 0; background: var(--carbon); overflow: hidden; }
/* direction:ltr מעגן את הסרט לשמאל כך ש‑translateX(-50%) יוצר לולאה חלקה
   (העותק השני נכנס בדיוק במקום הראשון). ב‑RTL הסרט היה נגמר ומשאיר רווח ריק.
   המרווח בין תמונות הוא margin אחיד (לא gap) כדי שגם נקודת החזרה תהיה מדויקת. */
.marquee { display: flex; overflow: hidden; direction: ltr; }
.marquee-track { display: flex; width: max-content; animation: slide 58s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.shot { position: relative; width: clamp(230px, 30vw, 330px); aspect-ratio: 16/10; flex: 0 0 auto; overflow: hidden; margin-right: 4px; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.shot:hover img { transform: scale(1.05); }
.shot figcaption {
  position: absolute; inset-inline: 0; bottom: 0; direction: rtl;
  padding: 26px 14px 10px; font-size: .82rem; font-weight: 500; color: #e8edef;
  background: linear-gradient(0deg, rgba(5,8,10,.85), transparent);
  opacity: 0; transition: opacity .25s;
}
.shot:hover figcaption { opacity: 1; }
@media (hover: none) { .shot figcaption { opacity: 1; } }

.contact { background: var(--carbon); color: #fff; }
.contact .kicker { color: #8d989f; }
.contact h2.sec-title { color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 6vw, 70px); margin-top: clamp(26px, 5vw, 40px); }
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }
.c-lines { border-top: 1px solid rgba(255,255,255,.14); }
.c-line {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 17px 2px; border-bottom: 1px solid rgba(255,255,255,.14);
}
.c-line .lbl { color: #97a3aa; font-size: .88rem; }
.c-line .val { font-weight: 600; font-size: 1.05rem; color: #fff; }
.c-line a.val:hover { color: var(--accent); }
.contact-cta { display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.contact-cta .btn { width: 100%; padding: 16px; font-size: 1.06rem; }
.contact-cta .note { color: #97a3aa; font-size: .85rem; text-align: center; }

/* ============================================================
   Accessibility Widget (IS 5568 / WCAG 2.0 AA)
   ============================================================ */
#a11y-widget { position: fixed; bottom: 24px; inset-inline-end: 22px; z-index: 8000; }
#a11y-toggle {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--carbon-2); border: 2px solid var(--carbon-2); color: #fff;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(14,17,19,.35);
  transition: transform .25s, box-shadow .25s;
}
#a11y-toggle:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 28px rgba(14,17,19,.5); }
#a11y-toggle:focus-visible { outline: 3px solid #fff; outline-offset: 3px; box-shadow: 0 0 0 5px var(--carbon-2); }
#a11y-menu {
  position: absolute; bottom: 60px; inset-inline-end: 0; width: 336px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,.14); overflow: hidden;
}
.a11y-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 17px; border-bottom: 1px solid #f1f5f9; background: #f8fafc;
}
.a11y-title { margin: 0; font-size: .88rem; font-weight: 700; color: #1e293b; }
#a11y-close {
  background: none; border: none; cursor: pointer; font-size: 1.3rem; color: #64748b;
  padding: 0 4px; border-radius: 6px; line-height: 1; font-family: inherit;
}
#a11y-close:hover { background: #f1f5f9; color: #1e293b; }
#a11y-close:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.a11y-body { max-height: 400px; overflow-y: auto; overscroll-behavior: contain; }
.a11y-body::-webkit-scrollbar { width: 4px; }
.a11y-body::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 4px; }
.a11y-section { border-bottom: 1px solid #f1f5f9; }
.a11y-section:last-child { border-bottom: none; }
.a11y-section-label {
  padding: 8px 14px 4px; font-size: .68rem; font-weight: 700; color: #94a3b8;
  letter-spacing: .8px; background: #fafafa; border-bottom: 1px solid #f1f5f9;
}
.a11y-section-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #f1f5f9; }
.a11y-btn {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 11px 6px; background: #fff; border: none; cursor: pointer;
  font-family: inherit; transition: background .2s; min-height: 60px;
}
.a11y-btn:hover { background: #f8fafc; }
.a11y-btn.active { background: var(--accent-l); }
.a11y-btn:focus-visible { outline: 2px solid var(--ink); outline-offset: -2px; }
.a11y-btn-icon { font-size: 1rem; font-weight: 700; color: #334155; line-height: 1; }
.a11y-btn-label { font-size: .63rem; color: #64748b; text-align: center; line-height: 1.3; }
.a11y-btn.active .a11y-btn-icon, .a11y-btn.active .a11y-btn-label { color: var(--accent-d); font-weight: 700; }
.a11y-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 15px; border-top: 1px solid #f1f5f9; background: #f8fafc; gap: 8px;
}
#a11y-reset, #a11y-statement-btn {
  background: none; border: 1px solid #cbd5e1; border-radius: 8px; padding: 5px 12px;
  font-size: .75rem; cursor: pointer; font-family: inherit; color: #64748b;
  transition: background .2s, border-color .2s;
}
#a11y-reset:hover, #a11y-statement-btn:hover { background: #f1f5f9; border-color: #94a3b8; color: #1e293b; }
#a11y-statement-modal { position: fixed; inset: 0; z-index: 9500; display: flex; align-items: center; justify-content: center; padding: 20px; }
#a11y-statement-modal[hidden] { display: none; }
.a11y-statement-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.a11y-statement-content {
  position: relative; background: #fff; border-radius: 16px; padding: 32px;
  max-width: 480px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,.2); direction: rtl;
}
.a11y-statement-close {
  position: absolute; top: 14px; inset-inline-end: 14px; background: none; border: none;
  font-size: 1.4rem; cursor: pointer; color: #64748b; border-radius: 8px; padding: 2px 8px;
}
.a11y-statement-close:hover { background: #f1f5f9; color: var(--ink); }

/* a11y modifier classes — filters on #main-wrapper only */
#main-wrapper.a11y-grayscale { filter: grayscale(100%); }
#main-wrapper.a11y-high-contrast {
  --paper: #000; --paper-2: #111; --ink: #fff; --ink-2: #fff; --steel: #ccc;
  --line: #444; --carbon: #000; --carbon-2: #111; --accent: #ffff00; --accent-d: #ffff00; --accent-l: #333;
  background: #000; color: #fff;
}
#main-wrapper.a11y-negative-contrast { filter: invert(100%) hue-rotate(180deg); }
#main-wrapper.a11y-light-background { --carbon: #fff; --carbon-2: #f4f4f4; }
#main-wrapper.a11y-light-background .hero, #main-wrapper.a11y-light-background .work,
#main-wrapper.a11y-light-background .contact, #main-wrapper.a11y-light-background footer.site,
#main-wrapper.a11y-light-background .workshop-band, #main-wrapper.a11y-light-background .page-head { color: #111; }
#main-wrapper.a11y-light-background .hero-title, #main-wrapper.a11y-light-background .hero-subtitle { color: #111; }
#main-wrapper.a11y-readable-font, #main-wrapper.a11y-readable-font * { font-family: Arial, Helvetica, sans-serif !important; }
#main-wrapper.a11y-line-height p, #main-wrapper.a11y-line-height li,
#main-wrapper.a11y-line-height span, #main-wrapper.a11y-line-height a { line-height: 2; }
#main-wrapper.a11y-letter-spacing p, #main-wrapper.a11y-letter-spacing li,
#main-wrapper.a11y-letter-spacing span, #main-wrapper.a11y-letter-spacing a,
#main-wrapper.a11y-letter-spacing button { letter-spacing: .12em; }
#main-wrapper.a11y-highlight-links a, #main-wrapper.a11y-highlight-links [role="link"] {
  text-decoration: underline; outline: 2px solid var(--accent-d); outline-offset: 2px; border-radius: 2px;
}
#main-wrapper.a11y-highlight-headings h1, #main-wrapper.a11y-highlight-headings h2,
#main-wrapper.a11y-highlight-headings h3, #main-wrapper.a11y-highlight-headings h4 {
  border-bottom: 3px solid var(--accent-d); padding-bottom: 4px;
}
body.a11y-pause-animations *, body.a11y-pause-animations *::before, body.a11y-pause-animations *::after {
  animation-duration: .001s !important; animation-delay: .001s !important;
  transition-duration: .001s !important; animation-iteration-count: 1 !important;
}
body.a11y-big-cursor-white * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M5 3l28 16-12 2-7 12z' fill='white' stroke='black' stroke-width='2'/%3E%3C/svg%3E") 5 3, auto; }
body.a11y-big-cursor-black * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M5 3l28 16-12 2-7 12z' fill='black' stroke='white' stroke-width='2'/%3E%3C/svg%3E") 5 3, auto; }
#a11y-reading-guide {
  position: fixed; left: 0; right: 0; height: 2px;
  background: rgba(41,182,220,.85); pointer-events: none; z-index: 7999;
  transform: translateY(-1px); box-shadow: 0 0 8px rgba(41,182,220,.5);
}
.a11y-reading-mask-panel {
  position: fixed; left: 0; right: 0; background: rgba(0,0,0,.5);
  pointer-events: none; z-index: 7998; transition: height .05s linear;
}
@media (max-width: 480px) {
  #a11y-widget { inset-inline-end: 14px; bottom: 18px; }
  #a11y-toggle { width: 46px; height: 46px; }
  #a11y-menu { width: min(300px, calc(100vw - 40px)); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* cart drawer secondary link */
.ec-cart-alt { display: block; text-align: center; margin-top: 10px; font-size: .85rem; color: var(--steel); text-decoration: underline; }
.ec-cart-alt:hover { color: var(--accent-d); }

/* checkout — compact 4-field row (apt/floor/entrance/zip) */
.co-fields-row--four { grid-template-columns: 1fr 1fr 1fr 1.2fr; gap: 8px; }
@media (max-width: 520px) { .co-fields-row--four { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   thank-you page states
   ============================================================ */
.ty-box {
  max-width: 620px; margin: 26px auto 0; background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 40px 30px; text-align: center;
}
.ty-title { font-size: clamp(1.4rem, 3.6vw, 1.9rem); font-weight: 800; margin-bottom: 10px; }
.ty-sub { color: var(--ink-2); font-size: .98rem; line-height: 1.7; margin-bottom: 18px; }
.ty-note { font-size: .85rem; color: var(--steel); margin-top: 16px; }
.ty-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.ty-spinner {
  width: 54px; height: 54px; margin: 0 auto 22px;
  border: 4px solid var(--line); border-top-color: var(--accent);
  border-radius: 50%; animation: ty-spin 0.9s linear infinite;
}
@keyframes ty-spin { to { transform: rotate(360deg); } }
.ty-check {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%;
  background: #16a34a; color: #fff; display: flex; align-items: center; justify-content: center;
  animation: ty-pop .35s cubic-bezier(.34,1.56,.64,1);
}
.ty-check svg { width: 32px; height: 32px; }
@keyframes ty-pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.ty-wait { font-size: 2.6rem; margin-bottom: 14px; }
.ty-warn {
  width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 50%;
  background: #fef3c7; color: #d97706; font-size: 1.9rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.ty-items { max-width: 420px; margin: 22px auto 0; display: flex; flex-direction: column; gap: 12px; text-align: start; }
.ty-totals { max-width: 420px; margin: 18px auto 0; display: flex; flex-direction: column; gap: 8px; font-size: .9rem; text-align: start; }

/* ============================================================
   legal pages (terms / privacy / accessibility)
   ============================================================ */
.legal-hero {
  background: linear-gradient(180deg, var(--paper-2, #f4f6f7), #fff);
  padding: calc(var(--ticker-h) + var(--nav-h) + 40px) 0 30px; border-bottom: 1px solid rgba(14,17,19,.07);
}
.legal-hero h1 { font-size: clamp(1.6rem, 4vw, 2.3rem); font-weight: 900; color: var(--ink); }
.legal-hero .legal-updated { color: var(--ink-2); font-size: .86rem; margin-top: 8px; }
.legal-body { padding: 36px 0 70px; }
.legal-article { max-width: 780px; margin-inline: auto; color: var(--ink-2); line-height: 1.85; font-size: .96rem; }
.legal-article h2 {
  color: var(--ink); font-size: 1.22rem; font-weight: 800;
  margin: 34px 0 10px; padding-top: 10px; scroll-margin-top: 120px;
}
.legal-article h2:first-child { margin-top: 0; }
.legal-article h3 { color: var(--ink); font-size: 1.02rem; font-weight: 700; margin: 20px 0 6px; }
.legal-article p { margin: 0 0 12px; }
.legal-article ul, .legal-article ol { padding-inline-start: 22px; margin: 0 0 14px; }
.legal-article li { margin-bottom: 7px; }
.legal-article a { color: var(--accent-d); text-decoration: underline; text-underline-offset: 3px; }
.legal-article strong { color: var(--ink); }
.legal-toc {
  background: var(--paper-2, #f4f6f7); border: 1px solid rgba(14,17,19,.07);
  border-radius: 14px; padding: 18px 22px; margin-bottom: 28px;
}
.legal-toc strong { display: block; margin-bottom: 8px; color: var(--ink); }
.legal-toc ol { columns: 2; column-gap: 28px; padding-inline-start: 20px; margin: 0; }
.legal-toc a { text-decoration: none; }
.legal-toc a:hover { text-decoration: underline; }
.legal-note {
  background: var(--accent-l, #e8f7fc); border-radius: 12px;
  padding: 14px 18px; margin: 14px 0; font-size: .92rem;
}
@media (max-width: 560px) { .legal-toc ol { columns: 1; } }

/* ============================================================
   cookie consent banner
   ============================================================ */
.cookie-banner {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 900;
  background: #fff; border-top: 1px solid rgba(14,17,19,.1);
  box-shadow: 0 -8px 30px rgba(14,17,19,.12);
  padding: 14px 0 max(14px, env(safe-area-inset-bottom));
  animation: cookie-slide .35s ease;
}
@keyframes cookie-slide { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-banner-inner {
  width: min(var(--wrap), 100% - 40px); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
}
.cookie-banner-text { margin: 0; font-size: .9rem; line-height: 1.6; color: var(--ink-2); max-width: 640px; }
.cookie-banner-text a { color: var(--accent-d); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-banner-actions .btn { padding: 9px 20px; font-size: .88rem; }
@media (max-width: 640px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner-actions { justify-content: center; }
}

/* about / story (workshop page) */
/* ===== מי אנחנו ===== */
.about-story { padding: clamp(52px, 7vw, 82px) 0; background: var(--paper-2); border-top: 1px solid var(--line); }
.about-story .story-lead { max-width: 820px; margin: 12px auto 30px; font-size: clamp(1.04rem, 2.4vw, 1.2rem); line-height: 1.72; color: var(--ink-2); }
.story-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 22px; }
.story-stats .stat {
  position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: 20px 16px; text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.story-stats .stat:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 16px 32px -18px rgba(22,144,178,.45); }
.story-stats .stat-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 13px; margin-bottom: 11px;
  background: var(--accent-l); color: var(--accent-d);
}
.story-stats .stat-ic svg { width: 22px; height: 22px; }
.story-stats .stat b { display: block; font-size: clamp(1.15rem, 2.6vw, 1.5rem); font-weight: 800; color: var(--ink); line-height: 1.15; letter-spacing: -.01em; font-variant-numeric: tabular-nums; }
.story-stats .stat .stat-lbl { display: block; margin-top: 4px; font-size: .82rem; color: var(--steel); }
.about-eq { height: 38px; margin: 2px 0 28px; opacity: .5; }
.story-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(22px, 3.4vw, 38px); max-width: 900px; margin-inline: auto;
  box-shadow: 0 24px 56px -34px rgba(20,23,26,.3);
}
.story-body p { color: var(--ink-2); line-height: 1.9; margin-bottom: 15px; font-size: 1.01rem; }
.story-body p:last-child { margin-bottom: 0; }
.story-body .story-sign { position: relative; font-weight: 700; color: var(--ink); padding-inline-start: 16px; margin-top: 20px; }
.story-body .story-sign::before { content: ""; position: absolute; inset-inline-start: 0; top: 5px; bottom: 5px; width: 3px; border-radius: 3px; background: var(--accent); }
@media (max-width: 640px) { .story-stats { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   account — האזור האישי (account.html, מערכת חשבונות שלב 1)
   ============================================================ */
.account-wrap {
  padding: calc(var(--ticker-h) + var(--nav-h) + 34px) 0 clamp(54px, 8vw, 90px);
  background: var(--paper-2); min-height: 80vh;
}
#account-root { width: min(720px, 100% - 40px); margin-inline: auto; }

.acc-title { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; text-align: center; margin-bottom: 4px; }
.acc-sub { text-align: center; color: var(--steel); font-size: .95rem; margin-bottom: 22px; }

.acc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: 26px; box-shadow: 0 6px 24px rgba(14,17,19,.05);
}

/* טאבים (כניסה/הרשמה + פרופיל/הזמנות/קופון) */
.acc-tabs {
  display: flex; gap: 6px; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: 50px; padding: 5px; margin-bottom: 22px;
}
.acc-tab {
  flex: 1; border: none; background: transparent; font-family: inherit;
  font-size: .92rem; font-weight: 700; color: var(--steel); padding: 9px 14px;
  border-radius: 50px; cursor: pointer; transition: background .2s, color .2s;
}
.acc-tab:hover { color: var(--ink); }
.acc-tab.is-active { background: var(--paper); color: var(--accent-d); box-shadow: 0 2px 10px rgba(14,17,19,.08); }
.acc-tab:focus-visible { outline: 2px solid var(--accent-d); outline-offset: 2px; }

/* טפסים (משתמשים ב-co-field/co-input של הצ'קאאוט) */
.acc-form { display: flex; flex-direction: column; gap: 12px; }
.acc-form-sep {
  font-size: .78rem; font-weight: 700; color: var(--steel);
  text-transform: uppercase; letter-spacing: .1em; margin-top: 8px;
}
.acc-row-street { grid-template-columns: 2fr 1fr; }
.acc-row-three { grid-template-columns: 1fr 1fr 1fr; }
.acc-consent { display: flex; align-items: center; gap: 10px; font-size: .86rem; color: var(--ink-2); cursor: pointer; }
.acc-birthday-hint { font-size: .74rem; color: var(--steel); margin-top: 2px; }
.acc-submit { width: 100%; min-height: 48px; }
.acc-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.acc-actions .btn { flex: 1; min-height: 48px; }
.acc-link {
  border: none; background: none; font-family: inherit; color: var(--accent-d);
  font-size: .86rem; font-weight: 600; cursor: pointer; align-self: center;
  padding: 2px 4px; text-decoration: underline; text-underline-offset: 3px;
}
.co-input[disabled] { opacity: .6; cursor: not-allowed; }

/* מפריד "או" + כפתור Google */
.acc-divider { display: flex; align-items: center; gap: 14px; color: var(--steel); font-size: .82rem; margin: 2px 0; }
.acc-divider::before, .acc-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.acc-google { width: 100%; gap: 10px; }
.acc-google svg { width: 18px; height: 18px; }

/* כותרת מצב מחובר (שלום + התנתקות) */
.acc-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.acc-head .acc-title, .acc-head .acc-sub { text-align: start; margin-bottom: 0; }
.acc-signout-btn { padding: 9px 22px; font-size: .88rem; }
/* כפתור התנתקות — בתחתית עמוד הפרופיל */
.acc-foot { margin-top: 24px; display: flex; justify-content: center; }
.acc-foot .acc-signout-btn { width: 100%; max-width: 360px; min-height: 48px; }

/* מצבי ריק (הזמנות / אין קופון) */
.acc-empty { text-align: center; padding: 26px 10px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.acc-empty svg { color: var(--steel); opacity: .45; margin-bottom: 6px; }
.acc-empty-title { font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.acc-empty-sub { color: var(--steel); font-size: .9rem; max-width: 420px; margin-bottom: 10px; }

/* הצגת קופון ההצטרפות (הקוד/התוקף בבעלות השרת — תצוגה בלבד) */
.acc-coupon { text-align: center; padding: 14px 6px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.acc-coupon-label { font-weight: 700; color: var(--ink-2); }
.acc-coupon-code {
  font-size: 1.5rem; font-weight: 900; letter-spacing: .14em; color: var(--accent-d);
  background: var(--accent-l); border: 2px dashed var(--accent-d); border-radius: var(--r);
  padding: 12px 26px;
}
.acc-coupon-expiry { font-size: .85rem; color: var(--steel); }
.acc-coupon-note { font-size: .8rem; color: var(--steel); max-width: 380px; }

/* חיווי "עסוק" בזמן פעולה מול השרת */
.acc-busy { opacity: .6; pointer-events: none; transition: opacity .2s; }

/* מסכים צרים */
@media (max-width: 560px) {
  .acc-card { padding: 18px 14px; }
  .acc-head { flex-direction: column; align-items: stretch; text-align: center; }
  .acc-head .acc-title, .acc-head .acc-sub { text-align: center; }
  .acc-tab { font-size: .84rem; padding: 8px 6px; }
  .acc-row-street, .acc-row-three { grid-template-columns: 1fr 1fr; }
  .acc-actions { flex-direction: column; }
}

/* ============================================================
   דו-לשוניות: התאמות LTR (אנגלית) — html[dir="ltr"] נקבע ע"י js/i18n.js.
   רוב הפריסה כבר לוגית (inline-start/end); כאן רק מה שדורש היפוך מפורש.
   ============================================================ */
/* המגירות מוצמדות ל-inline-start (ימין בעברית / שמאל באנגלית) —
   מצב "סגור" חייב לזוז לכיוון ההפוך בהתאם */
[dir="ltr"] .nav-links { transform: translateX(-100%); box-shadow: 12px 0 40px rgba(14,17,19,.14); }
[dir="ltr"] .nav-links.is-open { transform: translateX(0); }
[dir="ltr"] .ec-drawer { transform: translateX(-105%); }
[dir="ltr"] .ec-drawer.is-open { transform: translateX(0); }
/* גרדיאנט פס הסדנא — הכהיה בצד הטקסט */
[dir="ltr"] .workshop-band .bg::after { background: linear-gradient(270deg, rgba(8,11,13,.92), rgba(8,11,13,.55)); }

/* ============================================================
   שיפורי המרה — 2026-07-05 (פרונט)
   ============================================================ */

/* #1 כרטיסי פרויקטים בסדנא — "בליטה" ברורה בריחוף + z-index שלא ייכנס מתחת לשכן */
.proj { position: relative; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.proj:hover { transform: translateY(-6px); border-color: rgba(41,182,220,.55); z-index: 3; box-shadow: 0 16px 40px rgba(0,0,0,.5); }

/* #2 נקודת "מחובר" ירוקה על אייקון המשתמש בסרגל העליון */
#nav-user-btn { position: relative; }
.nav-user-dot {
  position: absolute; bottom: 3px; inset-inline-end: 3px;
  width: 9px; height: 9px; border-radius: 50%;
  background: #22c55e; border: 2px solid #fff; display: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,.05);
}
.nav-user-dot.is-on { display: block; }

/* #3 כפתור "קנייה מהירה" — רק בדף המוצר (PDP), לא בגריד עם הרבה מוצרים.
   מבוסס על .btn.btn-line הקיים; כאן רק ברוחב מלא. */
.pdp-buy { width: 100%; margin-bottom: 10px; }

/* #9 ראש התפריט: "שלום, שם" בצד אחד + כפתור שפה בצד השני (במקום טלפון/שעות) */
.nav-greeting { font-size: 1rem; font-weight: 700; color: var(--ink); }
.nav-links .nav-top-row .nav-top-lang { min-width: 0; height: 30px; padding: 0 12px; font-size: .8rem; font-weight: 700; flex-shrink: 0; }

/* קטגוריה ללא תמונה בדף הבית — רקע גרדיאנט והכיתוב במרכז */
.category-card.no-img { background: linear-gradient(135deg, #16323f, var(--carbon-2)); }
.category-card.no-img .category-card-overlay { align-items: center; justify-content: center; }
.category-card.no-img .category-card-label { font-size: 1.05rem; }

/* #4 שורת קופון — גלויה תמיד, מעוצבת דקה יותר (פחות בולטת) */
.co-coupon-row { display: flex; gap: 8px; margin-bottom: 12px; }
.co-coupon-row .co-input { flex: 1; padding: 8px 12px; font-size: .88rem; }
.co-coupon-apply { padding: 0 14px; font-size: .85rem; }

/* #5 כמות לצד שם המוצר (לא על התמונה) — הבהרה שהמחיר הוא ליחידה × כמות */
.co-summary-item-meta { font-size: .78rem; color: var(--steel); font-weight: 500; }

/* #7 בחירת כתובת: צ'קבוקס "כתובת שמורה" מעל פרטי המשלוח (מופיע כשיש כתובת שמורה) */
.co-addr-saved { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: .9rem; color: var(--ink-2); cursor: pointer; user-select: none; }
.co-addr-saved input { width: 17px; height: 17px; accent-color: var(--accent-d); cursor: pointer; flex-shrink: 0; }

/* #8 באנר התקדמות למשלוח חינם — בתוך מגירת העגלה */
.ec-cart-ship {
  margin: 2px 0 12px; padding: 11px 13px; border-radius: 11px;
  background: var(--accent-l); border: 1px solid rgba(41,182,220,.3);
  font-size: .84rem; color: var(--ink-2); line-height: 1.5;
}
.ec-cart-ship b { color: var(--accent-d); font-weight: 800; }
.ec-cart-ship-track { height: 6px; border-radius: 4px; background: rgba(41,182,220,.2); margin-top: 9px; overflow: hidden; }
.ec-cart-ship-fill { height: 100%; background: var(--accent-d); border-radius: 4px; transition: width .35s ease; }
.ec-cart-ship.is-free { background: #dcfce7; border-color: #86efac; color: #166534; }
.ec-cart-ship.is-free b { color: #166534; }
.ec-cart-ship-note { font-size: .74rem; font-weight: 500; opacity: .85; margin-top: 3px; }

/* כותרת "תרגום לא מחייב" בדפים המשפטיים במצב EN (js/legal-en.js) */
.legal-en-disclaimer {
  background: var(--paper-2, #f4f6f7); border: 1px solid rgba(14,17,19,.07); border-radius: 14px;
  padding: 18px 22px; margin: 0 0 30px; line-height: 1.65;
}
.legal-en-disclaimer strong:first-child { display: block; font-size: 1.02rem; color: var(--ink); margin-bottom: 6px; }
.legal-en-disclaimer p { margin: 0; color: var(--ink-2); font-size: .93rem; }
.legal-en-disclaimer strong { color: var(--ink); }

/* pc-strip — גלריית מוצרים אופקית נגללת (קרוס-סל בדף המוצר, בסגנון אלי-אקספרס) */
.pc-strip {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x proximity;
  padding: 6px 2px 14px; margin-top: 10px; text-align: start;
  -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.pc-strip > .pc { flex: 0 0 auto; width: clamp(158px, 44vw, 210px); scroll-snap-align: start; }
.pc-strip::-webkit-scrollbar { height: 8px; }
.pc-strip::-webkit-scrollbar-track { background: transparent; }
.pc-strip::-webkit-scrollbar-thumb { background: var(--line); border-radius: 8px; }
.pc-strip::-webkit-scrollbar-thumb:hover { background: var(--steel); }

/* pc-carousel — עטיפת קרוסלה עם חצי ניווט (דף הבית: "מוצרים חמים") */
.pc-carousel { position: relative; }
/* שתי שורות אחת מתחת לשנייה: grid-auto-flow:column ממלא כל "טור" שני כרטיסים
   (עליון+תחתון) לפני שעובר לטור הבא — כך גלילה אחת חושפת פי 2 מוצרים, ושתי
   השורות זזות יחד כי מדובר באותו מכל גלילה אחד (לא שתי רצועות נפרדות). */
.pc-carousel .pc-strip {
  display: grid; grid-auto-flow: column; grid-template-rows: repeat(2, auto);
  gap: 12px 14px; scroll-snap-type: x mandatory; scrollbar-width: none;
}
.pc-carousel .pc-strip::-webkit-scrollbar { display: none; }
.pc-carousel .pc-strip > .pc { width: clamp(180px, 50vw, 220px); }
.pc-carousel-nav {
  position: absolute; top: calc(50% - 26px); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--ink); border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(14,17,19,.16);
  display: grid; place-items: center; cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, opacity .2s ease;
}
.pc-carousel-nav svg { width: 20px; height: 20px; }
.pc-carousel-nav:hover { background: var(--ink); color: #fff; transform: scale(1.06); }
.pc-carousel-nav.prev { inset-inline-start: -10px; }   /* RTL: הקודם בצד ההתחלה (ימין) */
.pc-carousel-nav.next { inset-inline-end: -10px; }     /* RTL: הבא בצד הסיום (שמאל) */
.pc-carousel-nav.is-off { opacity: 0; pointer-events: none; }
@media (max-width: 700px) { .pc-carousel-nav { display: none; } }  /* נייד: החלקה */

/* PDP — צמצום מרווחים בעמודת המידע כדי להעלות את כפתורי ההוספה לעגלה */
.pdp h1 { margin: 4px 0 7px; }
.pdp-vehicle { margin-top: 9px; }
.pdp-price-row { margin: 12px 0 2px; }
.pdp-vat { margin-bottom: 8px; }
.pdp-stock { margin-bottom: 11px; }
@media (max-width: 560px) {
  .pdp h1 { margin: 2px 0 5px; }
  .pdp-vehicle { margin-top: 7px; padding: 6px 14px; }
  .pdp-price-row { margin: 8px 0 2px; }
  .pdp-price { font-size: 1.7rem; }
  .pdp-vat { margin-bottom: 5px; }
  .pdp-stock { margin-bottom: 9px; }
}

/* כמות פריט בעגלה — כיתוב עדין, פונט קטן-בינוני */
.ec-ditem-qty { font-size: .8rem; color: var(--steel); margin-top: 3px; }

/* מע"מ + מלאי באותה שורה, כל אחד בצדו */
.pdp-meta-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin: 4px 0 14px; }
.pdp-meta-row .pdp-vat, .pdp-meta-row .pdp-stock { margin: 0; }
