/* ═══════════════════════════════════
   ENDUROAD — STYLE SHEET
   Primary: #FF6B00  Dark: #1A1A1A
   Grey: #333  White: #FFF  BG: #F5F5F5
═══════════════════════════════════ */

:root {
  --orange: #FF6B00;
  --orange-dark: #e05d00;
  --dark: #1A1A1A;
  --grey: #333333;
  --white: #FFFFFF;
  --bg-grey: #F5F5F5;
  --success: #22C55E;
  --danger: #EF4444;
  --nav-h: 68px;
  --announce-h: 36px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--grey);
  background: var(--white);
  padding-top: calc(var(--nav-h) + var(--announce-h));
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-grey); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ════════════════════════════════
   ANNOUNCE BAR
════════════════════════════════ */
.announce-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--announce-h);
  background: var(--dark);
  overflow: hidden;
  display: flex; align-items: center;
}
.announce-track {
  display: flex; gap: 28px; align-items: center;
  white-space: nowrap;
  font-family: var(--font-title); font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.85);
  animation: marqueeScroll 28s linear infinite;
}
.announce-track .dot { color: var(--orange); font-size: 14px; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.navbar {
  position: fixed; top: var(--announce-h); left: 0; right: 0; z-index: 190;
  height: var(--nav-h);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  height: 100%;
  display: flex; align-items: center; gap: 0;
}
.nav-logo {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 900;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-slashes {
  display: flex;
  gap: 4px;
}
.slash {
  width: 8px;
  height: 22px;
  transform: skewX(-25deg);
  border-radius: 1px;
}
.brand-text {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 900;
  font-style: italic;
  color: var(--dark);
  letter-spacing: 0.5px;
}
.footer-logo .brand-text {
  color: #fff;
}
.logo-o { color: var(--orange); }
.nav-links {
  display: flex; align-items: center; gap: 4px; flex: 1;
}
.nav-link {
  font-family: var(--font-title); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--grey); padding: 8px 12px; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--orange); background: rgba(255,107,0,0.07); }
.nav-link.active { color: var(--orange); }
.nav-right {
  display: flex; align-items: center; gap: 8px; margin-left: auto;
}
.lang-toggle {
  font-family: var(--font-title); font-size: 11px; font-weight: 700;
  background: var(--bg-grey); border: none; border-radius: 6px;
  padding: 6px 10px; cursor: pointer; color: var(--dark);
  letter-spacing: 0.04em; transition: background 0.2s;
}
.lang-toggle:hover { background: #e8e8e8; }
.currency-sel {
  font-family: var(--font-title); font-size: 11px; font-weight: 700;
  background: var(--bg-grey); border: none; border-radius: 6px;
  padding: 6px 8px; cursor: pointer; color: var(--dark);
  appearance: none; -webkit-appearance: none;
}
.lang-sel {
  font-family: var(--font-title); font-size: 11px; font-weight: 700;
  background: var(--bg-grey); border: none; border-radius: 6px;
  padding: 6px 8px; cursor: pointer; color: var(--dark);
  appearance: none; -webkit-appearance: none;
}
.icon-btn {
  width: 38px; height: 38px; border-radius: 8px; border: none;
  background: transparent; cursor: pointer; color: var(--grey);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s; position: relative;
}
.icon-btn:hover { background: var(--bg-grey); color: var(--orange); }
.cart-badge {
  position: absolute; top: 4px; right: 4px;
  background: var(--orange); color: white;
  font-size: 9px; font-weight: 800; width: 16px; height: 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px; margin-right: 8px;
}
.hamburger span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: calc(var(--nav-h) + var(--announce-h));
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  padding: 20px; gap: 4px; overflow-y: auto;
  z-index: 189; border-top: 1px solid rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-title); font-size: 16px; font-weight: 700;
  letter-spacing: 0.04em; color: var(--dark);
  padding: 14px 16px; border-radius: 8px; border-bottom: 1px solid var(--bg-grey);
}
.mobile-menu a:hover { background: var(--bg-grey); }
.mm-bottom { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--bg-grey); }

/* ════════════════════════════════
   BUTTONS
════════════════════════════════ */
.btn-primary {
  background: var(--orange); color: white;
  font-family: var(--font-title); font-size: 13px; font-weight: 800;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: none; border-radius: var(--radius); padding: 12px 24px;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent; color: var(--orange);
  font-family: var(--font-title); font-size: 13px; font-weight: 700;
  border: 2px solid var(--orange); border-radius: var(--radius); padding: 10px 22px;
  cursor: pointer; transition: all 0.2s;
}
.btn-outline:hover { background: var(--orange); color: white; }

.btn-outline-white {
  background: transparent; color: white;
  font-family: var(--font-title); font-size: 13px; font-weight: 700;
  border: 2px solid rgba(255,255,255,0.7); border-radius: var(--radius); padding: 10px 22px;
  cursor: pointer; transition: all 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }

.btn-dark {
  background: var(--dark); color: white;
  font-family: var(--font-title); font-size: 13px; font-weight: 800;
  letter-spacing: 0.05em; border: none; border-radius: var(--radius);
  padding: 12px 24px; cursor: pointer; transition: background 0.2s;
}
.btn-dark:hover { background: #2a2a2a; }

.btn-white {
  background: white; color: var(--orange);
  font-family: var(--font-title); font-size: 13px; font-weight: 800;
  border: none; border-radius: var(--radius); padding: 12px 24px;
  cursor: pointer; transition: all 0.2s;
}
.btn-white:hover { background: #f0f0f0; }

.btn-text {
  background: none; border: none; color: var(--orange);
  font-family: var(--font-title); font-size: 12px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.04em;
}
.btn-lg { padding: 15px 32px; font-size: 14px; }
.btn-sm { padding: 8px 16px; font-size: 11px; }
.btn-full { width: 100%; justify-content: center; }

/* ════════════════════════════════
   SPA ROUTING
════════════════════════════════ */
.page { display: none; }
.page.active { display: block; animation: fadeIn 0.32s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ════════════════════════════════
   SECTIONS
════════════════════════════════ */
.section { padding: 80px 0; }
.bg-white { background: var(--white); }
.bg-grey { background: var(--bg-grey); }
.bg-dark { background: var(--dark); color: white; }
.bg-orange { background: var(--orange); color: white; }
.bg-dark h2, .bg-orange h2 { color: white; }
.bg-dark p, .bg-orange p { color: rgba(255,255,255,0.9); }

.section-header { margin-bottom: 48px; }
.section-header h2 {
  font-family: var(--font-title); font-size: clamp(26px, 4vw, 42px);
  font-weight: 900; color: var(--dark); line-height: 1.1; margin-bottom: 12px;
}
.section-header p { color: #666; font-size: 16px; }

/* PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);
  padding: 60px 0 40px; color: white; position: relative;
}
.page-hero h1 {
  font-family: var(--font-title); font-size: clamp(32px, 5vw, 56px);
  font-weight: 900; color: white; margin: 12px 0 8px;
}
.page-hero p { color: rgba(255,255,255,0.75); font-size: 16px; }
.breadcrumb {
  font-family: var(--font-title); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); display: flex; gap: 8px; align-items: center;
}
.breadcrumb a:hover { color: var(--orange); }
.bc-light { color: rgba(255,255,255,0.5); }
.bc-light a:hover { color: var(--orange); }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.65) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px; padding: 40px 0;
}
.hero-badge {
  display: inline-block; background: var(--orange);
  color: white; font-family: var(--font-title); font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em; padding: 6px 16px; border-radius: 99px;
  margin-bottom: 24px; animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.03)} }
.hero h1 {
  font-family: var(--font-title); font-size: clamp(38px, 6vw, 72px);
  font-weight: 900; color: white; line-height: 1.05;
  margin-bottom: 20px;
}
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.82); margin-bottom: 16px; line-height: 1.6; }
.hero-proof { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 32px; font-weight: 500; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-arrow {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 20px; cursor: pointer; z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ════════════════════════════════
   SAVINGS TABLE
════════════════════════════════ */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); margin-bottom: 24px; }
.cmp-table { width: 100%; border-collapse: collapse; background: white; }
.cmp-table th {
  background: var(--dark); color: white;
  font-family: var(--font-title); font-size: 11px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 20px; text-align: left;
}
.cmp-table td { padding: 16px 20px; border-bottom: 1px solid var(--bg-grey); font-weight: 500; }
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table tr:hover td { background: #fafafa; }
.p-old { color: #999; text-decoration: line-through; }
.p-new { color: var(--orange); font-weight: 800; font-size: 16px; font-family: var(--font-title); }
.save-tag {
  background: rgba(34,197,94,0.12); color: var(--success);
  font-family: var(--font-title); font-size: 11px; font-weight: 800;
  padding: 4px 10px; border-radius: 99px;
}
.sav-note { color: #666; font-size: 14px; text-align: center; font-style: italic; max-width: 600px; margin: 0 auto 28px; }

/* ════════════════════════════════
   CATEGORY CARDS
════════════════════════════════ */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cat-card {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden; cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-img-wrap { height: 220px; overflow: hidden; position: relative; }
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cat-card:hover .cat-img-wrap img { transform: scale(1.07); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
}
.cat-body { padding: 20px; }
.cat-badge {
  display: inline-block; background: rgba(255,107,0,0.12); color: var(--orange);
  font-family: var(--font-title); font-size: 10px; font-weight: 800;
  letter-spacing: 0.08em; padding: 4px 10px; border-radius: 99px; margin-bottom: 8px;
}
.cat-body h3 { font-family: var(--font-title); font-size: 22px; font-weight: 900; color: var(--dark); margin-bottom: 6px; }
.cat-body p { color: #666; font-size: 13px; margin-bottom: 12px; line-height: 1.5; }
.cat-price { font-family: var(--font-title); font-size: 14px; font-weight: 700; color: var(--grey); margin-bottom: 12px; }
.cat-price strong { color: var(--orange); font-size: 18px; }
.cat-link { color: var(--orange); font-family: var(--font-title); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; }

/* ════════════════════════════════
   WHY GRID
════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: white; border-radius: var(--radius-lg);
  padding: 28px 24px; box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.why-card:hover { transform: translateY(-4px); }
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h3 { font-family: var(--font-title); font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.why-card p { color: #666; font-size: 13px; line-height: 1.6; }

/* ════════════════════════════════
   HOW IT WORKS
════════════════════════════════ */
.steps { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; text-align: center; padding: 0 12px; }
.step-n {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: white;
  font-family: var(--font-title); font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.step-ico { font-size: 32px; margin-bottom: 12px; }
.step h3 { font-family: var(--font-title); font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.step p { font-size: 13px; color: #666; line-height: 1.5; }
.step-line {
  flex: 0 0 40px; height: 2px; background: var(--orange); opacity: 0.3;
  margin-top: 22px; flex-shrink: 0;
}

/* ════════════════════════════════
   TRANSPARENCY (ORANGE BG)
════════════════════════════════ */
.bg-orange h2 { font-family: var(--font-title); font-size: clamp(24px, 3.5vw, 38px); font-weight: 900; margin-bottom: 20px; }
.tr-text { font-size: 16px; margin-bottom: 20px; }
.tr-points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; font-weight: 600; font-size: 15px; }
.tr-box {
  background: white; color: var(--dark);
  border-radius: var(--radius-lg); padding: 28px 32px; max-width: 560px;
}
.tr-box strong { display: block; font-family: var(--font-title); font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.tr-form { display: flex; gap: 10px; margin-top: 16px; }
.tr-form input { flex: 1; padding: 10px 14px; border: 1px solid #ddd; border-radius: 8px; }

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: white; border: 1px solid #eee;
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow);
}
.testi-stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; }
.testi-text { font-size: 14px; line-height: 1.7; color: #444; margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: var(--font-title); font-size: 16px; font-weight: 900;
  flex-shrink: 0;
}
.testi-name { font-family: var(--font-title); font-size: 13px; font-weight: 800; color: var(--dark); }
.testi-loc { font-size: 11px; color: #888; }

/* ════════════════════════════════
   PRO CTA (DARK BG)
════════════════════════════════ */
.pro-badges-row { display: flex; gap: 24px; justify-content: center; margin: 24px 0; flex-wrap: wrap; }
.pro-badges-row span {
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9);
  font-family: var(--font-title); font-size: 12px; font-weight: 700;
  padding: 8px 16px; border-radius: 99px; letter-spacing: 0.04em;
}

/* ════════════════════════════════
   CERTIFICATIONS
════════════════════════════════ */
.certs-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 28px 0; }
.cert {
  background: var(--dark); color: white;
  font-family: var(--font-title); font-size: 13px; font-weight: 900;
  letter-spacing: 0.1em; padding: 12px 20px; border-radius: 8px;
  transition: background 0.2s;
}
.cert:hover { background: var(--orange); }

/* ════════════════════════════════
   FAQ
════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 780px; margin: 0 auto; }
.faq-category { font-family: var(--font-title); font-size: 18px; font-weight: 900; color: var(--dark); margin: 32px 0 16px; padding-bottom: 8px; border-bottom: 2px solid var(--orange); }
.faq-item { background: white; border: 1px solid #eee; border-radius: var(--radius); overflow: hidden; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; cursor: pointer; font-weight: 600; font-size: 14px;
  color: var(--dark); transition: background 0.2s;
}
.faq-q:hover { background: var(--bg-grey); }
.faq-q.open { color: var(--orange); }
.faq-ico { font-size: 18px; color: var(--orange); font-weight: 300; flex-shrink: 0; margin-left: 16px; transition: transform 0.3s; }
.faq-q.open .faq-ico { transform: rotate(45deg); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; font-size: 14px; color: #555; line-height: 1.7; }
.faq-a.open { max-height: 300px; padding: 0 20px 18px; }
.faq-search {
  margin-top: 20px; width: 100%; max-width: 480px;
  padding: 12px 18px; border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius); background: rgba(255,255,255,0.1);
  color: white; font-size: 14px;
}
.faq-search::placeholder { color: rgba(255,255,255,0.5); }
.faq-cta { display: flex; gap: 12px; justify-content: center; align-items: center; flex-wrap: wrap; }
.faq-cta p { margin: 0; color: #555; font-weight: 600; }

/* ════════════════════════════════
   NEWSLETTER
════════════════════════════════ */
.nl-form { display: flex; gap: 10px; max-width: 420px; margin: 24px auto; }
.nl-form input { flex: 1; padding: 12px 16px; border: none; border-radius: 8px; font-size: 14px; }
.nl-note { font-size: 12px; color: rgba(255,255,255,0.7); }

/* ════════════════════════════════
   CATALOGUE
════════════════════════════════ */
.catalogue-wrap { padding: 48px 0 80px; background: var(--bg-grey); min-height: 60vh; }
.cat-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }

/* Filters */
.filters {
  background: white; border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow); position: sticky; top: 120px;
}
.filters-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.filters-top h3 { font-family: var(--font-title); font-size: 15px; font-weight: 800; color: var(--dark); }
.filter-group { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--bg-grey); }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; }
.filter-label { font-family: var(--font-title); font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark); margin-bottom: 10px; }
.fopt { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #555; cursor: pointer; padding: 4px 0; }
.fopt input[type="radio"] { accent-color: var(--orange); }
.price-slider { width: 100%; accent-color: var(--orange); margin-top: 10px; cursor: pointer; }
.dim-search { width: 100%; padding: 10px 12px; border: 1.5px solid #e0e0e0; border-radius: 8px; font-size: 13px; color: var(--dark); outline: none; transition: border-color 0.2s; box-sizing: border-box; }
.dim-search:focus { border-color: var(--orange); }

/* Products */
.products-area { min-height: 400px; }
.products-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; gap: 12px; flex-wrap: wrap;
}
.prod-count { font-family: var(--font-title); font-size: 12px; font-weight: 700; color: #888; letter-spacing: 0.06em; text-transform: uppercase; }
.bar-right { display: flex; gap: 10px; align-items: center; }
.sort-sel {
  padding: 8px 12px; border: 1px solid #ddd; border-radius: 8px;
  font-size: 13px; background: white; cursor: pointer;
}
.filter-mob-btn { display: none; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Product Card */
.prod-card {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden; cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: fadeIn 0.3s ease;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prod-img-wrap { aspect-ratio: 1/1; overflow: hidden; position: relative; background: #000; }
.prod-img-wrap img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.4s; }
.prod-card:hover .prod-img-wrap img { transform: scale(1.05); }
.prod-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; }
.badge-bs {
  background: var(--orange); color: white;
  font-family: var(--font-title); font-size: 9px; font-weight: 800;
  padding: 3px 8px; border-radius: 99px; letter-spacing: 0.06em;
}
.badge-stock {
  background: rgba(34,197,94,0.15); color: var(--success);
  font-family: var(--font-title); font-size: 9px; font-weight: 800;
  padding: 3px 8px; border-radius: 99px; letter-spacing: 0.06em;
}
.prod-body { padding: 16px; }
.prod-cat { font-family: var(--font-title); font-size: 9px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }
.prod-name { font-family: var(--font-title); font-size: 14px; font-weight: 800; color: var(--dark); margin-bottom: 2px; }
.prod-size { font-size: 12px; color: #888; margin-bottom: 10px; }
.prod-pricing { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.prod-price { font-family: var(--font-title); font-size: 22px; font-weight: 900; color: var(--orange); }
.prod-price-old { font-family: var(--font-title); font-size: 13px; color: #aaa; text-decoration: line-through; }
.prod-save {
  background: rgba(34,197,94,0.12); color: var(--success);
  font-family: var(--font-title); font-size: 10px; font-weight: 800;
  padding: 3px 8px; border-radius: 99px;
}
.prod-add-btn {
  width: 100%; background: var(--orange); color: white; border: none;
  font-family: var(--font-title); font-size: 12px; font-weight: 800;
  letter-spacing: 0.06em; padding: 11px; border-radius: 8px;
  cursor: pointer; transition: background 0.2s;
}
.prod-add-btn:hover { background: var(--orange-dark); }

/* ════════════════════════════════
   À PROPOS
════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-text h2 { font-family: var(--font-title); font-size: 32px; font-weight: 900; color: var(--dark); margin-bottom: 20px; }
.about-text p { color: #555; line-height: 1.8; margin-bottom: 16px; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat-card {
  background: var(--dark); color: white; border-radius: var(--radius-lg);
  padding: 28px 20px; text-align: center;
}
.stat-n { font-family: var(--font-title); font-size: 36px; font-weight: 900; color: var(--orange); }
.stat-l { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 500; margin-top: 4px; }

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.contact-form-col h2 { font-family: var(--font-title); font-size: 28px; font-weight: 900; color: var(--dark); margin-bottom: 28px; }
.contact-form, .quote-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--font-title); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border: 1.5px solid #e0e0e0; border-radius: 8px;
  font-size: 14px; color: var(--dark); transition: border-color 0.2s;
  background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--orange);
}
.form-group textarea { resize: vertical; }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: #555; cursor: pointer; }
.form-check input { margin-top: 3px; flex-shrink: 0; accent-color: var(--orange); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.ci-block {
  display: flex; gap: 16px; padding: 20px; background: var(--bg-grey);
  border-radius: var(--radius-lg); margin-bottom: 16px; align-items: flex-start;
}
.ci-ico { font-size: 28px; flex-shrink: 0; }
.ci-block strong { font-family: var(--font-title); font-size: 14px; font-weight: 800; color: var(--dark); display: block; margin-bottom: 4px; }
.ci-block p { font-size: 14px; color: #555; margin-bottom: 4px; }
.ci-block small { font-size: 11px; color: #888; }

.form-narrow { max-width: 720px; margin: 0 auto; }

/* ════════════════════════════════
   PROFESSIONALS
════════════════════════════════ */
.pro-hero { min-height: 40vh; overflow: hidden; }
.pro-badge-tag {
  display: inline-block; background: var(--orange); color: white;
  font-family: var(--font-title); font-size: 11px; font-weight: 800;
  letter-spacing: 0.1em; padding: 5px 14px; border-radius: 99px; margin-bottom: 16px;
}
.pro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pro-card {
  background: var(--bg-grey); border-radius: var(--radius-lg); padding: 24px;
  transition: transform 0.2s;
}
.pro-card:hover { transform: translateY(-3px); }
.pro-ico { font-size: 32px; margin-bottom: 12px; }
.pro-card h3 { font-family: var(--font-title); font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.pro-card p { font-size: 13px; color: #666; line-height: 1.6; }

/* Pro pricing tables */
.pricing-tables { margin-top: 32px; }
.table-title { font-family: var(--font-title); font-size: 18px; font-weight: 800; color: var(--dark); margin: 28px 0 12px; }
.table-scroll { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 24px; }
.pro-table { width: 100%; border-collapse: collapse; background: white; min-width: 500px; }
.pro-table th {
  background: var(--dark); color: white;
  font-family: var(--font-title); font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  padding: 12px 16px; text-align: left;
}
.pro-table td { padding: 13px 16px; font-size: 13px; border-bottom: 1px solid var(--bg-grey); }
.pro-table tr:last-child td { border-bottom: none; }
.pro-table tr:hover td { background: #fafafa; }
.best-col { background: rgba(255,107,0,0.08); color: var(--orange); font-weight: 800; font-family: var(--font-title); }
.table-note { font-size: 12px; color: #888; margin-top: 8px; font-style: italic; }
.pricing-note { color: #666; text-align: center; }

/* Partner section */
.partner-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 24px 0; }
.partner-badges span {
  background: rgba(255,255,255,0.2); color: white;
  font-family: var(--font-title); font-size: 12px; font-weight: 700;
  padding: 8px 16px; border-radius: 99px;
}
.partner-email { color: rgba(255,255,255,0.7); font-size: 13px; margin-top: 12px; }

/* ════════════════════════════════
   ACCOUNT
════════════════════════════════ */
.auth-tabs { display: flex; gap: 0; margin-bottom: 32px; border: 1px solid #eee; border-radius: 10px; overflow: hidden; }
.auth-tab {
  flex: 1; padding: 14px; font-family: var(--font-title); font-size: 13px; font-weight: 800;
  border: none; background: var(--bg-grey); color: #888; cursor: pointer; transition: all 0.2s;
}
.auth-tab.active { background: var(--orange); color: white; }

/* ════════════════════════════════
   CART SIDEBAR
════════════════════════════════ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 400px; max-width: 100vw;
  background: white; z-index: 301;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid var(--bg-grey);
}
.cart-head h3 { font-family: var(--font-title); font-size: 18px; font-weight: 900; color: var(--dark); }
.cart-close { background: none; border: none; font-size: 20px; cursor: pointer; color: #888; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 6px; }
.cart-close:hover { background: var(--bg-grey); color: var(--dark); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 48px 0; color: #888; }
.cart-empty-ico { font-size: 48px; margin-bottom: 12px; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--bg-grey); }
.ci-img { width: 64px; height: 64px; border-radius: 8px; background: var(--bg-grey); flex-shrink: 0; overflow: hidden; }
.ci-img img { width: 100%; height: 100%; object-fit: contain; }
.ci-info { flex: 1; }
.ci-name { font-family: var(--font-title); font-size: 13px; font-weight: 800; color: var(--dark); margin-bottom: 2px; }
.ci-size { font-size: 11px; color: #888; margin-bottom: 8px; }
.ci-row { display: flex; align-items: center; gap: 10px; }
.ci-qty-ctrl { display: flex; align-items: center; gap: 8px; }
.ci-qty-btn { width: 26px; height: 26px; border-radius: 6px; border: 1px solid #ddd; background: white; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.ci-qty-btn:hover { border-color: var(--orange); color: var(--orange); }
.ci-qty { font-family: var(--font-title); font-size: 13px; font-weight: 700; min-width: 20px; text-align: center; }
.ci-price { font-family: var(--font-title); font-size: 15px; font-weight: 900; color: var(--orange); margin-left: auto; }
.ci-remove { background: none; border: none; color: #ccc; cursor: pointer; font-size: 16px; padding: 4px; }
.ci-remove:hover { color: var(--danger); }
.cart-foot { padding: 20px 24px; border-top: 1px solid var(--bg-grey); background: white; }
.cart-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-subtotal span:first-child { font-family: var(--font-title); font-size: 13px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.06em; }
.cart-total-val { font-family: var(--font-title); font-size: 24px; font-weight: 900; color: var(--dark); }

/* ════════════════════════════════
   PRODUCT PAGE
════════════════════════════════ */
.pp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; max-width: 900px; margin: 0 auto; }
.pp-img { height: 400px; background: var(--bg-grey); border-radius: var(--radius-lg); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.pp-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.pp-info { padding: 10px 0; }
.pp-cat { font-family: var(--font-title); font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.pp-name { font-family: var(--font-title); font-size: 28px; font-weight: 900; color: var(--dark); margin-bottom: 6px; }
.pp-size { font-size: 14px; color: #888; margin-bottom: 24px; }
.pp-price-box { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.pp-price { font-family: var(--font-title); font-size: 36px; font-weight: 900; color: var(--orange); }
.pp-price-old { font-size: 16px; color: #aaa; text-decoration: line-through; }
.pp-save-tag { background: rgba(34,197,94,0.12); color: var(--success); font-family: var(--font-title); font-size: 12px; font-weight: 800; padding: 4px 10px; border-radius: 99px; vertical-align: middle; }
.pp-certs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; margin-bottom: 24px; }
.pp-cert { background: var(--bg-grey); font-family: var(--font-title); font-size: 10px; font-weight: 800; padding: 6px 10px; border-radius: 4px; color: var(--dark); }
.pp-delivery { background: rgba(255,107,0,0.08); color: var(--orange); border-radius: 8px; padding: 12px 16px; font-size: 14px; font-weight: 600; margin-bottom: 24px; }
.pp-desc { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 24px; }
.pp-specs-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.spec-badge { background: #f0f0f0; border-radius: 99px; padding: 6px 12px; font-size: 13px; font-weight: 700; color: var(--dark); display: flex; align-items: center; gap: 6px; }
.pp-story { background: #f8f8f8; border-left: 4px solid var(--orange); padding: 16px; margin-bottom: 24px; border-radius: 0 8px 8px 0; }
.pp-story-title { font-family: var(--font-title); font-size: 16px; font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.pp-story-text { font-size: 14px; color: #555; line-height: 1.6; }
.pp-actions { display: flex; flex-direction: column; gap: 12px; }

/* ════════════════════════════════
   WHATSAPP BUTTON
════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 250;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-tip {
  position: absolute; right: 70px; bottom: 50%;
  transform: translateY(50%);
  background: var(--dark); color: white;
  font-family: var(--font-title); font-size: 11px; font-weight: 700;
  padding: 6px 12px; border-radius: 8px; white-space: nowrap;
  opacity: 0; transition: opacity 0.2s; pointer-events: none;
}
.wa-float:hover .wa-tip { opacity: 1; }

/* ════════════════════════════════
   NEWSLETTER POPUP
════════════════════════════════ */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 500; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.popup-overlay.open { opacity: 1; pointer-events: all; }
.popup {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.9);
  background: white; border-radius: var(--radius-lg);
  padding: 40px; width: 90%; max-width: 420px; text-align: center;
  z-index: 501; opacity: 0; pointer-events: none;
  transition: all 0.3s; box-shadow: var(--shadow-lg);
}
.popup.open { opacity: 1; pointer-events: all; transform: translate(-50%,-50%) scale(1); }
.popup-close { position: absolute; top: 16px; right: 16px; background: var(--bg-grey); border: none; width: 28px; height: 28px; border-radius: 6px; cursor: pointer; font-size: 14px; }
.popup-ico { font-size: 40px; margin-bottom: 12px; }
.popup h3 { font-family: var(--font-title); font-size: 22px; font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.popup p { color: #666; font-size: 14px; margin-bottom: 20px; }
.popup input { width: 100%; padding: 12px; border: 1.5px solid #ddd; border-radius: 8px; margin-bottom: 12px; font-size: 14px; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { font-family: var(--font-title); font-size: 24px; font-weight: 900; color: white; margin-bottom: 12px; }
.footer-tag { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.socials { display: flex; gap: 10px; }
.social { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all 0.2s; }
.social:hover { background: var(--orange); color: white; }
.footer-col-h { font-family: var(--font-title); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: white; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-nl input { width: 100%; padding: 10px 12px; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; background: rgba(255,255,255,0.08); color: white; font-size: 13px; margin-bottom: 8px; }
.footer-nl input::placeholder { color: rgba(255,255,255,0.4); }
.footer-nl { display: flex; flex-direction: column; gap: 0; }
.footer-nl input { margin-bottom: 8px; }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: var(--orange); }
.pay-icons { display: flex; gap: 6px; }
.pay-ico { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); font-family: var(--font-title); font-size: 9px; font-weight: 800; padding: 4px 7px; border-radius: 4px; }

/* ════════════════════════════════
   CATALOGUE HUB
════════════════════════════════ */
.hub-section-title {
  font-family: var(--font-title); font-size: 24px; font-weight: 900;
  color: var(--dark); margin: 40px 0 20px 0; padding-bottom: 8px;
  border-bottom: 2px solid var(--orange); display: inline-block;
}
.hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 32px; }
.hub-card {
  position: relative; height: 180px; border-radius: var(--radius-lg); overflow: hidden;
  display: flex; align-items: center; justify-content: center; cursor: pointer; text-decoration: none;
  box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; background: #000;
}
.hub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hub-card img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.6;
  transition: transform 0.5s, opacity 0.3s;
}
.hub-card:hover img { transform: scale(1.05); opacity: 0.8; }
.hub-card-content { position: relative; z-index: 1; text-align: center; color: white; padding: 20px; }
.hub-card-title { font-family: var(--font-title); font-size: 26px; font-weight: 900; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.hub-card-sub { font-size: 14px; font-weight: 600; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
.hub-card-all { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.hub-card-all img { display: none; }
.hub-card-all .hub-card-title { text-shadow: none; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
/* ════════════════════════════════
   RTL SUPPORT (Arabic)
════════════════════════════════ */
[dir="rtl"] .nav-inner  { flex-direction: row-reverse; }
[dir="rtl"] .nav-logo   { margin-right: 0; margin-left: 32px; }
[dir="rtl"] .nav-right  { margin-left: 0; margin-right: auto; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-btns { justify-content: flex-start; }
[dir="rtl"] .why-card, [dir="rtl"] .step, [dir="rtl"] .pro-card { text-align: right; }
[dir="rtl"] .testi-author { flex-direction: row-reverse; }
[dir="rtl"] .ci-block   { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .cart-item  { flex-direction: row-reverse; }
[dir="rtl"] .ci-row     { flex-direction: row-reverse; }
[dir="rtl"] .ci-price   { margin-left: 0; margin-right: auto; }
[dir="rtl"] .faq-q      { flex-direction: row-reverse; }
[dir="rtl"] .announce-track { animation: marqueeRTL 28s linear infinite; }
@keyframes marqueeRTL { from { transform: translateX(-50%); } to { transform: translateX(0); } }
[dir="rtl"] .footer-grid { text-align: right; }
[dir="rtl"] .footer-links { align-items: flex-end; }

@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pro-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .cat-layout { grid-template-columns: 220px 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  body { padding-top: calc(var(--nav-h) + var(--announce-h)); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .currency-sel { display: none; }

  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-lg { width: 100%; justify-content: center; }

  .cat-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step-line { width: 2px; height: 32px; margin: 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .pro-grid { grid-template-columns: 1fr; }

  .cat-layout { grid-template-columns: 1fr; }
  .filters { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 350; border-radius: 0; overflow-y: auto; }
  .filters.mobile-open { display: block; }
  .filter-mob-btn { display: inline-flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .about-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }

  .pp-layout { grid-template-columns: 1fr; gap: 24px; }
  .pp-img { height: 280px; }
  .cart-sidebar { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bar-inner { flex-direction: column; text-align: center; gap: 8px; }

  .cmp-table th, .cmp-table td { padding: 10px 12px; font-size: 12px; }
  .tr-form { flex-direction: column; }
  .nl-form { flex-direction: column; max-width: 320px; }
  .pro-badges-row { flex-direction: column; gap: 10px; align-items: center; }
  .partner-badges { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

/* TESTIMONIALS SECTION (B2B Premium) */
.testimonials-section {
  padding: 80px 20px;
  background-color: #f8f9fa;
}
.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.testimonials-slider::-webkit-scrollbar {
  height: 8px;
}
.testimonials-slider::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 320px;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.testimonial-card .flag {
  font-size: 32px;
  margin-bottom: 15px;
}
.testimonial-card .stars {
  font-size: 16px;
  color: #ffc107;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  margin: 0 0 20px 0;
  flex-grow: 1;
}
.testimonial-card .author {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}
.testimonial-card .author strong {
  font-size: 16px;
  color: #111;
  font-weight: 700;
}
.testimonial-card .author span {
  font-size: 13px;
  color: #777;
  margin-top: 4px;
}
.testimonial-card .products {
  font-size: 13px;
  font-weight: 600;
  color: #208b68;
  background: rgba(32, 139, 104, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  align-self: flex-start;
}

/* CERTIFICATIONS PAGES (Generic) */
.cert-page {
  padding: 120px 20px 80px;
  background-color: #fff;
  min-height: 100vh;
}
.cert-content {
  max-width: 800px;
  margin: 0 auto;
}
.cert-content h1 {
  font-size: 36px;
  color: #111;
  margin-bottom: 30px;
}
.cert-content h2 {
  font-size: 24px;
  color: #222;
  margin-top: 40px;
  margin-bottom: 20px;
}
.cert-content h3 {
  font-size: 20px;
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
}
.cert-content p, .cert-content ul, .cert-content ol {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}
.cert-content ul, .cert-content ol {
  padding-left: 20px;
}
.cert-content li {
  margin-bottom: 10px;
}
.cert-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 15px;
}
.cert-content th, .cert-content td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}
.cert-content th {
  background-color: #f5f5f5;
  font-weight: 600;
  color: #111;
}
.cert-content blockquote {
  background: #f9f9f9;
  border-left: 4px solid #1964b0;
  padding: 15px 20px;
  margin: 20px 0;
  font-style: italic;
  color: #555;
}

/* Make cert links look good */
.certs-row a.cert {
  text-decoration: none;
  transition: all 0.3s;
}
.certs-row a.cert:hover {
  background: #1964b0;
  color: #fff;
  border-color: #1964b0;
}
}
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 40px);
  }
}

/* ════════════════════════════════
   ESPACE PRO
════════════════════════════════ */
.pro-img-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pro-img-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.pro-img-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pro-img-card:hover img {
  transform: scale(1.05);
}
.pro-img-caption {
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-align: center;
  border-top: 1px solid #eee;
}

.pro-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.pro-benefit-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}
.pro-benefit-card:hover {
  border-left-color: #C8A96E;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.pro-benefit-card .pb-ico {
  font-size: 40px;
  margin-bottom: 16px;
}
.pro-benefit-card h3 {
  font-size: 20px;
  color: #1A1A1A;
  margin-bottom: 12px;
}
.pro-benefit-card p {
  color: #555;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════
// ACCOUNT DROPDOWN
// ═══════════════════════════════════════════════════════════ */
.account-dropdown {
  position: relative;
  display: inline-block;
}
.account-dropdown-btn {
  background: none;
  border: 1px solid #222;
  color: #222;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.account-dropdown-btn:hover {
  background: #f0f0f0;
}
.account-dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 4px;
  background-color: #fff;
  min-width: 240px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
  border-radius: 8px;
  z-index: 1000;
  overflow: hidden;
  border: 1px solid #eee;
}
.account-dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.2s;
}
.account-dropdown-content a:last-child {
  border-bottom: none;
}
.account-dropdown-content a:hover {
  background-color: #f9f9f9;
  color: #C8A96E;
}
.account-dropdown:hover .account-dropdown-content {
  display: block;
}


/* ═══════════════════════════════════════════════════════════
// GLOBAL DELIVERY SECTION
// ═══════════════════════════════════════════════════════════ */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.delivery-card {
  background: white;
  border-top: 4px solid #C8A96E;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.delivery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.del-icon {
  font-size: 16px;
  margin-bottom: 4px;
  text-align: center;
}
.del-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}
.del-legend {
  font-size: 13px;
  color: #888;
  font-style: italic;
  margin-bottom: 8px;
  text-align: center;
}
.delivery-card h3 {
  font-size: 18px;
  color: #1A1A1A;
  margin-bottom: 8px;
}
.delivery-card p {
  font-size: 14px;
  line-height: 1.4;
  color: #555;
}
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.zone-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid #C8A96E;
  border-radius: 8px;
  padding: 12px;
  transition: all 0.3s;
  text-align: left;
}
.zone-card:hover {
  background: #C8A96E;
}
.zone-card:hover .zone-title, .zone-card:hover .zone-desc {
  color: #1A1A1A !important;
}
.zone-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.zone-title {
  color: #C8A96E;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 8px;
}
.zone-desc {
  color: white;
  font-size: 13px;
  line-height: 1.4;
}


@keyframes pulseLight {
  0% { transform: scale(0.95); opacity: 0.7; box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
  100% { transform: scale(0.95); opacity: 0.7; box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
