/* =============================================
   Junior Plus — Main Stylesheet
   RTL / Hebrew / Mobile-first
   Brand: Dark Brown #3D2B1F | Bronze #B99A7A | Cream #F7F5EF | Copper #B8734C
   Fonts: Heebo (Hebrew) | Montserrat (Latin)
============================================= */

/* ---- Reset + Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown:   #3D2B1F;
  --bronze:  #B99A7A;
  --copper:  #B8734C;
  --cream:   #F7F5EF;
  --beige:   #EDE8DF;
  --white:   #FFFFFF;
  --text:    #2B1F15;
  --muted:   #7A6555;
  --radius:  8px;
  --shadow:  0 2px 16px rgba(61,43,31,0.10);
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Heebo', 'Arial Hebrew', Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =============================================
   HEADER / NAVIGATION
============================================= */

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(247, 245, 239, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(185, 154, 122, 0.22);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 18px rgba(61,43,31,0.12);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.site-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--brown);
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.site-logo span {
  color: var(--bronze);
}

/* Navigation */
.main-nav {
  display: none; /* hidden on mobile, shown on desktop */
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--brown);
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.main-nav a:hover {
  background: var(--beige);
  color: var(--copper);
}

/* WhatsApp header button */
.header-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 24px;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.header-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
}

.header-whatsapp svg {
  width: 16px;
  height: 16px;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-right: auto; /* push to far right in RTL */
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 64px;
  right: 0;
  left: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(185,154,122,0.22);
  padding: 16px 20px 20px;
  transform: translateY(-120%);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.22s ease;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(61,43,31,0.10);
}

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

.mobile-nav a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--brown);
  padding: 12px 0;
  border-bottom: 1px solid rgba(185,154,122,0.14);
  transition: color var(--transition);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--copper); }

/* =============================================
   HERO SECTION
============================================= */

.hero {
  position: relative;
  min-height: max(90vh, 600px);
  max-height: 1100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;      /* transparent header overlays hero on homepage */
  padding-top: 64px;  /* push content below fixed header area */
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #5C3A1E;
  background-image:
    linear-gradient(168deg,
      rgba(36, 20, 8, 0.84) 0%,
      rgba(62, 38, 16, 0.54) 22%,
      rgba(100, 64, 26, 0.22) 46%,
      rgba(162, 124, 70, 0.08) 68%,
      rgba(210, 175, 128, 0.04) 100%
    ),
    url('../assets/hero/junior-plus-hero-room-current.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

/* Warm center-clarity vignette — center stays bright for text, edges/bottom subtly deepened */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 68% 55% at 50% 46%,
      rgba(22, 10, 2, 0.0) 0%,
      rgba(22, 10, 2, 0.26) 100%
    ),
    linear-gradient(to bottom,
      rgba(22, 10, 2, 0.04) 0%,
      rgba(22, 10, 2, 0.10) 55%,
      rgba(22, 10, 2, 0.32) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 28px 36px;
  max-width: 740px;
  width: 100%;
  direction: rtl;
}

/* ---- Hero brand mark (source: 80.png — transparent logo) ---- */
.hero-brand-mark {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 22px;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  animation: heroLogoReveal 850ms ease-out 180ms forwards;
}

.hero-brand-mark img {
  display: block;
  width: clamp(160px, 12vw, 220px);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.38));
}

.hero-headline {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(35,20,10,0.35);
  letter-spacing: -0.01em;
}

.hero-subheadline {
  font-family: 'Heebo', sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 32px;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(35,20,10,0.28);
}

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

.btn-primary {
  background: var(--bronze);
  color: var(--brown);
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--copper);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-family: 'Heebo', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 30px;
  border: 1.5px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.btn-secondary svg {
  width: 18px;
  height: 18px;
}

/* =============================================
   SECTION SHARED STYLES
============================================= */

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--brown);
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 44px;
  line-height: 1.6;
}

/* =============================================
   CATEGORY CARDS SECTION
============================================= */

.categories-section {
  padding: 72px 0 80px;
  background: var(--cream);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Last card full-width on 2-column layout — only when the count is odd */
.categories-grid .category-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.category-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--beige);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  display: block;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(61,43,31,0.18);
}

.category-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: var(--beige);
}

/* Placeholder when no image yet */
.category-card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--beige) 0%, #DDD5C6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card-img-placeholder span {
  font-size: 2.5rem;
  opacity: 0.5;
}

.category-card-body {
  padding: 16px;
}

.category-card-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brown);
  margin-bottom: 4px;
}

.category-card-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.category-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--copper);
  transition: gap var(--transition);
}

.category-card-link:hover { gap: 8px; }

/* =============================================
   WHY JUNIOR PLUS
============================================= */

.why-section {
  background: var(--brown);
  padding: 72px 0;
}

.why-section .section-title { color: var(--cream); }
.why-section .section-subtitle { color: rgba(247,245,239,0.72); }

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

.why-item {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  border: 1px solid rgba(185,154,122,0.2);
  transition: background var(--transition);
}

.why-item:hover { background: rgba(255,255,255,0.10); }

.why-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.why-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--bronze);
  margin-bottom: 6px;
}

.why-desc {
  font-size: 0.85rem;
  color: rgba(247,245,239,0.75);
  line-height: 1.5;
}

/* =============================================
   STORE INFO + MAP + WHATSAPP
============================================= */

.contact-section {
  padding: 72px 0;
  background: var(--beige);
}

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

.contact-info h3 {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--text);
  direction: rtl;
}

.contact-detail-icon {
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 30px;
  margin-top: 24px;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}

.contact-whatsapp-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.contact-whatsapp-btn svg {
  width: 22px;
  height: 22px;
}

.map-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   FOOTER
============================================= */

.site-footer {
  background: var(--brown);
  color: rgba(247,245,239,0.80);
  padding: 40px 0 28px;
  font-size: 0.88rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--cream);
}

.footer-logo span { color: var(--bronze); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}

.footer-nav a {
  color: rgba(247,245,239,0.72);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--bronze); }

.footer-contact {
  line-height: 1.8;
}

.footer-copy {
  color: rgba(247,245,239,0.45);
  font-size: 0.8rem;
  margin-top: 8px;
}

/* =============================================
   FLOATING WHATSAPP BUTTON (mobile)
============================================= */

.float-whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px; /* left in RTL = visually right-bottom in LTR */
  z-index: 900;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.float-whatsapp svg { width: 28px; height: 28px; }

/* =============================================
   RESPONSIVE — TABLET + DESKTOP
============================================= */

@media (min-width: 640px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .categories-grid .category-card:last-child:nth-child(odd) {
    grid-column: auto; /* reset on tablet */
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 900px) {
  /* Show desktop nav, hide hamburger */
  .main-nav { display: flex; }
  .hamburger { display: none; }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .categories-grid .category-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .float-whatsapp { display: none; } /* desktop has header button */
}

@media (min-width: 1200px) {
  .hero-headline { font-size: 3.4rem; }

  .why-grid { gap: 32px; }
}

/* =============================================
   HERO — MOBILE COMPOSITION
   Keep center zone visible on narrow screens
============================================= */

@media (max-width: 639px) {
  .hero {
    min-height: max(88vh, 560px);
    max-height: 860px;
    padding-top: 56px;
  }

  .hero-content {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-brand-mark {
    margin-bottom: 20px;
  }

  .hero-headline {
    font-size: clamp(1.55rem, 7.5vw, 2rem);
    margin-bottom: 10px;
    line-height: 1.28;
  }

  .hero-subheadline {
    font-size: 0.88rem;
    margin-bottom: 26px;
    line-height: 1.55;
  }

  .hero-ctas { flex-direction: column; align-items: center; gap: 14px; margin-top: 26px; }

  .btn-primary, .btn-secondary { width: 100%; max-width: 260px; justify-content: center; }
}

/* Mobile — dedicated portrait crop (x=480-840, proven clean zone, 60px margin before chair) */
@media (max-width: 900px) {
  .hero {
    min-height: 92vh;
    min-height: 92svh;
  }

  .hero-bg {
    background-image:
      linear-gradient(168deg,
        rgba(36, 20, 8, 0.84) 0%,
        rgba(62, 38, 16, 0.54) 22%,
        rgba(100, 64, 26, 0.22) 46%,
        rgba(162, 124, 70, 0.08) 68%,
        rgba(210, 175, 128, 0.04) 100%
      ),
      url('../assets/hero/junior-plus-hero-mobile.jpg');
    background-size: cover;
    background-position: center 20%;
  }

  .hero-content {
    padding-top: clamp(72px, 11vh, 96px);
    padding-bottom: 36px;
    transform: translateY(-12px);
  }

  .hero-brand-mark {
    margin: 0 auto 18px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-brand-mark img {
    width: clamp(135px, 40vw, 170px);
    filter:
      drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22))
      drop-shadow(0 2px 4px rgba(0, 0, 0, 0.16));
  }
}

/* Tablet — full-bleed image, warm atmospheric overlay only, no side darkening */
@media (min-width: 901px) and (max-width: 1024px) {
  .hero-bg {
    background-size: cover;
    background-position: center center;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(30, 22, 17, 0.18) 0%,
      rgba(30, 22, 17, 0.10) 45%,
      rgba(30, 22, 17, 0.22) 100%
    );
  }
}

/* Mobile — gentle atmospheric overlay (chair not in crop) */
@media (max-width: 900px) {
  .hero-overlay {
    background:
      radial-gradient(ellipse 68% 55% at 50% 46%,
        rgba(22, 10, 2, 0.00) 0%,
        rgba(22, 10, 2, 0.26) 100%
      ),
      linear-gradient(to bottom,
        rgba(22, 10, 2, 0.04) 0%,
        rgba(22, 10, 2, 0.10) 55%,
        rgba(22, 10, 2, 0.32) 100%
      );
  }
}

/* Desktop — full-bleed image, warm atmospheric overlay only, no side darkening */
@media (min-width: 1025px) {
  .hero-bg {
    background-size: cover;
    background-position: center center;
  }
  .hero-content {
    transform: translateY(-32px);
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(30, 22, 17, 0.18) 0%,
      rgba(30, 22, 17, 0.10) 45%,
      rgba(30, 22, 17, 0.22) 100%
    );
  }
}

/* =============================================
   CATEGORY PAGES — shared template styles
   Used by: doors.html, beds.html, mattresses.html,
            garden.html, decor.html
============================================= */

/* Page offset (fixed header) */
.page-body {
  margin-top: 64px;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  background: var(--beige);
  border-bottom: 1px solid rgba(185,154,122,0.18);
  padding: 10px 20px;
  font-size: 0.82rem;
  color: var(--muted);
  direction: rtl;
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb a { color: var(--muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--copper); }
.breadcrumb-sep { opacity: 0.5; }

/* ---- Category Intro ---- */
.category-intro {
  background: var(--cream);
  padding: 48px 20px 40px;
  text-align: center;
  border-bottom: 1px solid rgba(185,154,122,0.14);
}

.category-intro-inner {
  max-width: 720px;
  margin: 0 auto;
}

.category-intro h1 {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--brown);
  margin-bottom: 14px;
  line-height: 1.2;
}

.category-intro p {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--muted);
  line-height: 1.7;
}

/* ---- Category Benefits ---- */
.benefits-section {
  background: var(--beige);
  padding: 40px 20px;
  border-bottom: 1px solid rgba(185,154,122,0.14);
}

.benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
  text-align: center;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.benefit-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid rgba(185,154,122,0.28);
  border-radius: 40px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown);
}

.benefit-tag-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---- Product Grid ---- */
.products-section {
  padding: 48px 20px 56px;
  background: var(--cream);
}

.products-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.products-section-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.products-section-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* Product card */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(61,43,31,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(61,43,31,0.18);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: var(--beige);
}

.product-card-body {
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.product-card-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brown);
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}

.product-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 20px;
  margin-top: 4px;
  align-self: flex-start;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.product-card-cta:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
}

.product-card-cta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ---- Category CTA Section ---- */
.category-cta-section {
  background: var(--brown);
  padding: 56px 20px;
  text-align: center;
}

.category-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.category-cta-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--cream);
  margin-bottom: 10px;
}

.category-cta-sub {
  font-size: 1rem;
  color: rgba(247,245,239,0.75);
  margin-bottom: 28px;
  line-height: 1.6;
}

.category-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 32px;
  border-radius: 32px;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.30);
}

.category-cta-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.42);
}

.category-cta-btn svg { width: 22px; height: 22px; }

/* ---- Back to categories strip ---- */
.back-strip {
  background: var(--beige);
  padding: 28px 20px;
  text-align: center;
  border-top: 1px solid rgba(185,154,122,0.18);
}

.back-strip p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.back-strip-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.back-strip-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  padding: 7px 14px;
  border: 1px solid rgba(185,154,122,0.35);
  border-radius: 20px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.back-strip-links a:hover {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}

.back-strip-links a.active {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
  pointer-events: none;
}

/* =============================================
   SUBCATEGORY CHIPS — Decor page filter
============================================= */

.subcategory-chips-section {
  background: var(--cream);
  padding: 28px 20px 20px;
  border-bottom: 1px solid rgba(185,154,122,0.14);
}

.subcategory-chips-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.subcategory-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 24px;
  font-family: 'Heebo', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brown);
  background: var(--beige);
  border: 1.5px solid rgba(185,154,122,0.32);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
  user-select: none;
}

.chip:hover {
  background: var(--bronze);
  color: var(--white);
  border-color: var(--bronze);
}

.chip.active {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}

.product-card[hidden] {
  display: none;
}

/* =============================================
   CONTACT PAGE
============================================= */

/* --- Hero --- */
.contact-hero {
  background: var(--cream);
  padding: 56px 20px 52px;
  text-align: center;
  border-bottom: 1px solid rgba(185,154,122,0.14);
}

.contact-hero-inner { max-width: 660px; margin: 0 auto; }

.contact-hero h1 {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--brown);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-hero p {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.btn-wa-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 32px;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
  white-space: nowrap;
}

.btn-wa-hero:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-wa-hero svg { width: 20px; height: 20px; }

.btn-phone-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--brown);
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 13px 26px;
  border-radius: 32px;
  border: 2px solid var(--bronze);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-phone-hero:hover {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
  transform: translateY(-2px);
}

/* --- Info Cards --- */
.contact-cards-section {
  background: var(--beige);
  padding: 48px 20px;
  border-bottom: 1px solid rgba(185,154,122,0.14);
}

.contact-cards-inner { max-width: 960px; margin: 0 auto; }

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .contact-cards-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

.contact-info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 26px 16px 22px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(61,43,31,0.07);
  transition: box-shadow var(--transition);
}

.contact-info-card:hover { box-shadow: 0 4px 20px rgba(61,43,31,0.12); }

.contact-info-card-icon { font-size: 1.9rem; display: block; margin-bottom: 12px; }

.contact-info-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
  margin-bottom: 8px;
}

.contact-info-card-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.45;
}

.contact-info-card-value a { color: var(--brown); transition: color var(--transition); }
.contact-info-card-value a:hover { color: var(--copper); }

/* --- Interest chips --- */
.interest-section {
  background: var(--cream);
  padding: 56px 20px;
  border-bottom: 1px solid rgba(185,154,122,0.14);
  text-align: center;
}

.interest-section-inner { max-width: 800px; margin: 0 auto; }

.interest-section h2 {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--brown);
  margin-bottom: 8px;
}

.interest-section-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.interest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.interest-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 28px;
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown);
  background: var(--beige);
  border: 1.5px solid rgba(185,154,122,0.38);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.interest-chip:hover {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(61,43,31,0.18);
}

/* --- Form Section --- */
.form-section {
  background: var(--beige);
  padding: 56px 20px;
}

.form-section-inner { max-width: 560px; margin: 0 auto; }

.form-section h2 {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  color: var(--brown);
  margin-bottom: 8px;
  text-align: center;
}

.form-section-sub {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.6;
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-family: 'Heebo', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 7px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(185,154,122,0.38);
  border-radius: 8px;
  font-family: 'Heebo', 'Arial Hebrew', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  direction: rtl;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(185,154,122,0.15);
}

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

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--brown);
  color: var(--cream);
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 15px 24px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: background var(--transition), transform var(--transition);
}

.form-submit:hover { background: var(--copper); transform: translateY(-1px); }

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.form-success {
  display: none;
  background: #E8F8EF;
  border: 1.5px solid #25D366;
  border-radius: 10px;
  padding: 20px 24px;
  text-align: center;
  color: #1a7a40;
  font-family: 'Heebo', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 24px;
  line-height: 1.6;
}

.form-success.visible { display: block; }

/* --- Map Section --- */
.map-section {
  background: var(--cream);
  padding: 52px 20px;
  border-top: 1px solid rgba(185,154,122,0.14);
  text-align: center;
}

.map-section-inner { max-width: 900px; margin: 0 auto; }

.map-section h2 {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  color: var(--brown);
  margin-bottom: 8px;
}

.map-section-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.map-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bronze);
  color: var(--white);
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 28px;
  text-decoration: none;
  margin-bottom: 28px;
  transition: background var(--transition), transform var(--transition);
}

.map-nav-btn:hover { background: var(--copper); transform: translateY(-1px); }

.map-placeholder-block {
  width: 100%;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, var(--beige) 0%, #DDD5C6 100%);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px dashed rgba(185,154,122,0.4);
  padding: 24px;
}

.map-pin { font-size: 2.4rem; opacity: 0.55; }

.map-placeholder-address {
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
}

.map-placeholder-note {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.5;
}

/* Map iframe embed */
.map-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(185,154,122,0.22);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  margin-top: 4px;
}

.map-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 600px) {
  .map-embed-wrap { aspect-ratio: 4 / 3; }
}

/* --- Final CTA Strip --- */
.final-cta-strip {
  background: var(--brown);
  padding: 60px 20px;
  text-align: center;
}

.final-cta-strip-inner { max-width: 640px; margin: 0 auto; }

.final-cta-strip h2 {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  color: var(--cream);
  margin-bottom: 12px;
}

.final-cta-strip p {
  font-size: 1rem;
  color: rgba(247,245,239,0.76);
  line-height: 1.7;
  margin-bottom: 32px;
}

.final-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-strip-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 24px;
  border-radius: 28px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-strip-wa:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-strip-wa svg { width: 18px; height: 18px; }

.btn-strip-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  color: var(--cream);
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 22px;
  border-radius: 28px;
  border: 1.5px solid rgba(247,245,239,0.38);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-strip-phone:hover { background: rgba(255,255,255,0.20); transform: translateY(-2px); }

.btn-strip-cats {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: rgba(247,245,239,0.65);
  font-family: 'Heebo', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 18px;
  border-radius: 28px;
  border: 1.5px solid rgba(247,245,239,0.20);
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn-strip-cats:hover { color: var(--cream); border-color: rgba(247,245,239,0.50); }

/* =============================================
   PHASE 2 — DESIGN POLISH
   Applied: 2026-06-19  |  CSS-only, no JS changes
============================================= */

/* ---- Active desktop nav state ---- */
.main-nav a[aria-current="page"] {
  color: var(--copper);
  font-weight: 700;
  background: rgba(184,115,76,0.08);
  position: relative;
}

.main-nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--bronze);
  border-radius: 1px;
}

/* ---- Active mobile nav state ---- */
.mobile-nav a[aria-current="page"] {
  color: var(--copper);
  font-weight: 700;
}

/* ---- Section title — position context + bronze accent bar ---- */
.section-title {
  position: relative;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 2px;
  background: var(--bronze);
  border-radius: 1px;
}

/* ---- Products section title — right-aligned accent (RTL) ---- */
.products-section-title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 12px;
}

.products-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 2px;
  background: var(--bronze);
  border-radius: 1px;
}

/* ---- Tighter letter-spacing on large headings ---- */
.hero-headline {
  letter-spacing: -0.02em;
}

.category-intro h1 {
  letter-spacing: -0.02em;
}

/* ---- Shimmer animation for image loading state ---- */
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---- Product card image zoom on hover ---- */
.product-card-img {
  transition: transform 0.45s ease;
  background: linear-gradient(90deg, var(--beige) 0%, #DDD5C6 50%, var(--beige) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.8s ease-in-out infinite;
}

.product-card:hover .product-card-img {
  transform: scale(1.04);
}

/* ---- Category card image zoom on hover ---- */
.category-card-img {
  transition: transform 0.45s ease;
  background: linear-gradient(90deg, var(--beige) 0%, #DDD5C6 50%, var(--beige) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.8s ease-in-out infinite;
}

.category-card:hover .category-card-img {
  transform: scale(1.04);
}

/* ---- Contact info card — lift on hover ---- */
.contact-info-card {
  transition: box-shadow var(--transition), transform var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-3px);
}

/* ---- Why item — hover lift ---- */
.why-item {
  transition: background var(--transition), transform var(--transition);
}

.why-item:hover {
  transform: translateY(-2px);
}

/* ---- Back strip links — lift on hover ---- */
.back-strip-links a {
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
}

.back-strip-links a:hover {
  transform: translateY(-1px);
}

/* ---- Header WA button — shadow on hover ---- */
.header-whatsapp:hover {
  box-shadow: 0 4px 14px rgba(37,211,102,0.30);
}

/* ---- Hero CTAs — shadow on hover ---- */
.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(184,115,76,0.28);
}

.btn-secondary:hover {
  box-shadow: 0 4px 14px rgba(255,255,255,0.10);
}

/* ---- Product card CTA — shadow on hover ---- */
.product-card-cta:hover {
  box-shadow: 0 4px 12px rgba(37,211,102,0.28);
}

/* ---- Category CTA button — full transition ---- */
.category-cta-btn {
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

/* ---- Active chip — subtle shadow ---- */
.chip.active {
  box-shadow: 0 2px 8px rgba(61,43,31,0.18);
}

/* ---- Interest chip — lift shadow on hover ---- */
.interest-chip:hover {
  box-shadow: 0 6px 18px rgba(61,43,31,0.20);
}

/* ---- Focus rings — brand-consistent keyboard navigation ---- */
a:focus-visible,
button:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Form fields: use box-shadow focus (they already have border+shadow) */
.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(185,154,122,0.20);
}

/* ---- Footer — desktop 3-column layout ---- */
@media (min-width: 900px) {
  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: start;
    padding: 0 40px;
    gap: 20px;
  }

  .footer-logo {
    flex-shrink: 0;
    font-size: 1.35rem;
  }

  .footer-nav {
    flex: 1;
    justify-content: center;
    gap: 6px 22px;
    margin: 0 24px;
  }

  .footer-contact {
    flex-shrink: 0;
    line-height: 1.8;
  }

  .footer-copy {
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid rgba(185,154,122,0.14);
    margin-top: 0;
    text-align: center;
  }
}

/* ---- Reduced motion — disable all transitions + animations ---- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .product-card:hover,
  .product-card:hover .product-card-img,
  .category-card:hover,
  .category-card:hover .category-card-img,
  .contact-info-card:hover,
  .why-item:hover,
  .back-strip-links a:hover,
  .btn-primary:hover,
  .btn-secondary:hover,
  .header-whatsapp:hover,
  .category-cta-btn:hover,
  .interest-chip:hover,
  .btn-wa-hero:hover,
  .btn-phone-hero:hover,
  .contact-whatsapp-btn:hover {
    transform: none;
  }
}

/* =============================================
   PRODUCT LIGHTBOX — Phase 5
   Applied: 2026-06-19  |  Native JS+CSS, no libraries
============================================= */

/* Overlay — always rendered; opacity + pointer-events control visibility */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(30, 18, 8, 0.80);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.lb-overlay.lb-open {
  opacity: 1;
  pointer-events: auto;
}

/* Panel */
.lb-panel {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  transform: scale(0.96) translateY(10px);
  transition: transform 0.28s ease;
  will-change: transform;
}

.lb-open .lb-panel {
  transform: scale(1) translateY(0);
}

/* Desktop: row layout — RTL auto-places image on right, info on left */
@media (min-width: 640px) {
  .lb-panel {
    flex-direction: row;
    max-height: 78vh;
  }
}

/* Close button — physical top-left (end side in RTL) */
.lb-close {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--brown);
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.lb-close:hover {
  background: var(--beige);
  transform: scale(1.08);
}

/* Image wrap */
.lb-img-wrap {
  background: var(--beige);
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: 4/3;
  width: 100%;
}

@media (min-width: 640px) {
  .lb-img-wrap {
    width: 42%;
    aspect-ratio: auto;
    align-self: stretch;
  }
}

/* Lightbox product image */
.lb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Info panel */
.lb-info {
  flex: 1;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  direction: rtl;
}

@media (min-width: 640px) {
  .lb-info {
    padding: 36px 32px;
    justify-content: center;
  }
}

/* Category label */
.lb-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
}

/* Product title */
.lb-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  color: var(--brown);
  line-height: 1.25;
  margin: 0;
}

/* Product description */
.lb-desc {
  font-size: 0.88rem;
  color: var(--text-muted, #7a6a5a);
  line-height: 1.68;
  margin: 0;
}

/* WhatsApp CTA in lightbox */
.lb-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  background: #25D366;
  color: #fff;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 22px;
  border-radius: 32px;
  margin-top: 8px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
  white-space: nowrap;
}

.lb-wa-btn:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.38);
}

.lb-wa-btn svg { flex-shrink: 0; }

/* =============================================
   HERO UPGRADE — Phase 6
   Applied: 2026-06-20  |  Homepage immersive hero
   CSS-only + vanilla JS class trigger
============================================= */

/* --- Entrance animation keyframes --- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Logo reveal — standalone, always runs (not tied to .hero-animated) */
@keyframes heroLogoReveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Reduced-motion: show logo immediately, skip animation */
@media (prefers-reduced-motion: reduce) {
  .hero-brand-mark {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* When JS adds .hero-animated, text elements animate in sequentially.
   Logo has its own standalone animation above.
   Without JS: class never fires, text stays fully visible. */
.hero-animated .hero-headline {
  opacity: 0;
  animation: heroFadeUp 0.80s ease 0.08s forwards;
}

.hero-animated .hero-subheadline {
  opacity: 0;
  animation: heroFadeUp 0.80s ease 0.34s forwards;
}

.hero-animated .hero-ctas {
  opacity: 0;
  animation: heroFadeUp 0.80s ease 0.58s forwards;
}

/* --- Homepage: transparent header over hero --- */
body.page-home .site-header {
  background: rgba(247, 245, 239, 0.0);
  border-bottom-color: rgba(185, 154, 122, 0.0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.40s ease, border-color 0.40s ease,
              box-shadow 0.40s ease, backdrop-filter 0.40s ease;
}

body.page-home .site-header.scrolled {
  background: rgba(247, 245, 239, 0.96);
  border-bottom-color: rgba(185, 154, 122, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 18px rgba(61, 43, 31, 0.12);
}

/* Logo + nav become white over dark hero */
body.page-home .site-header:not(.scrolled) .site-logo {
  color: rgba(255, 255, 255, 0.95);
}
body.page-home .site-header:not(.scrolled) .site-logo span {
  color: rgba(185, 154, 122, 0.90);
}
body.page-home .site-header:not(.scrolled) .main-nav a {
  color: rgba(255, 255, 255, 0.82);
}
body.page-home .site-header:not(.scrolled) .main-nav a:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
}
body.page-home .site-header:not(.scrolled) .hamburger span {
  background: rgba(255, 255, 255, 0.88);
}

/* --- Hero-to-categories: card overlap transition --- */
body.page-home .categories-section {
  margin-top: -44px;
  position: relative;
  z-index: 10;
  border-radius: 24px 24px 0 0;
  padding-top: 80px;
  box-shadow: 0 -6px 40px rgba(61, 43, 31, 0.14);
}

@media (max-width: 639px) {
  body.page-home .categories-section {
    margin-top: -28px;
    border-radius: 18px 18px 0 0;
    padding-top: 68px;
  }
}

/* =============================================
   PHASE 7 — VISUAL DESIGN LAYER
   Applied: 2026-06-20
   Hero image live · WA button redesign · Icon system · Design finishing
============================================= */

/* Hero image + overlay handled by base rules (line ~212) and media query breakpoints below. */

/* ---- Header WhatsApp button — brand palette, no green ---- */
.header-whatsapp {
  background: var(--brown);
  color: var(--cream);
  border: 1.5px solid var(--brown);
  font-size: 0.80rem;
}

.header-whatsapp:hover {
  background: var(--copper);
  border-color: var(--copper);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(61, 43, 31, 0.22);
}

/* Homepage: over dark hero before scroll → ghost white button */
body.page-home .site-header:not(.scrolled) .header-whatsapp {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body.page-home .site-header:not(.scrolled) .header-whatsapp:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.60);
  box-shadow: none;
  transform: none;
}

/* ---- Product card CTA — refined, no green ---- */
.product-card-cta {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid rgba(61, 43, 31, 0.22);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 18px;
  gap: 5px;
  box-shadow: none;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
}

.product-card-cta:hover {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
  box-shadow: 0 4px 12px rgba(61, 43, 31, 0.16);
  transform: translateY(-1px);
}

.product-card-cta svg {
  opacity: 0.68;
  width: 13px;
  height: 13px;
}

.product-card-cta:hover svg { opacity: 1; }

/* ---- Contact WhatsApp button — refined, brand palette ---- */
.contact-whatsapp-btn {
  background: var(--brown);
  color: var(--cream);
  border: none;
  font-size: 0.95rem;
  padding: 12px 24px;
  box-shadow: 0 4px 16px rgba(61, 43, 31, 0.18);
}

.contact-whatsapp-btn:hover {
  background: var(--copper);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 43, 31, 0.24);
}

/* ---- Category CTA button — brand bronze (on dark bg) ---- */
.category-cta-btn {
  background: var(--bronze);
  color: var(--brown);
  font-size: 1.05rem;
  padding: 14px 30px;
  box-shadow: 0 4px 20px rgba(185, 154, 122, 0.28);
}

.category-cta-btn:hover {
  background: var(--cream);
  color: var(--brown);
  box-shadow: 0 6px 28px rgba(185, 154, 122, 0.36);
  transform: translateY(-2px);
}

/* ---- Contact page hero WA button — brand palette ---- */
.btn-wa-hero {
  background: var(--brown);
  color: var(--cream);
  box-shadow: 0 4px 16px rgba(61, 43, 31, 0.20);
}

.btn-wa-hero:hover {
  background: var(--copper);
  box-shadow: 0 6px 20px rgba(61, 43, 31, 0.26);
  transform: translateY(-2px);
}

/* ---- Footer strip WA button — bronze on dark bg ---- */
.btn-strip-wa {
  background: var(--bronze);
  color: var(--brown);
  font-weight: 700;
}

.btn-strip-wa:hover {
  background: var(--cream);
  color: var(--brown);
  transform: translateY(-2px);
}

/* ---- Lightbox WA button — brand palette ---- */
.lb-wa-btn {
  background: var(--brown);
  color: var(--cream);
  box-shadow: 0 4px 16px rgba(61, 43, 31, 0.18);
}

.lb-wa-btn:hover {
  background: var(--copper);
  box-shadow: 0 6px 20px rgba(61, 43, 31, 0.22);
  transform: translateY(-1px);
}

/* ---- Why icons — premium circular container for SVG ---- */
.why-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: rgba(185, 154, 122, 0.13);
  border: 1px solid rgba(185, 154, 122, 0.28);
  border-radius: 50%;
  color: var(--bronze);
  font-size: 0; /* hide emoji fallback; SVG controlled via svg rule */
}

.why-icon svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ---- Why item — cleaner border ---- */
.why-item {
  border: 1px solid rgba(185, 154, 122, 0.14);
}

/* ---- Contact detail icons — consistent sizing ---- */
.contact-detail-icon {
  font-size: 1rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
  opacity: 0.78;
  margin-top: 2px;
}

/* ---- Contact info card icons — circular container ---- */
.contact-info-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  background: var(--beige);
  border: 1px solid rgba(185, 154, 122, 0.20);
  border-radius: 50%;
  font-size: 1.4rem;
}

/* ---- Category card link — refined ---- */
.category-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--copper);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition), color var(--transition);
}

.category-card-link:hover { gap: 9px; color: var(--brown); }

/* ---- Product card body — tighter refinement ---- */
.product-card-body {
  padding: 14px 14px 18px;
}

/* ---- Reduced motion: cover new hover transforms ---- */
@media (prefers-reduced-motion: reduce) {
  .product-card-cta:hover,
  .contact-whatsapp-btn:hover,
  .category-cta-btn:hover,
  .btn-wa-hero:hover,
  .btn-strip-wa:hover,
  .lb-wa-btn:hover,
  .header-whatsapp:hover {
    transform: none;
  }
}

/* =============================================
   PHASE 8 — LEGAL & COMPLIANCE
   Applied: 2026-06-20
   Accessibility statement · Privacy policy · Footer legal links
============================================= */

/* ---- Footer legal links row ---- */
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid rgba(185, 154, 122, 0.14);
  margin-top: 16px;
}

.footer-legal a {
  color: rgba(247, 245, 239, 0.52);
  font-size: 0.78rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal a:hover,
.footer-legal a:focus {
  color: var(--bronze);
  text-decoration: underline;
}

.footer-legal span {
  color: rgba(247, 245, 239, 0.22);
  font-size: 0.78rem;
}

/* ---- Legal pages (accessibility / privacy) ---- */
.legal-page {
  background: var(--cream);
  padding: 48px 20px 80px;
}

.legal-page-inner {
  max-width: 720px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  color: var(--brown);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.legal-page-date {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brown);
  margin-top: 36px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(185, 154, 122, 0.22);
}

.legal-page p {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-page ul {
  list-style: disc;
  padding-right: 22px;
  margin-bottom: 12px;
}

.legal-page ul li {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 4px;
}

.legal-page a {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page a:hover {
  color: var(--brown);
}

.legal-contact-block {
  background: var(--beige);
  border: 1px solid rgba(185, 154, 122, 0.24);
  border-radius: 10px;
  padding: 20px 22px;
  margin-top: 12px;
  margin-bottom: 16px;
}

.legal-contact-block p {
  margin-bottom: 4px;
}

.legal-contact-block strong {
  color: var(--brown);
  font-weight: 700;
}

/* =============================================
   PHASE 8.1 — MEDIUM ACCESSIBILITY GAPS
   Applied: 2026-06-20
   Skip link · aria-pressed on decor filter
============================================= */

/* ---- Skip-to-content link ---- */
.skip-link {
  position: absolute;
  top: -100%;
  right: 0;
  left: 0;
  z-index: 9999;
  display: block;
  padding: 14px 20px;
  background: var(--brown);
  color: var(--cream);
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--bronze);
  outline-offset: -2px;
}

/* =============================================
   BENEFIT CARDS — Phase 10 Upgrade
   Replaces emoji pill strips on all 5 category pages
   Old classes (.benefits-list, .benefit-tag, etc.) kept as dead code
============================================= */

/* Override old benefits-section */
.benefits-section {
  background: var(--cream);
  padding: 72px 0 80px;
  border-bottom: 1px solid rgba(185,154,122,0.12);
}

.benefits-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  text-align: center;
  margin: 0 0 14px;
}

.benefits-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--brown);
  text-align: center;
  margin: 0 0 14px;
  line-height: 1.25;
}

.benefits-intro {
  font-size: 1rem;
  color: rgba(61,43,31,0.65);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
  line-height: 1.78;
}

/* 6-column grid — 3 cards top row, 2 centered below */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.benefit-card {
  grid-column: span 2;
  background: #fff;
  border: 1px solid rgba(185,154,122,0.18);
  border-radius: 22px;
  padding: 30px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  box-shadow: 0 1px 12px rgba(61,43,31,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(61,43,31,0.11);
  border-color: rgba(185,154,122,0.36);
}

/* Center 4th and 5th cards in second row */
.benefit-card:nth-child(4) { grid-column: 2 / 4; }
.benefit-card:nth-child(5) { grid-column: 4 / 6; }

/* Icon medallion */
.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(185,154,122,0.10);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--bronze);
  flex-shrink: 0;
  transition: background 0.22s ease, color 0.22s ease;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
}

.benefit-card:hover .benefit-icon {
  background: rgba(61,43,31,0.08);
  color: var(--brown);
}

.benefit-card-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brown);
  margin: 0 0 8px;
  line-height: 1.3;
}

.benefit-card-text {
  font-size: 0.875rem;
  color: rgba(61,43,31,0.60);
  line-height: 1.72;
  margin: 0;
  flex: 1;
}

/* Tablet: 2 per row */
@media (max-width: 960px) {
  .benefits-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .benefit-card { grid-column: span 2; }
  .benefit-card:nth-child(4) { grid-column: span 2; }
  .benefit-card:nth-child(5) { grid-column: 2 / 4; }
}

/* Mobile: 1 per row */
@media (max-width: 600px) {
  .benefits-section { padding: 56px 0 60px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 12px; }
  .benefit-card,
  .benefit-card:nth-child(4),
  .benefit-card:nth-child(5) { grid-column: 1; }
  .benefit-card { padding: 24px 20px 22px; border-radius: 18px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .benefit-card:hover { transform: none; }
  .benefit-card:hover .benefit-icon { transition: none; }
}

/* =============================================
   INSPIRATION HOME SECTION — Phase 9
   Inserted between categories and why-section
============================================= */

#home-inspiration {
  scroll-margin-top: 80px;
}

.insp-home-section {
  padding: 80px 0 88px;
  background: #F0EDE3;
  position: relative;
}

.insp-home-section::before {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  background: var(--bronze);
  margin: 0 auto 32px;
}

.insp-home-section .section-title {
  margin-bottom: 14px;
}

.insp-home-section .section-subtitle {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 52px;
  font-size: 1.02rem;
  line-height: 1.78;
}

.insp-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

/* --- Card --- */
.insp-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(61,43,31,0.08), 0 1px 4px rgba(61,43,31,0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}

.insp-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 40px rgba(61,43,31,0.14), 0 2px 8px rgba(61,43,31,0.07);
}

/* --- Image wrap --- */
.insp-card-img-link {
  display: block;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  aspect-ratio: 4 / 5;
  text-decoration: none;
}

.insp-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.insp-card:hover .insp-card-img {
  transform: scale(1.04);
}

/* --- Card body --- */
.insp-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.insp-card-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--bronze);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.insp-card-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--brown);
  margin: 0 0 10px;
  line-height: 1.3;
}

.insp-card-tagline {
  font-size: 0.93rem;
  font-weight: 500;
  font-style: italic;
  color: var(--bronze);
  margin: 0 0 14px;
  line-height: 1.55;
}

.insp-card-text {
  font-size: 0.9rem;
  color: rgba(61,43,31,0.70);
  line-height: 1.8;
  margin: 0 0 24px;
  flex: 1;
}

.insp-card-cta {
  display: inline-block;
  font-family: 'Heebo', sans-serif;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1.5px solid var(--bronze);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
  align-self: flex-start;
}

.insp-card-cta:hover {
  color: var(--bronze);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .insp-home-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .insp-card:last-child {
    grid-column: 1 / -1;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .insp-home-section {
    padding: 60px 0 64px;
  }
  .insp-home-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .insp-card:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
  .insp-card-img-link {
    aspect-ratio: 4 / 3;
  }
  .insp-card-body {
    padding: 20px 20px 24px;
  }
}

/* Reduced motion: disable insp-card transitions */
@media (prefers-reduced-motion: reduce) {
  .insp-card:hover,
  .insp-card:hover .insp-card-img {
    transform: none;
  }
}

/* =============================================
   COMPACT SHOWROOM BENEFITS — Phase 11
   Replaces full-height benefit cards on all 5 category pages.
   Old .benefits-section / .benefit-card stay as dead code.
============================================= */

/* ---- Category intro: tighter vertical spacing ---- */
.category-intro {
  padding: 28px 20px 16px;
}

/* ---- Compact benefits section ---- */
.compact-benefits {
  background: var(--cream);
  padding: 36px 0 40px;
  border-bottom: 1px solid rgba(185,154,122,0.12);
}

.compact-benefits__header {
  text-align: center;
  margin-bottom: 22px;
}

.compact-benefits__eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 8px;
}

.compact-benefits__title {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: var(--brown);
  margin: 0 0 8px;
  line-height: 1.25;
}

.compact-benefits__intro {
  font-size: 0.875rem;
  color: rgba(61,43,31,0.58);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

/* 5 columns on desktop */
.compact-benefits__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

/* Horizontal card: icon (RTL start = right) + text block */
.compact-benefit-card {
  background: #fff;
  border: 1px solid rgba(185,154,122,0.15);
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  text-align: right;
  box-shadow: 0 1px 6px rgba(61,43,31,0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.compact-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(61,43,31,0.09);
  border-color: rgba(185,154,122,0.32);
}

.compact-benefit-card__icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(185,154,122,0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze);
  transition: background 0.22s ease, color 0.22s ease;
}

.compact-benefit-card__icon svg {
  width: 18px;
  height: 18px;
}

.compact-benefit-card:hover .compact-benefit-card__icon {
  background: rgba(61,43,31,0.07);
  color: var(--brown);
}

.compact-benefit-card__content {
  flex: 1;
  min-width: 0;
}

.compact-benefit-card__title {
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brown);
  margin: 2px 0 3px;
  line-height: 1.25;
}

.compact-benefit-card__text {
  font-size: 0.76rem;
  color: rgba(61,43,31,0.52);
  line-height: 1.4;
  margin: 0;
}

/* Tablet: 3 columns */
@media (max-width: 1024px) {
  .compact-benefits__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

/* Mobile: 2 columns */
@media (max-width: 600px) {
  .compact-benefits {
    padding: 28px 0 32px;
  }
  .compact-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .compact-benefit-card {
    padding: 12px 14px;
    gap: 10px;
  }
  .compact-benefit-card__icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }
}

/* Very narrow: 1 column */
@media (max-width: 380px) {
  .compact-benefits__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .compact-benefit-card:hover { transform: none; }
}

/* =============================================
   MATTRESS CATEGORY — curated 4-model presentation
============================================= */

/* Curated grid: 1 column on mobile, 2 generous columns from tablet up */
.products-grid--mattresses {
  grid-template-columns: 1fr;
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .products-grid--mattresses { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .products-grid--mattresses { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* Wide mattress renders: show whole product, never crop to portrait */
.product-card--mattress .product-card-img {
  aspect-ratio: 16/10;
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 18px 18px 6px;
}

/* Structured spec rows (card + lightbox) */
.product-specs,
.lb-specs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 2px 0 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(185,154,122,0.22);
}

.product-spec {
  display: flex;
  gap: 6px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.product-spec dt {
  font-weight: 700;
  color: var(--brown);
  white-space: nowrap;
}

.product-spec dt::after { content: ':'; }

.product-spec dd {
  color: var(--muted);
  margin: 0;
}

/* Luna Visco color variant chips */
.variant-picker {
  display: flex;
  gap: 8px;
  margin: 2px 0;
}

.variant-chip {
  padding: 6px 16px;
  font-size: 0.82rem;
}

.variant-chip:focus-visible,
.product-tech-link:focus-visible,
.lb-thumb:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

/* "מפרט טכני ומבנה המזרן" text button */
.product-tech-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  padding: 4px 0;
  font-family: 'Heebo', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--copper);
  cursor: pointer;
  align-self: flex-start;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.product-tech-link:hover { color: var(--brown); }

.product-tech-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Lightbox gallery: uncropped images + thumbnail switcher */
.lb-img-wrap { position: relative; }

.lb-img--contain {
  object-fit: contain;
  background: #fff;
}

.lb-thumbs {
  position: absolute;
  bottom: 10px;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  gap: 8px;
  padding: 6px;
  background: rgba(255,255,255,0.92);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(61,43,31,0.16);
}

.lb-thumb {
  width: 54px;
  height: 42px;
  padding: 2px;
  border: 2px solid rgba(185,154,122,0.35);
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: border-color var(--transition);
}

.lb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.lb-thumb.active { border-color: var(--brown); }

/* Wider image area while the technical infographic is shown */
@media (min-width: 640px) {
  .lb-panel--tech .lb-img-wrap { width: 62%; }
}

/* =============================================
   SOFA CATEGORY — curated 2-model presentation
============================================= */

/* Same curated grid behavior as the mattress category */
.products-grid--sofas {
  grid-template-columns: 1fr;
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .products-grid--sofas { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .products-grid--sofas { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* Sofa renders are full 4:3 room scenes — keep natural ratio, no portrait crop */
.product-card--sofa .product-card-img {
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
}

/* Short approved product headline under the name */
.product-card-tagline {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--copper);
  line-height: 1.4;
  margin: -4px 0 0;
}
