/* ============================================================
   GIMBORY4U — style.css
   RTL Hebrew | Mobile-first | Heebo Font
   ============================================================ */

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

/* ── Variables ── */
:root {
  --bg-main:      #F5F5F7;
  --bg-card:      #FFFFFF;
  --text-primary: #1D1D1F;
  --text-sec:     #6E6E73;
  --btn:          #0071E3;
  --btn-hover:    #005BBB;
  --border:       #D2D2D7;
  --green:        #1a9e3f;
  --green-bg:     #eaf7ee;
  --radius:       14px;
  --shadow:       0 2px 12px rgba(0,0,0,0.06);
  --wa:           #25D366;
  --ease:         0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { direction: rtl; scroll-behavior: smooth; }
body {
  font-family: 'Heebo', system-ui, -apple-system, sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.ltr { direction: ltr; display: inline-block; }

/* ── Typography ── */
h1 { font-size: clamp(1.75rem, 5vw, 2.8rem); font-weight: 800; line-height: 1.25; }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }

/* ── Utilities ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-title { text-align: center; margin-bottom: 12px; }
.section-subtitle {
  text-align: center; color: var(--text-sec);
  max-width: 620px; margin: 0 auto 40px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: 'Heebo', sans-serif; font-size: 1rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--ease);
  text-decoration: none; justify-content: center;
}
.btn-primary { background: var(--btn); color: #fff; }
.btn-primary:hover { background: var(--btn-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,113,227,0.3); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.btn-outline { background: transparent; border: 2px solid var(--btn); color: var(--btn); }
.btn-outline:hover { background: var(--btn); color: #fff; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; border-radius: 16px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: flex; align-items: center; gap: 15px; }
.logo-icon { font-size: 3.3rem; line-height: 1; }
.logo-text-main { font-size: 1.95rem; font-weight: 900; color: var(--btn); display: block; line-height: 1.1; }
.logo-sub { font-size: 1.02rem; font-weight: 400; color: var(--text-sec); display: block; }
.header-cta { font-size: 0.9rem; padding: 10px 20px; }
.header-phone {
  font-size: 1.25rem; font-weight: 600;
  color: var(--text-primary);
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.header-phone a { color: var(--btn); }
@media (max-width: 768px) {
  .header-phone { display: none; }
  .logo-icon { font-size: 2.4rem; }
  .logo-text-main { font-size: 1.4rem; }
  .logo-sub { font-size: 0.75rem; }
  .logo { gap: 10px; }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 10px 0;
  font-size: 0.82rem;
  color: var(--text-sec);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.breadcrumb a { color: var(--btn); }
.breadcrumb-sep { margin: 0 6px; color: var(--border); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(140deg, #ddeeff 0%, #eef6ff 45%, var(--bg-main) 100%);
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(0,113,227,0.06) 0%, transparent 60%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--btn); color: #fff;
  padding: 5px 18px; border-radius: 20px;
  font-size: 0.85rem; font-weight: 600;
  margin-bottom: 22px;
  box-shadow: 0 4px 12px rgba(0,113,227,0.25);
}
.hero h1 { max-width: 820px; margin: 0 auto 18px; color: var(--text-primary); }
.hero-subtitle {
  font-size: 1.15rem; color: var(--text-sec); font-weight: 500;
  margin-bottom: 28px;
}
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 36px;
}
.tag {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 6px 18px; border-radius: 20px;
  font-size: 0.9rem; color: var(--text-sec); font-weight: 500;
}
.tag-green { background: var(--green-bg); border-color: var(--green); color: var(--green); }
.tag-blue  { background: #e8f0fe; border-color: var(--btn); color: var(--btn); }

/* ============================================================
   PRICE SPOTLIGHT
   ============================================================ */
.price-spotlight { background: var(--bg-card); padding: 64px 0; }
.price-card {
  max-width: 480px; margin: 0 auto;
  background: var(--bg-main);
  border-radius: 20px; padding: 44px 40px;
  text-align: center;
  border: 2.5px solid var(--btn);
  position: relative;
  box-shadow: 0 8px 48px rgba(0,113,227,0.14);
}
.price-label {
  position: absolute; top: -18px; right: 50%; transform: translateX(50%);
  background: var(--btn); color: #fff;
  padding: 6px 28px; border-radius: 20px;
  font-size: 0.88rem; font-weight: 600; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,113,227,0.3);
}
.price-amount {
  font-size: 4.5rem; font-weight: 900; color: var(--btn);
  line-height: 1; margin: 20px 0 8px;
  letter-spacing: -2px;
}
.price-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.price-desc { color: var(--text-sec); margin-bottom: 28px; }
.price-features { text-align: right; margin-bottom: 32px; }
.price-features li {
  padding: 10px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px; font-size: 0.97rem;
}
.price-features li:last-child { border-bottom: none; }
.check { color: var(--green); font-weight: 800; font-size: 1.1rem; flex-shrink: 0; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--bg-main); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
}
.step-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 36px 24px; text-align: center;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform var(--ease), box-shadow var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.step-icon { font-size: 3rem; margin-bottom: 16px; }
.step-number {
  width: 44px; height: 44px; background: var(--btn); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; margin: 0 auto 16px;
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { color: var(--text-sec); font-size: 0.95rem; }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages { background: var(--bg-card); }
.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
}
.package-card {
  background: var(--bg-main); border-radius: var(--radius);
  padding: 32px 24px; border: 2px solid var(--border);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex; flex-direction: column;
  position: relative;
}
.package-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.package-card.featured {
  border-color: var(--btn); background: #fff;
  box-shadow: 0 8px 40px rgba(0,113,227,0.18);
  transform: scale(1.03);
}
.package-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.featured-badge {
  position: absolute; top: -15px; right: 50%; transform: translateX(50%);
  background: var(--btn); color: #fff;
  padding: 4px 22px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600; white-space: nowrap;
}
.pkg-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.pkg-price {
  font-size: 2.8rem; font-weight: 900; color: var(--btn);
  margin-bottom: 24px; line-height: 1; letter-spacing: -1px;
}
.pkg-features { flex: 1; margin-bottom: 24px; }
.pkg-features li {
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 0.93rem; display: flex; align-items: flex-start; gap: 8px;
}
.pkg-features li:last-child { border-bottom: none; }
.pkg-features .check { margin-top: 2px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--bg-main); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 32px 0;
}
.gallery-item {
  aspect-ratio: 4/3; border-radius: var(--radius);
  overflow: hidden; cursor: pointer; position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
  border: 1px solid var(--border);
}
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 8px 28px rgba(0,0,0,0.14); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, #ddeeff 0%, #f0e0ff 100%);
  color: var(--text-sec);
}
.gallery-placeholder .ph-icon { font-size: 2.8rem; }
.gallery-placeholder .ph-text { font-size: 0.78rem; font-weight: 500; text-align: center; }
.gallery-cta { text-align: center; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999; display: flex;
  align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 92vw; max-height: 87vh; border-radius: 10px; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; left: 20px;
  color: #fff; font-size: 1.6rem; cursor: pointer;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-card); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
}
.testimonial-card {
  background: var(--bg-main); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--ease);
}
.testimonial-card:hover { transform: translateY(-3px); }
.stars { color: #f5a623; font-size: 1.2rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-primary); line-height: 1.75; margin-bottom: 16px; }
.testimonial-author { font-weight: 600; font-size: 0.88rem; color: var(--text-sec); }
.testimonial-author strong { color: var(--text-primary); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-main); }
.faq-list { max-width: 760px; margin: 40px auto 0; }
.faq-item {
  background: var(--bg-card); border-radius: var(--radius);
  margin-bottom: 12px; border: 1px solid var(--border);
  overflow: hidden; transition: border-color var(--ease);
}
.faq-item.open { border-color: var(--btn); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 24px; display: flex;
  align-items: center; justify-content: space-between;
  cursor: pointer; font-family: 'Heebo', sans-serif;
  font-size: 1rem; font-weight: 600;
  text-align: right; color: var(--text-primary);
  gap: 12px;
}
.faq-question:hover { background: var(--bg-main); }
.faq-q-text { flex: 1; }
.faq-arrow { font-size: 1.1rem; transition: transform 0.28s; flex-shrink: 0; color: var(--btn); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.38s ease, padding 0.3s;
  padding: 0 24px; color: var(--text-sec); line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 22px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(140deg, #0071E3 0%, #0060c8 60%, #004ea8 100%);
  color: #fff; text-align: center; padding: 80px 0;
}
.final-cta h2 { color: #fff; margin-bottom: 18px; font-size: clamp(1.4rem, 4vw, 2.2rem); }
.final-cta p { color: rgba(255,255,255,0.82); max-width: 580px; margin: 0 auto 36px; line-height: 1.75; }
.final-cta .btn-wa-white {
  background: #fff; color: var(--green);
  font-size: 1.1rem; padding: 18px 40px; font-weight: 700;
  border-radius: 16px; box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transition: var(--ease);
}
.final-cta .btn-wa-white:hover { background: #f0fff4; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.25); }

/* ============================================================
   SEO ARTICLE
   ============================================================ */
.seo-article { background: #EBEBEF; padding: 64px 0; }
.article-content {
  max-width: 820px; margin: 0 auto;
  background: var(--bg-card); padding: 52px;
  border-radius: 20px; box-shadow: var(--shadow);
}
.article-content h2 {
  font-size: 1.35rem; font-weight: 700;
  margin: 36px 0 16px; color: var(--text-primary);
  border-right: 4px solid var(--btn); padding-right: 14px;
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { font-size: 1.1rem; font-weight: 600; margin: 20px 0 10px; color: var(--text-primary); }
.article-content p { color: var(--text-sec); line-height: 1.85; margin-bottom: 16px; }
.article-content ul { padding-right: 20px; list-style: disc; margin-bottom: 16px; }
.article-content ul li { color: var(--text-sec); margin-bottom: 8px; padding-right: 4px; line-height: 1.7; }
.article-content strong { color: var(--text-primary); font-weight: 600; }
.price-table { width: 100%; border-collapse: collapse; margin: 20px 0 24px; border-radius: 8px; overflow: hidden; }
.price-table th { background: var(--btn); color: #fff; padding: 13px 16px; text-align: right; font-weight: 600; }
.price-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); text-align: right; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) { background: var(--bg-main); }
.article-cta { margin-top: 36px; text-align: center; }

/* ============================================================
   SEO FOOTER TEXT
   ============================================================ */
.seo-footer-text { background: var(--bg-main); padding: 20px 0; border-top: 1px solid var(--border); }
.seo-footer-text p { font-size: 0.78rem; color: var(--border); text-align: center; line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1D1D1F; color: #f5f5f7;
  padding: 52px 0 110px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px; margin-bottom: 36px;
}
.footer-logo { font-size: 1.2rem; font-weight: 900; color: var(--btn); margin-bottom: 12px; }
.footer-tagline { font-size: 0.88rem; color: #a1a1a6; line-height: 1.7; margin-bottom: 16px; }
.footer-contact-line { font-size: 0.88rem; color: #a1a1a6; margin-bottom: 6px; }
.footer-contact-line a { color: var(--wa); font-weight: 600; }
.footer-col h4 { font-size: 0.95rem; font-weight: 600; color: #f5f5f7; margin-bottom: 14px; }
.footer-col p { font-size: 0.85rem; color: #a1a1a6; line-height: 1.9; }
.footer-col nav a { display: block; font-size: 0.85rem; color: #a1a1a6; margin-bottom: 8px; transition: color var(--ease); }
.footer-col nav a:hover { color: var(--btn); }
.footer-seo-text { border-top: 1px solid #2d2d2f; padding-top: 24px; margin-bottom: 20px; }
.footer-seo-text p { font-size: 0.75rem; color: #4a4a4f; line-height: 1.7; }
.footer-bottom { border-top: 1px solid #2d2d2f; padding-top: 20px; text-align: center; font-size: 0.8rem; color: #6e6e73; }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-float {
  position: fixed; bottom: 90px; left: 20px;
  z-index: 900; width: 62px; height: 62px;
  background: var(--wa); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.42);
  animation: wa-pulse 2.8s infinite;
  transition: transform var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 34px; height: 34px; fill: #fff; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.42); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7), 0 0 0 14px rgba(37,211,102,0.08); }
}

/* ============================================================
   STICKY MOBILE CTA BAR
   ============================================================ */
.sticky-cta {
  position: fixed; bottom: 0; right: 0; left: 0;
  z-index: 800; background: #fff;
  border-top: 1px solid var(--border);
  padding: 10px 14px; display: flex; gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-cta .btn { flex: 1; font-size: 0.88rem; padding: 12px 10px; border-radius: 12px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-4px); }
}
@media (max-width: 768px) {
  .steps-grid, .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 60px 0 44px; }
  .hero h1 { font-size: 1.65rem; }
  .price-card { padding: 36px 24px; }
  .price-amount { font-size: 3.5rem; }
  .article-content { padding: 28px 20px; }
  .final-cta { padding: 60px 0; }
  .header-cta span { display: none; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.5rem; }
  .price-amount { font-size: 3rem; }
  .hero-tags { gap: 8px; }
  .tag { font-size: 0.82rem; padding: 5px 12px; }
}
@media (min-width: 769px) {
  .sticky-cta { display: none; }
  .wa-float { bottom: 30px; }
  .site-footer { padding-bottom: 52px; }
}

/* ============================================================
   NAV — v2 (injected by main.js into .site-header)
   ============================================================ */
.site-nav {
  border-top: 1px solid rgba(210,210,215,0.5);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; position: relative;
}
.nav-list {
  display: flex; flex-wrap: nowrap; gap: 8px;
  list-style: none; align-items: center;
  padding: 6px 0; width: 100%;
}
.nav-list > li > a {
  display: flex; align-items: center;
  padding: 6px 14px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-sec); white-space: nowrap;
  transition: background var(--ease), color var(--ease);
  text-decoration: none;
}
.nav-list > li > a:hover,
.nav-list > li.active > a {
  background: var(--bg-main); color: var(--btn);
}

/* Page select droplist */
.nav-select-item { flex: 1; }
.nav-select {
  width: 100%; max-width: 280px;
  padding: 6px 12px; border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--bg-card); color: var(--text-sec);
  font-size: 0.84rem; font-weight: 500;
  font-family: 'Heebo', sans-serif;
  cursor: pointer; direction: rtl;
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 10px center;
  padding-left: 30px;
}
.nav-select:hover, .nav-select:focus {
  border-color: var(--btn);
  box-shadow: 0 0 0 3px rgba(0,113,227,0.12);
  outline: none;
}

/* WA nav button */
.nav-wa-item { margin-right: auto; flex-shrink: 0; }
.nav-wa-btn {
  background: var(--wa) !important; color: #fff !important;
  border-radius: 20px !important; padding: 7px 16px !important;
  font-weight: 600 !important; font-size: 0.82rem !important;
  box-shadow: 0 2px 8px rgba(37,211,102,0.28);
}
.nav-wa-btn:hover { background: #1da851 !important; transform: translateY(-1px); }

@media (max-width: 600px) {
  .nav-select { max-width: 160px; font-size: 0.78rem; }
  .nav-list > li > a { padding: 6px 10px; font-size: 0.80rem; }
  .nav-wa-btn { padding: 6px 12px !important; font-size: 0.78rem !important; }
}

/* ============================================================
   SPOTLIGHT INNER (price card + image side by side)
   ============================================================ */
.spotlight-inner {
  display: flex; align-items: stretch; gap: 28px;
  max-width: 960px; margin: 0 auto; justify-content: center;
}
/* keep price card centered & fixed width */
.price-spotlight .price-card { flex: 0 0 460px; max-width: 460px; }
.spotlight-image-slot {
  flex: 1; min-width: 240px; max-width: 380px;
  border-radius: 20px; overflow: hidden; display: flex; align-items: stretch;
}
.spotlight-image-slot img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 20px; display: block;
}
.spotlight-img-ph {
  width: 100%; min-height: 340px;
  border: 2px dashed var(--border); border-radius: 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  color: var(--text-sec); background: var(--bg-main);
  padding: 24px; text-align: center;
  transition: border-color var(--ease);
}
.spotlight-img-ph:hover { border-color: var(--btn); }
.spotlight-img-ph span { font-size: 3rem; }
.spotlight-img-ph p { font-size: 0.9rem; font-weight: 500; }
.spotlight-img-ph small { font-size: 0.78rem; }
.spotlight-img-ph a { color: var(--btn); }

@media (max-width: 768px) {
  .spotlight-inner { flex-direction: column; align-items: center; }
  .price-spotlight .price-card { flex: none; width: 100%; max-width: 100%; }
  .spotlight-image-slot { width: 100%; max-width: 100%; }
  .spotlight-img-ph { min-height: 180px; }
}

/* ============================================================
   ACCESSIBILITY WIDGET — מערכת נגישות תקנית WCAG 2.1 AA
   ============================================================ */

/* Skip to main content link */
#acc-skip {
  position: fixed; top: -80px; left: 50%; transform: translateX(-50%);
  z-index: 99999; background: #0071e3; color: #fff;
  padding: 12px 28px; border-radius: 0 0 10px 10px;
  font-size: 1rem; font-weight: 700; text-decoration: none;
  transition: top 0.2s ease; white-space: nowrap;
}
#acc-skip:focus { top: 0; outline: 3px solid #fff; outline-offset: 3px; }

/* Accessibility toggle tab — sticks to right edge */
#acc-widget {
  position: fixed; right: 0; bottom: 190px;
  z-index: 8500; display: flex; flex-direction: row-reverse;
  align-items: flex-start;
}
#acc-toggle {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 12px 10px;
  background: #0071e3; color: #fff;
  border: none; border-radius: 10px 0 0 10px;
  cursor: pointer; font-size: 0.65rem; font-weight: 600;
  writing-mode: vertical-rl; text-orientation: mixed;
  box-shadow: -3px 3px 14px rgba(0,113,227,0.35);
  transition: background 0.2s, transform 0.15s;
  min-height: 90px; white-space: nowrap;
}
#acc-toggle:hover  { background: #005bb5; transform: translateX(-3px); }
#acc-toggle:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
#acc-toggle svg    { width: 26px; height: 26px; fill: #fff; flex-shrink: 0; }
#acc-toggle-label  { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.04em; }

/* Panel */
#acc-panel {
  position: absolute; right: 44px; bottom: 0;
  width: 310px;
  background: #fff; border: 1px solid #d2d2d7;
  border-radius: 14px; box-shadow: 0 8px 36px rgba(0,0,0,0.16);
  opacity: 0; pointer-events: none;
  transform: translateX(10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  overflow: hidden; direction: rtl;
}
#acc-panel.open { opacity: 1; pointer-events: all; transform: none; }

/* Panel header */
.acc-panel-hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px 10px; background: #f5f5f7;
  border-bottom: 1px solid #e5e5ea;
}
.acc-panel-title { font-size: 0.95rem; font-weight: 700; margin: 0; color: #1d1d1f; }
.acc-panel-close {
  background: none; border: none; cursor: pointer;
  font-size: 1rem; color: #888; padding: 4px 8px;
  border-radius: 6px; transition: background 0.15s;
  line-height: 1;
}
.acc-panel-close:hover { background: #e5e5ea; color: #1d1d1f; }
.acc-panel-close:focus-visible { outline: 2px solid #0071e3; }

/* Font level bar */
.acc-font-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px 6px;
}
.acc-font-bar-label { font-size: 0.75rem; color: #555; white-space: nowrap; }
.acc-font-controls  { display: flex; gap: 6px; align-items: center; flex: 1; }
.acc-font-btn {
  background: #f0f0f5; border: 1.5px solid #d2d2d7;
  border-radius: 7px; cursor: pointer; padding: 5px 12px;
  font-size: 0.9rem; font-weight: 700; color: #1d1d1f;
  transition: background 0.15s, border-color 0.15s;
  line-height: 1;
}
.acc-font-btn:hover { background: #e0e8ff; border-color: #0071e3; }
.acc-font-btn:focus-visible { outline: 2px solid #0071e3; }
.acc-font-level {
  flex: 1; text-align: center; font-size: 0.75rem;
  font-weight: 600; color: #555;
}

/* Options grid */
.acc-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 7px; padding: 8px 12px 10px;
}
.acc-btn {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 5px; padding: 9px 6px;
  background: #f5f5f7; border: 1.5px solid transparent;
  border-radius: 10px; cursor: pointer;
  font-family: inherit; font-size: 0.69rem; font-weight: 500;
  color: #1d1d1f; text-align: center; text-decoration: none;
  transition: background 0.14s, border-color 0.14s, transform 0.1s;
  min-height: 60px;
}
.acc-btn:hover { background: #e8f0fe; border-color: #0071e3; transform: translateY(-1px); }
.acc-btn.on    { background: #0071e3; color: #fff; border-color: #005bb5; }
.acc-btn:focus-visible { outline: 2px solid #0071e3; outline-offset: 2px; }
.acc-btn-icon  { font-size: 1.4rem; line-height: 1; }
.acc-btn-lbl   { line-height: 1.25; }

/* Panel footer */
.acc-panel-ftr {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px 12px; border-top: 1px solid #e5e5ea;
  gap: 10px;
}
.acc-reset-btn {
  background: #f5f5f7; border: 1px solid #d2d2d7; border-radius: 8px;
  cursor: pointer; padding: 6px 14px; font-size: 0.78rem; font-weight: 600;
  color: #444; transition: background 0.15s;
  font-family: inherit;
}
.acc-reset-btn:hover { background: #fee2e2; border-color: #d93025; color: #d93025; }
.acc-reset-btn:focus-visible { outline: 2px solid #0071e3; }
.acc-wcag-badge {
  font-size: 0.65rem; color: #888; font-weight: 500;
  background: #f0f0f5; padding: 3px 8px; border-radius: 20px;
}

/* ── Accessibility mode overrides ── */
html.acc-f1 { font-size: 112%; }
html.acc-f2 { font-size: 125%; }
html.acc-f3 { font-size: 140%; }

/* High contrast — black background, yellow text */
html.acc-hi,
html.acc-hi body { background-color: #000 !important; color: #ff0 !important; }
html.acc-hi *    { background-color: #000 !important; color: #ff0 !important;
                   border-color: #ff0 !important; }
html.acc-hi a    { color: #0ff !important; }
html.acc-hi .btn, html.acc-hi .btn-wa, html.acc-hi button:not(.acc-toggle):not(.acc-panel-close):not(.acc-reset-btn):not(.acc-font-btn):not(.acc-btn) {
  background: #ff0 !important; color: #000 !important; }
html.acc-hi img  { filter: contrast(1.3); }

/* Inverted colors */
html.acc-inv { filter: invert(1) hue-rotate(180deg); }
html.acc-inv img, html.acc-inv video, html.acc-inv iframe {
  filter: invert(1) hue-rotate(180deg); }

/* Grayscale */
html.acc-gray { filter: grayscale(1); }

/* Underline all links */
html.acc-links a { text-decoration: underline !important; text-underline-offset: 3px !important; }

/* Stop animations */
html.acc-noanim *,
html.acc-noanim *::before,
html.acc-noanim *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
}

/* Readable font (Arial for dyslexia) */
html.acc-rfont * { font-family: Arial, Helvetica, sans-serif !important; }

/* Big cursor */
html.acc-cursor,
html.acc-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36'%3E%3Cpath d='M9 2 L9 28 L14 22 L19 33 L23 31 L18 20 L26 20 Z' fill='black' stroke='white' stroke-width='2'/%3E%3C/svg%3E") 0 0, auto !important;
}

/* Increased spacing */
html.acc-spacing * {
  letter-spacing: 0.12em !important;
  line-height: 1.9  !important;
  word-spacing: 0.16em !important;
}

/* Always-visible focus ring */
html *:focus-visible {
  outline: 3px solid #0071e3 !important;
  outline-offset: 2px !important;
}

/* Mobile adjustments */
@media (max-width: 560px) {
  #acc-panel  { width: 270px; }
  .acc-grid   { grid-template-columns: 1fr 1fr; gap: 6px; padding: 8px; }
  #acc-widget { bottom: 150px; }
  #acc-toggle { padding: 10px 8px; min-height: 80px; }
  #acc-toggle svg { width: 22px; height: 22px; }
}
