/* ═══════════════════════════════════════════════════════════════
   LUNTEX SARL — Main Stylesheet
   Design: Clean white minimalist (FashionStars-inspired)
   Fonts: Poppins (headings 600-800) + DM Sans (body 300-500)
   Colors: White #fff · Near-black #111 · Red #C0392B · Grey accents
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --red: #C0392B;
  --red-dark: #962d22;
  --navy: #1A2332;
  --white: #fff;
  --off: #f8f8f8;
  --g100: #f3f4f6;
  --g200: #e5e7eb;
  --g300: #d1d5db;
  --g400: #9ca3af;
  --g500: #6b7280;
  --g600: #4b5563;
  --g700: #374151;
  --g900: #111827;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 2px 12px rgba(0,0,0,.07);
  --shadow-md: 0 4px 24px rgba(0,0,0,.09);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.11);
  --max: 1200px;
  --trans: all .25s ease;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --mobile-tabs-h: 64px;
}

/* ── Container ──────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── Announcement Bar ───────────────────────────────────────── */
.announce-bar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-align: center;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.asep { opacity: .4; }
@media (max-width: 600px) { .asep { display: none; } .announce-bar { flex-direction: column; gap: 3px; } }

/* ── Header ─────────────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--g200);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}
.site-logo span {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .04em;
  white-space: nowrap;
}
.site-logo strong { color: var(--red); }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.dnav-link {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 500;
  color: var(--g600);
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--trans);
  letter-spacing: .02em;
  white-space: nowrap;
}
.dnav-link:hover { color: var(--red); background: #fef2f0; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 9px 18px;
  border-radius: 50px;
  white-space: nowrap;
  transition: var(--trans);
  flex-shrink: 0;
}
.header-cta:hover { background: #1ebe5d; transform: translateY(-1px); }

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .header-inner { justify-content: space-between; }
}

/* ── HERO / SLIDER ──────────────────────────────────────────── */
#hero {
  background: #fff;
}
.slider-wrap {
  position: relative;
  overflow: hidden;
  background: var(--off);
}
.slider-track {
  display: flex;
  transition: transform .55s cubic-bezier(.77, 0, .175, 1);
  will-change: transform;
}

/* Each slide: full portrait image with minimal overlay at bottom */
.slider-slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  background: var(--off);
  cursor: pointer;
}

/* Portrait image — 4:5 ratio (1080x1350) */
.slider-slide-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 80vh;
  overflow: hidden;
  position: relative;
}

@media (min-width: 900px) {
  .slider-slide-img { aspect-ratio: 16 / 9; max-height: 500px; }
}

.slider-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 7s ease;
  transform: scale(1.03);
}
.slider-slide.active .slider-slide-img img { transform: scale(1); }

.slider-slide-img-empty {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 80vh;
  background: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.15);
}
@media (min-width: 900px) { .slider-slide-img-empty { aspect-ratio: 16/9; max-height: 70vh; } }

/* Slide caption bar — below image, white bg */
.slider-slide-caption {
  padding: 16px 20px 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--g100);
}
.slider-caption-info { flex: 1; min-width: 0; }
.slider-caption-cat {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 3px;
}
.slider-caption-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--g900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.slide-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.slide-price, .slide-price-discount {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--g900);
}
.slide-price-original {
  font-size: .82rem;
  color: var(--g400);
  text-decoration: line-through;
}
.slide-price-discount { color: var(--red); }
.slide-promo-badge {
  background: var(--red);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: .04em;
}

/* Single WA devis button — clean pill */
.slide-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 10px 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--trans);
}
.slide-btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); }

@media (max-width: 480px) {
  .slider-slide-caption { flex-direction: column; align-items: flex-start; gap: 10px; }
  .slide-btn-wa { width: 100%; justify-content: center; }
  .slider-caption-name { font-size: 1rem; white-space: normal; }
}

/* Arrow controls */
.slider-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--g900);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: var(--shadow);
  transition: var(--trans);
}
.slider-arrow:hover { background: #fff; box-shadow: var(--shadow-md); transform: translateY(-50%) scale(1.06); }
.slider-prev { left: 12px; }
.slider-next { right: 12px; }

.slider-dots {
  position: absolute;
  bottom: 76px; /* above caption */
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 10;
  pointer-events: none;
}
.slider-dots button { pointer-events: all; }
.slider-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  cursor: pointer;
  transition: all .3s;
}
.slider-dot.active { background: #fff; width: 20px; border-radius: 4px; }
@media (max-width: 768px) { .slider-dots { display: none; } }

.slide-loading {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 80vh;
  background: var(--g100);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 900px) { .slide-loading { aspect-ratio: 16/9; max-height: 70vh; } }

/* Hero stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 18px 24px;
  border-bottom: 1px solid var(--g100);
  flex-wrap: wrap;
}
.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 4px 28px;
}
.hstat strong {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.hstat span { font-size: .72rem; color: var(--g500); font-weight: 400; white-space: nowrap; }
.hstat-div { width: 1px; height: 32px; background: var(--g200); flex-shrink: 0; }
@media (max-width: 480px) {
  .hstat { padding: 4px 14px; }
  .hstat strong { font-size: 1.1rem; }
  .hstat-div { height: 24px; }
}

/* Spinner */
.spin {
  width: 32px; height: 32px;
  border: 3px solid var(--g200);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.grid-loading { display: flex; align-items: center; justify-content: center; padding: 60px; grid-column: 1/-1; }

/* ── Sections ───────────────────────────────────────────────── */
.section { padding: 64px 0; }
.section-alt { background: var(--off); }
@media (max-width: 768px) { .section { padding: 44px 0; } }

.section-head { text-align: center; margin-bottom: 40px; }
.section-eyebrow {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--g900);
  letter-spacing: -.01em;
  line-height: 1.15;
}
@media (max-width: 768px) { .section-head { margin-bottom: 28px; } }

/* ── Category Tabs ──────────────────────────────────────────── */
.cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}
.filter-tab {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid var(--g200);
  background: #fff;
  color: var(--g600);
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.filter-tab:hover { border-color: var(--g400); color: var(--g900); }
.filter-tab.active { background: var(--g900); color: #fff; border-color: var(--g900); }

/* ── Search Bar ─────────────────────────────────────────────── */
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--g100);
  border: 2px solid var(--g200);
  border-radius: 50px;
  padding: 10px 18px;
  max-width: 420px;
  margin: 0 auto 36px;
  transition: var(--trans);
}
.search-bar:focus-within { border-color: var(--g400); background: #fff; }
.search-bar svg { color: var(--g400); flex-shrink: 0; }
.search-bar input { flex: 1; border: none; background: none; font-size: .9rem; color: var(--g900); }
.search-bar input::placeholder { color: var(--g400); }

/* ── Product Grid ───────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 400px)  { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* Product Card */
.product-card {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--g300); }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--g100);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--g400);
  font-size: .78rem;
}
.product-badge-wrap {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.badge { font-size: .65rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; letter-spacing: .04em; text-transform: uppercase; }
.badge-red { background: var(--red); color: #fff; }
.badge-green { background: #16a34a; color: #fff; }
.badge-gray { background: var(--g500); color: #fff; }
.badge-yellow { background: #d97706; color: #fff; }

.product-quick-actions {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--trans);
}
.product-card:hover .product-quick-actions { opacity: 1; transform: translateY(0); }
.quick-action-btn {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g700);
  box-shadow: var(--shadow);
  transition: var(--trans);
}
.quick-action-btn:hover { background: #fff; color: var(--red); }

.product-body { padding: 12px 14px 8px; flex: 1; }
.product-category { font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--red); margin-bottom: 3px; }
.product-name { font-family: var(--font-head); font-size: .92rem; font-weight: 700; color: var(--g900); margin-bottom: 4px; line-height: 1.25; }
.product-desc-short { font-size: .78rem; color: var(--g500); line-height: 1.45; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-price-row { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; margin-bottom: 6px; }
.product-price, .product-price-discount { font-family: var(--font-head); font-size: .95rem; font-weight: 700; color: var(--g900); }
.product-price-discount { color: var(--red); }
.product-price-original { font-size: .78rem; color: var(--g400); text-decoration: line-through; }
.product-swatches { display: flex; gap: 5px; margin-bottom: 6px; }
.color-swatch { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid rgba(0,0,0,.12); }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 6px; flex-wrap: wrap; }
.product-sizes { display: flex; gap: 4px; flex-wrap: wrap; }
.size-tag { font-size: .65rem; font-weight: 600; padding: 2px 6px; border: 1px solid var(--g200); border-radius: 4px; color: var(--g600); }
.product-stock { font-size: .7rem; font-weight: 600; letter-spacing: .04em; white-space: nowrap; }
.in-stock { color: #16a34a; }
.low-stock { color: #d97706; }
.out-of-stock { color: var(--g400); }

.product-footer {
  padding: 10px 14px 14px;
  border-top: 1px solid var(--g100);
}
.btn-order-product {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-head);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 9px 14px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--trans);
}
.btn-order-product:hover { background: #1ebe5d; transform: translateY(-1px); }

/* Catalogue more button */
.cat-more { text-align: center; margin-top: 40px; }
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--g900);
  border: 2px solid var(--g900);
  padding: 12px 30px;
  border-radius: 50px;
  transition: var(--trans);
}
.btn-more:hover { background: var(--g900); color: #fff; }

/* ── Trust Strip ─────────────────────────────────────────────── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--g200);
  border-bottom: 1px solid var(--g200);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid var(--g200);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 44px; height: 44px;
  background: #fef2f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.trust-item div { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong { font-family: var(--font-head); font-size: .88rem; font-weight: 700; color: var(--g900); }
.trust-item span { font-size: .76rem; color: var(--g500); }
@media (max-width: 768px) {
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--g200); padding: 18px 20px; }
  .trust-item:last-child { border-bottom: none; }
}

/* ── About ───────────────────────────────────────────────────── */
.about-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.about-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--g900);
  line-height: 1.15;
  letter-spacing: -.01em;
}
.about-h2 span { color: var(--red); }
.about-body { font-size: .96rem; color: var(--g600); line-height: 1.8; max-width: 560px; }
.about-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--g200);
  border-bottom: 1px solid var(--g200);
  width: 100%;
}
.astat { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.astat strong { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--red); }
.astat span { font-size: .78rem; color: var(--g500); font-weight: 400; }
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-size: .84rem;
  font-weight: 700;
  color: var(--g900);
  border: 2px solid var(--g900);
  padding: 12px 28px;
  border-radius: 50px;
  transition: var(--trans);
  letter-spacing: .03em;
}
.btn-outline-dark:hover { background: var(--g900); color: #fff; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 32px; } }

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cinfo-icon {
  width: 38px; height: 38px;
  background: #fef2f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 1px;
}
.cinfo-item > div { display: flex; flex-direction: column; gap: 2px; }
.cinfo-lbl { font-family: var(--font-head); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--g400); }
.cinfo-val { font-size: .88rem; color: var(--g700); }
a.cinfo-val, a > .cinfo-val { color: var(--red); font-weight: 500; }
.contact-ar {
  direction: rtl;
  font-family: 'Segoe UI', sans-serif;
  font-size: .85rem;
  color: var(--g500);
  background: #fef9ed;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 12px 16px;
  text-align: center;
}

/* Quote Card */
.quote-card {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.qcard-head { margin-bottom: 16px; }
.qcard-head h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--g900);
  margin-bottom: 4px;
}
.qcard-head p { font-size: .8rem; color: var(--g500); }

.qstep-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--g500);
  margin: 10px 0 12px;
}
.qstep-num {
  width: 20px; height: 20px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 800;
  flex-shrink: 0;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 500px) { .form-row-2 { grid-template-columns: 1fr; } }

.fgroup {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}
.fgroup label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--g500);
}
.fgroup input, .fgroup textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--g200);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--g900);
  background: #fff;
  transition: var(--trans);
}
.fgroup input:focus, .fgroup textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,.08); }
.fgroup textarea { resize: vertical; min-height: 80px; }

/* Product search in quote */
.qsearch-wrap {
  position: relative;
  margin-bottom: 6px;
}
.qsearch-wrap svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--g400);
  pointer-events: none;
}
.quote-product-search {
  width: 100%;
  padding: 10px 14px 10px 36px;
  border: 1.5px solid var(--g200);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--g900);
  background: #fff;
  box-sizing: border-box;
  transition: var(--trans);
}
.quote-product-search:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,.08); outline: none; }

.quote-product-results {
  display: none;
  border: 1.5px solid var(--g200);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-md);
  max-height: 240px;
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 100%;
  margin-bottom: 10px;
}
.quote-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--g100);
  transition: background .15s;
}
.quote-result-item:last-child { border-bottom: none; }
.quote-result-item:hover { background: var(--g100); }
.quote-result-item.in-cart { background: #f0fdf4; }
.quote-result-item img, .quote-result-img-empty {
  width: 40px; height: 40px;
  border-radius: 7px;
  object-fit: cover;
  border: 1px solid var(--g200);
  background: var(--g100);
  flex-shrink: 0;
}
.quote-result-img-empty { display: flex; align-items: center; justify-content: center; color: var(--g300); }
.quote-result-info { flex: 1; min-width: 0; }
.quote-result-name { font-weight: 600; font-size: .84rem; color: var(--g900); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.quote-result-cat { font-size: .72rem; color: var(--g400); }
.quote-result-add {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--red); color: #fff;
  border: none; border-radius: 6px; padding: 6px 11px;
  font-size: .74rem; font-weight: 700; cursor: pointer;
  white-space: nowrap; flex-shrink: 0; transition: var(--trans);
}
.quote-result-add.added { background: #16a34a; }
.quote-result-add:hover { filter: brightness(1.1); }
.quote-no-results { padding: 16px; text-align: center; color: var(--g400); font-size: .84rem; }

/* Cart */
.qcart { border: 1.5px solid var(--g200); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 8px; }
.qcart-head {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 12px;
  background: var(--g100);
  border-bottom: 1px solid var(--g200);
  font-family: var(--font-head);
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--g600);
}
.quote-cart-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--g100);
}
.quote-cart-item:last-child { border-bottom: none; }
.quote-cart-img {
  width: 38px; height: 38px;
  border-radius: 7px; object-fit: cover;
  border: 1px solid var(--g200); flex-shrink: 0;
}
.quote-cart-img--empty { background: var(--g100); display: flex; align-items: center; justify-content: center; }
.quote-cart-info { flex: 1; min-width: 0; }
.quote-cart-name { font-weight: 600; font-size: .82rem; color: var(--g900); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.quote-cart-cat { font-size: .72rem; color: var(--g400); }
.quote-cart-qty { display: flex; align-items: center; gap: 3px; flex-shrink: 0; }
.qty-btn {
  width: 26px; height: 26px;
  border: 1.5px solid var(--g200);
  border-radius: 6px; background: #fff;
  color: var(--g900); font-size: .9rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--trans); line-height: 1;
}
.qty-btn:hover { border-color: var(--red); color: var(--red); }
.qty-input {
  width: 40px; height: 26px;
  border: 1.5px solid var(--g200); border-radius: 6px;
  text-align: center; font-size: .84rem; font-weight: 700; color: var(--g900);
  -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button, .qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.qty-input:focus { border-color: var(--red); outline: none; }
.quote-cart-remove { background: none; border: none; color: var(--g300); cursor: pointer; padding: 3px; border-radius: 5px; display: flex; align-items: center; transition: var(--trans); flex-shrink: 0; }
.quote-cart-remove:hover { color: var(--red); }

/* WA send button */
.btn-wa-send {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px 18px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #fff; border: none; border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700; font-size: .9rem; letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; transition: var(--trans); margin-top: 4px;
  box-shadow: 0 4px 14px rgba(37,211,102,.22);
}
.btn-wa-send:hover { transform: translateY(-2px); box-shadow: 0 7px 20px rgba(37,211,102,.35); }
.qwa-note { text-align: center; font-size: .74rem; color: var(--g400); margin-top: 8px; }

/* ── Map ─────────────────────────────────────────────────────── */
.map-card {
  border: 1px solid var(--g200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-iframe { width: 100%; height: 380px; display: block; border: none; }
@media (max-width: 600px) { .map-iframe { height: 260px; } }
.map-btns {
  display: flex; gap: 10px;
  padding: 16px 20px;
  background: #fff;
  border-top: 1px solid var(--g100);
  flex-wrap: wrap;
}
.map-btn-outline, .map-btn-dark {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  padding: 9px 18px; border-radius: 50px; transition: var(--trans);
  white-space: nowrap;
}
.map-btn-outline { border: 2px solid var(--g300); color: var(--g700); }
.map-btn-outline:hover { border-color: var(--g700); color: var(--g900); }
.map-btn-dark { background: var(--g900); color: #fff; }
.map-btn-dark:hover { background: var(--red); }

/* ── Footer ─────────────────────────────────────────────────── */
#footer {
  background: var(--g900);
  color: rgba(255,255,255,.7);
  padding-top: 56px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand-col { display: flex; flex-direction: column; gap: 12px; }
.footer-logo-row {
  display: flex; align-items: center; gap: 10px;
}
.footer-logo-row img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.footer-logo-row span { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: #fff; letter-spacing: .04em; }
.footer-logo-row strong { color: var(--red); }
.footer-desc { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.footer-desc-ar { direction: rtl; font-family: 'Segoe UI', sans-serif; font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-socials { display: flex; gap: 8px; margin-top: 4px; }
.fsoc {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--trans);
}
.fsoc:hover { background: rgba(255,255,255,.15); color: #fff; }
.fsoc-wa { background: rgba(37,211,102,.15); color: #25d366; }
.fsoc-wa:hover { background: #25d366; color: #fff; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li { font-size: .84rem; }
.footer-col a { color: rgba(255,255,255,.6); transition: var(--trans); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 24px;
  text-align: center;
  font-size: .76rem;
  color: rgba(255,255,255,.3);
}
/* footer needs padding at bottom on mobile for tab nav */
@media (max-width: 768px) { #footer { padding-bottom: calc(var(--mobile-tabs-h) + 12px); } }

/* ── Mobile Bottom Tab Nav ───────────────────────────────────── */
.mobile-tabs {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: #fff;
  border-top: 1px solid var(--g200);
  height: var(--mobile-tabs-h);
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  align-items: stretch;
}
@media (max-width: 768px) { .mobile-tabs { display: flex; } }

.mtab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--g400);
  font-family: var(--font-head);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: color .2s;
  padding: 8px 4px;
  -webkit-tap-highlight-color: transparent;
}
.mtab svg { transition: var(--trans); }
.mtab.active { color: var(--red); }
.mtab.active svg { stroke: var(--red); }
.mtab:not(.active):hover { color: var(--g600); }

/* Body padding for mobile nav */
@media (max-width: 768px) { body { padding-bottom: var(--mobile-tabs-h); } }

/* ── Product Modal ───────────────────────────────────────────── */
#product-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,.6);
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(4px);
}
#product-modal.open { display: flex; }

.modal-box {
  background: #fff;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 860px;
  width: 100%;
  max-height: calc(100vh - 32px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: modalIn .3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(.96) translateY(12px); } to { opacity: 1; transform: none; } }

.modal-gallery { display: flex; overflow: hidden; }
.modal-thumbnails {
  width: 72px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 8px;
  overflow-y: auto;
  background: var(--g100);
  flex-shrink: 0;
}
.modal-thumb { border-radius: 6px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: var(--trans); }
.modal-thumb.active { border-color: var(--red); }
.modal-thumb img { width: 52px; height: 52px; object-fit: cover; display: block; }

.modal-main-area { position: relative; flex: 1; background: var(--g100); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.modal-main-img { width: 100%; height: 100%; object-fit: contain; }
.modal-close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--g700);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); transition: var(--trans);
}
.modal-close:hover { background: #fff; color: var(--red); }
.modal-share-btn {
  position: absolute; top: 10px; right: 52px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--g700);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); transition: var(--trans);
}
.modal-share-btn:hover { background: #fff; color: var(--red); }
.modal-share-menu {
  display: none;
  position: absolute; top: 50px; right: 10px; z-index: 10;
  background: #fff; border-radius: 10px;
  padding: 6px; box-shadow: var(--shadow-md);
  min-width: 160px; flex-direction: column; gap: 2px;
}
.modal-share-menu.open { display: flex; }
.share-option {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 12px; border-radius: 7px; font-size: .82rem; color: var(--g700);
  background: none; border: none; cursor: pointer; width: 100%; text-align: left; transition: background .15s;
}
.share-option:hover { background: var(--g100); }

.modal-info { padding: 24px 20px; overflow-y: auto; display: flex; flex-direction: column; }
.modal-category { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.modal-name { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--g900); margin-bottom: 10px; }
.modal-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.modal-price, .modal-price-discount { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--g900); }
.modal-price-discount { color: var(--red); }
.modal-price-original { font-size: .88rem; color: var(--g400); text-decoration: line-through; }
.modal-desc { font-size: .86rem; color: var(--g600); line-height: 1.65; margin-bottom: 16px; }
.modal-option-label { font-family: var(--font-head); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--g500); margin-bottom: 8px; }
.modal-sizes { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.modal-size-btn { padding: 5px 12px; border: 2px solid var(--g200); border-radius: 6px; font-size: .8rem; font-weight: 600; color: var(--g700); cursor: pointer; transition: var(--trans); }
.modal-size-btn:hover { border-color: var(--g500); }
.modal-size-btn.selected { border-color: var(--red); color: var(--red); background: #fef2f0; }
.modal-colors { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.modal-color-btn { width: 26px; height: 26px; border-radius: 50%; border: 2px solid rgba(0,0,0,.1); cursor: pointer; transition: var(--trans); }
.modal-color-btn.selected { outline: 3px solid var(--red); outline-offset: 2px; }
.modal-color-btn:hover { transform: scale(1.15); }

.btn.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff;
  font-family: var(--font-head);
  font-size: .84rem; font-weight: 700; letter-spacing: .04em;
  padding: 12px 20px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; transition: var(--trans);
}
.btn.btn-primary:hover { background: #1ebe5d; }

@media (max-width: 700px) {
  .modal-box { grid-template-columns: 1fr; max-height: 96svh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .modal-gallery { height: 280px; }
  .modal-thumbnails { display: none; }
}

/* ── Toast ───────────────────────────────────────────────────── */
#toast-container {
  position: fixed; bottom: calc(var(--mobile-tabs-h) + 16px); left: 50%; transform: translateX(-50%);
  z-index: 1000; display: flex; flex-direction: column; gap: 8px; align-items: center; pointer-events: none;
}
@media (min-width: 769px) { #toast-container { bottom: 24px; } }
.toast {
  background: var(--g900); color: #fff;
  font-family: var(--font-head); font-size: .8rem; font-weight: 600;
  padding: 10px 18px; border-radius: 50px;
  box-shadow: var(--shadow-md);
  animation: toastIn .3s ease;
  white-space: nowrap;
}
.toast.success { background: #16a34a; }
.toast.error { background: var(--red); }
@keyframes toastIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ── Promo section (kept minimal, hidden on homepage, used only if promo grid exists) */
.promo-section { display: none; }
.promo-grid { display: none; }
.promo-banners { display: none; }

/* ── empty state ─────────────────────────────────────────────── */
.empty-state {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 60px 20px; color: var(--g400); text-align: center;
}
.empty-state h3 { font-family: var(--font-head); font-size: 1rem; color: var(--g600); }
.empty-state p { font-size: .85rem; }


/* ── About Shop Background & Animations ────────────────────── */
.about-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  z-index: 1;
  transition: opacity 1s ease;
  opacity: 0;
}
.about-bg.loaded { opacity: 1; }

.about-wrap {
  position: relative;
  z-index: 2;
  color: #fff;
}
#about.section-alt { background: #1a1a1a; } /* fallback dark when bg loading */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ── Quote Channel Selector ───────────────────────────────── */
.qchannel-selector {
  background: var(--g100);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid var(--g200);
}
.qchannel-opt {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 9px;
  transition: var(--trans);
  font-size: .82rem;
  font-weight: 700;
  color: var(--g500);
}
.qchannel-opt:has(input:checked) {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.qchannel-opt input { display: none; }

/* ── Video Gallery ───────────────────────────────────────────── */
.video-grid-public {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.video-item {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  position: relative;
}

.video-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.video-player-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

.video-player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-item:hover .video-player-wrap video {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background 0.3s ease;
}

.video-overlay:hover {
  background: rgba(0,0,0,0.1);
}

.play-icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.video-item:hover .play-icon-circle {
  transform: scale(1.1);
  background: var(--white);
}

.video-info {
  padding: 24px;
  text-align: center;
}

.video-info h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 5px;
}

.video-info p {
  font-size: 0.85rem;
  color: var(--gray-400);
}

@media (max-width: 768px) {
  .video-grid-public {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
