/* ══════════════════════════════════════════════════════════════════════
   BIGTEC PRIME — STOREFRONT DESIGN SYSTEM (THÈME CLAIR MODERNE & PRO)
   Couleurs : Blanc pur, Ardoise haute lisibilité, Accents Bleu Ciel / Azur
   ══════════════════════════════════════════════════════════════════════ */

:root {
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Palette Principale Thème Clair */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.96);

  /* Bordures */
  --border-subtle: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-focus: #0284c7;

  /* Accents */
  --primary-400: #0284c7;
  --primary-500: #0ea5e9;
  --primary-600: #0369a1;
  --primary-glow: rgba(2, 132, 199, 0.12);

  --accent-gold: #d97706;
  --accent-gold-glow: rgba(217, 119, 6, 0.15);
  --accent-emerald: #059669;
  --accent-rose: #e11d48;
  --accent-purple: #7c3aed;

  /* Textes Haute Lisibilité */
  --text-main: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-inverse: #ffffff;

  /* Rayons & Ombres */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.09);
  --shadow-glow: 0 0 20px rgba(2, 132, 199, 0.12);

  /* Zones sombres volontaires (Hero, bandeaux catégorie/marque, sections vedettes) */
  --bg-inverse: #0f172a;
  --bg-inverse-gradient: linear-gradient(135deg, rgba(15,23,42,0.95), rgba(30,41,59,0.85));
  --text-on-inverse: #ffffff;
  --text-on-inverse-dim: #94a3b8;

  /* Fond neutre derrière les images produit (remplace les cadres sombres hérités) */
  --bg-media: #f8fafc;

  /* Layout */
  --header-height: 72px;
  --max-width: 1280px;
  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Classe utilitaire pour les sections volontairement sombres (Hero, bandeaux, promos) */
.section-inverse {
  background: var(--bg-inverse-gradient);
  color: var(--text-on-inverse);
}
.section-inverse h1, .section-inverse h2, .section-inverse h3, .section-inverse h4 {
  color: var(--text-on-inverse);
}
.section-inverse p, .section-inverse span:not(.badge-tag) {
  color: var(--text-on-inverse-dim);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  line-height: 1.5;
  background-color: var(--bg-body);
  color: var(--text-main);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.mono {
  font-family: var(--font-mono);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ══════════════════════════════════════════════════════════════════════
   GLOBAL FORM CONTROLS & INPUTS DESIGN SYSTEM
   ══════════════════════════════════════════════════════════════════════ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-label {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-control, .form-input, input[type="text"], input[type="tel"], input[type="email"], textarea {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  width: 100%;
}

.form-control:focus, .form-input:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.form-select, select.custom-select, select.shop-sort-select {
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 12px center;
  padding: 9px 36px 9px 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-select:focus, select.custom-select:focus, select.shop-sort-select:focus {
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

/* Custom Radios & Checkboxes */
input[type="radio"], input[type="checkbox"] {
  accent-color: #0284c7;
  width: 16px;
  height: 16px;
  cursor: pointer;
  vertical-align: middle;
  margin-right: 8px;
}

/* ══════════════════════════════════════════════════════════════════════
   TOP ANNOUNCEMENT BAR & HEADER
   ══════════════════════════════════════════════════════════════════════ */

.top-bar {
  background: #0f172a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: #94a3b8;
  padding: 6px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(56, 189, 248, 0.2);
  color: #38bdf8;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 11px;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-link {
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}

.top-bar-link:hover {
  color: #ffffff;
}

/* ══════════════════════════════════════════════════════════════════════
   HEADER PRINCIPAL (DESKTOP & TABLET & MOBILE)
   ══════════════════════════════════════════════════════════════════════ */

.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}

.header-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  flex-shrink: 0;
}

.header-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.header-logo-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: #e0f2fe;
  color: #0284c7;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 2px;
  letter-spacing: 0.05em;
  border: 1px solid #bae6fd;
}

/* Nav Menu Desktop */
.header-nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.header-nav-desktop .nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
  padding: 8px 14px;
  border-radius: 10px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-nav-desktop .nav-link:hover, .header-nav-desktop .nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

/* Header Main Row V3 */
.header-main-row-v3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 4px 0;
}

/* Barre de Recherche Moderne & Dominante V3 (Desktop) */
.search-container {
  position: relative;
}

.search-container.desktop-search-v3 {
  flex: 1;
  max-width: 560px;
  min-width: 260px;
  margin: 0 16px;
}

.search-container.mobile-search {
  display: none;
}

.search-input-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.desktop-search-v3 .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  font-size: 15px;
  z-index: 2;
}

.desktop-search-v3 .search-input {
  width: 100%;
  height: 42px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 8px 16px 8px 42px;
  font-size: 13.5px;
  color: #0f172a;
  outline: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.desktop-search-v3 .search-input:focus {
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.18);
  background: #ffffff;
}

.search-results-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  max-height: 420px;
  overflow-y: auto;
  z-index: 1001;
  display: none;
}

.search-results-dropdown.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
  width: 100%;
  box-sizing: border-box;
}

.search-result-item:hover, .search-result-item.selected, .search-result-item:focus {
  background: #f1f5f9;
  outline: none;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  object-fit: contain;
  padding: 2px;
  flex-shrink: 0;
}

.search-result-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.search-result-title {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-meta {
  font-size: 11px;
  color: #64748b;
  display: flex;
  gap: 6px;
  align-items: center;
}

.search-result-price {
  font-size: 13px;
  font-weight: 800;
  color: #0284c7;
  font-family: var(--font-mono, monospace);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Actions Header V3 (Structure E-Commerce Complète) */
.header-actions-v3 {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-action-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #f8fafc;
  cursor: pointer;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.header-action-item:hover {
  color: #38bdf8;
}

.action-icon-wrap {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffffff;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.header-action-item:hover .action-icon-wrap {
  background: rgba(2, 132, 199, 0.25);
  border-color: #0284c7;
  transform: translateY(-1px);
}

.action-label-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.25;
}

.action-sublabel {
  font-size: 10px;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.02em;
}

.action-mainlabel {
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.action-badge.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #0284c7;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  min-width: 17px;
  height: 17px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 2px solid #0f172a;
}

/* ══════════════════════════════════════════════════════════════════════
   LIGNE 2 : BARRE DE NAVIGATION PRINCIPALE ([☰ TOUS NOS RAYONS] + 7 LIENS DEMO)
   ══════════════════════════════════════════════════════════════════════ */

.header-navbar-desktop {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.header-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  min-height: 44px;
}

.btn-rayons-menu {
  background: #ffffff;
  border: 1.5px solid #0284c7;
  color: #0284c7;
  padding: 7px 18px;
  font-size: 13.5px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.03em;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.12);
  flex-shrink: 0;
}

.btn-rayons-menu:hover {
  background: #0284c7;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.btn-rayons-menu .rayons-label {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.btn-rayons-menu .rayons-icon {
  font-size: 16px;
}

.nav-demo-links {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  white-space: nowrap;
}

.nav-demo-link {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  padding: 7px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.nav-demo-link:hover {
  color: #0284c7;
  background: #f0f9ff;
}

.nav-demo-link-help {
  color: #dc2626 !important;
  font-weight: 800;
  background: #fef2f2;
  border: 1px solid #fee2e2;
}

.nav-demo-link-help:hover {
  background: #dc2626 !important;
  color: #ffffff !important;
}

/* ══════════════════════════════════════════════════════════════════════
   BARRE DE RACCOURCIS CATÉGORIES (DIRECTEMENT SOUS LE HEADER / AU-DESSUS DU HERO)
   ══════════════════════════════════════════════════════════════════════ */

.category-shortcuts-bar, .category-nav-bar {
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0;
}

.category-shortcuts-inner, .category-nav-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-shortcuts-inner::-webkit-scrollbar, .category-nav-inner::-webkit-scrollbar {
  display: none;
}

.cat-shortcut-pill, .cat-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.cat-shortcut-pill:hover, .cat-shortcut-pill.active, .cat-nav-pill:hover, .cat-nav-pill.active {
  color: #ffffff;
  background: #0284c7;
  border-color: #0284c7;
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.35);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════════════════
   HERO CAROUSEL SECTION (5 SLIDES DEMO AVEC ESPACEMENT PROPRE)
   ══════════════════════════════════════════════════════════════════════ */

.hero-carousel-section {
  padding: 24px 0 32px;
}

.hero-carousel-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 420px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  display: flex;
}

.hero-slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  padding: 44px 80px;
  box-sizing: border-box;
}

.hero-slide-item.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-content {
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 490px;
  padding-right: 16px;
}

.hero-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(56, 189, 248, 0.16);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.hero-slide-title {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.22;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.hero-slide-desc {
  font-size: 14.5px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 480px;
}

.hero-slide-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  transition: all 0.2s ease;
}

.btn-hero-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-slide-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 280px;
}

.hero-slide-img-backdrop {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, rgba(2, 132, 199, 0.06) 70%, transparent 100%);
  filter: blur(24px);
  pointer-events: none;
}

.hero-slide-img {
  max-height: 300px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35));
  transition: transform 0.3s ease;
}

/* Contrôles du Carousel avec positionnement sûr */
.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  z-index: 25;
  transition: all 0.2s ease;
}

.hero-nav-arrow:hover {
  background: #0284c7;
  border-color: #0284c7;
  transform: translateY(-50%) scale(1.08);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 25;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.hero-dot.active {
  width: 28px;
  background: #38bdf8;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

/* ══════════════════════════════════════════════════════════════════════
   SECTION : NOS CATÉGORIES POPULAIRES (6 UNIVERS SÉLECTIONNÉS)
   ══════════════════════════════════════════════════════════════════════ */

.popular-categories-section {
  padding: 32px 0 20px;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

.section-main-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.section-sub-title {
  font-size: 14px;
  color: #64748b;
}

.section-view-all-link {
  font-size: 13px;
  font-weight: 700;
  color: #0284c7;
  text-decoration: none;
  transition: color 0.15s ease;
}

.section-view-all-link:hover {
  color: #0369a1;
  text-decoration: underline;
}

.popular-cats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.popular-cat-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 12px 16px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.popular-cat-card:hover {
  border-color: #0284c7;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.12);
}

.popular-cat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform 0.2s ease;
}

.popular-cat-card:hover .popular-cat-icon-wrap {
  transform: scale(1.08);
}

.popular-cat-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.popular-cat-name {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.popular-cat-badge {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 10px;
}

/* ══════════════════════════════════════════════════════════════════════
   SECTION HEADINGS & GRIDS
   ══════════════════════════════════════════════════════════════════════ */

.section-wrap {
  padding: 36px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.section-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section-subtitle {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0284c7;
  letter-spacing: 0.08em;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.section-link {
  font-size: 13px;
  font-weight: 700;
  color: #0284c7;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s;
}

.section-link:hover {
  gap: 10px;
  color: #0369a1;
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.category-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.category-card:hover {
  background: #ffffff;
  border-color: #0284c7;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.category-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0284c7;
  transition: var(--transition);
}

.category-card:hover .category-icon-wrap {
  background: #bae6fd;
  transform: scale(1.05);
}

.category-name {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.category-count {
  font-size: 11px;
  color: var(--text-muted);
}

/* Brands Bar & Grid */
.brands-row {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
}

.brands-row::-webkit-scrollbar { display: none; }

.brand-badge {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.brand-badge:hover {
  border-color: #0284c7;
  color: #0284c7;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ══════════════════════════════════════════════════════════════════════
   PRODUCT CARDS & GRIDS
   ══════════════════════════════════════════════════════════════════════ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.product-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.product-card-top {
  position: relative;
  margin-bottom: 12px;
}

.product-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-tag {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.badge-tag.promo {
  background: #fee2e2;
  color: #e11d48;
  border: 1px solid #fecaca;
}

.badge-tag.new {
  background: #e0f2fe;
  color: #0284c7;
  border: 1px solid #bae6fd;
}

.badge-tag.deal {
  background: #fef3c7;
  color: #d97706;
  border: 1px solid #fde68a;
}

.badge-tag.stock {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.btn-wishlist {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.btn-wishlist:hover, .btn-wishlist.active {
  color: #e11d48;
  background: #fee2e2;
  border-color: #fecaca;
}

.product-img-wrap {
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 10px;
}

.product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-brand {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0284c7;
  letter-spacing: 0.05em;
}

.product-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
}

.product-pricing-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.product-price {
  font-size: 17px;
  font-weight: 800;
  color: #0284c7;
  font-family: var(--font-mono);
}

.product-old-price {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-family: var(--font-mono);
}

.product-actions-wrap, .product-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.product-actions-wrap > *, .product-card-actions > * {
  flex: 1;
}

.btn-add-cart {
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  color: #334155;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 38px;
}

.btn-add-cart:hover {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-express-quick {
  background: #0284c7;
  border: none;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  height: 38px;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.25);
}

.btn-express-quick:hover {
  background: #0369a1;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
  transform: translateY(-1px);
  color: #ffffff;
}

/* ══════════════════════════════════════════════════════════════════════
   REASSURANCE / TRUST SECTION
   ══════════════════════════════════════════════════════════════════════ */

.trust-section {
  padding: 36px 0 50px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.trust-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.trust-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.trust-icon-wrap {
  font-size: 28px;
  color: #0284c7;
}

.trust-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.trust-desc {
  font-size: 12px;
  color: #475569;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════════════
   BOUTIQUE / CATALOGUE & FILTRES DESIGN SYSTEM
   ══════════════════════════════════════════════════════════════════════ */

.shop-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 32px;
  padding: 32px 0 64px;
  align-items: start;
}

.shop-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 90px;
}

.filter-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.filter-title {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-item-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #334155;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 8px;
  transition: all 0.15s ease;
  user-select: none;
}

.filter-item-label:hover {
  background: #f8fafc;
  color: #0284c7;
}

.filter-item-label:has(input:checked) {
  background: #f0f9ff;
  color: #0284c7;
  font-weight: 700;
}

.filter-count-badge {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  padding: 2px 7px;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.filter-item-label:hover .filter-count-badge,
.filter-item-label:has(input:checked) .filter-count-badge {
  background: #e0f2fe;
  color: #0284c7;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 18px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.btn-filter-mobile {
  display: none;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #0f172a;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.btn-filter-mobile:hover {
  border-color: #0284c7;
  color: #0284c7;
  background: #f0f9ff;
}

/* ══════════════════════════════════════════════════════════════════════
   FICHE PRODUIT DÉTAILLÉE (PDP) — DESIGN SYSTEM MODERNE BIGTEC PRIME
   ══════════════════════════════════════════════════════════════════════ */

.pdp-wrap {
  padding: 32px 0 64px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 24px;
}

.breadcrumb-nav a {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.breadcrumb-nav a:hover {
  color: #0284c7;
}

.breadcrumb-nav span:last-child {
  color: #0f172a;
  font-weight: 600;
}

/* Grille Principale 2 Colonnes */
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 36px;
  align-items: start;
}

/* 1. Colonne Galerie */
.pdp-gallery-wrap {
  position: sticky;
  top: 90px;
}

.pdp-main-image-box {
  width: 100%;
  height: 480px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pdp-main-image-box:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pdp-main-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-main-image-box:hover .pdp-main-image {
  transform: scale(1.03);
}

.pdp-thumbnails-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.pdp-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  padding: 6px;
  cursor: pointer;
  object-fit: contain;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.pdp-thumb.active, .pdp-thumb:hover {
  border-color: #0284c7;
  box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.2);
}

/* 2. Colonne Informations Produit */
.pdp-info-wrap {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pdp-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #0284c7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #f0f9ff;
  padding: 5px 12px;
  border-radius: 6px;
  width: fit-content;
  text-decoration: none;
  border: 1px solid #bae6fd;
  transition: all 0.15s ease;
}

.pdp-brand:hover {
  background: #e0f2fe;
  color: #0369a1;
}

.pdp-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.01em;
}

.pdp-sku-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #64748b;
  flex-wrap: wrap;
}

.pdp-sku-row .mono {
  font-family: var(--font-mono);
  color: #334155;
  font-weight: 700;
}

.pdp-rating-badge, .rating-row {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #f59e0b;
  font-weight: 700;
}

.pdp-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

.pdp-stock-badge.low {
  background: #fef2f2;
  color: #dc2626;
  border-color: #fecaca;
}

/* 3. Bloc Prix */
.pdp-price-box {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.pdp-current-price {
  font-size: 30px;
  font-weight: 900;
  color: #0284c7;
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pdp-old-price {
  font-size: 18px;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: line-through;
  font-family: var(--font-mono);
}

.pdp-discount-badge {
  background: #fee2e2;
  color: #dc2626;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid #fca5a5;
}

.pdp-price-badge {
  font-size: 12px;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #a7f3d0;
  margin-left: auto;
}

.pdp-short-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* 4. Boutons d'Achat & Contrôleur de Quantité Moderne */
.pdp-buy-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.pdp-qty-stepper, .qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  background: #ffffff;
  height: 48px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.pdp-qty-btn, .qty-btn {
  width: 40px;
  height: 100%;
  background: #f8fafc;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  user-select: none;
}

.pdp-qty-btn:hover, .qty-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.pdp-qty-btn:active, .qty-btn:active {
  background: #cbd5e1;
}

.pdp-qty-input, .qty-input {
  width: 44px;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  font-family: var(--font-mono);
  background: #ffffff;
  pointer-events: none;
  padding: 0;
}

.btn-express-pdp {
  height: 48px;
  border-radius: 10px;
  background: #0284c7;
  border: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  flex: 1.4;
  min-width: 200px;
  text-decoration: none;
}

.btn-express-pdp:hover {
  background: #0369a1;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
  transform: translateY(-1px);
}

.btn-express-pdp:active {
  transform: translateY(0);
}

.btn-add-pdp {
  height: 48px;
  border-radius: 10px;
  background: #ffffff;
  border: 2px solid #0284c7;
  color: #0284c7;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  flex: 1;
  min-width: 160px;
  text-decoration: none;
}

.btn-add-pdp:hover {
  background: #f0f9ff;
  border-color: #0284c7;
  transform: translateY(-1px);
}

.btn-add-pdp:active {
  transform: translateY(0);
}

.pdp-wish-btn {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #94a3b8;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.pdp-wish-btn:hover, .pdp-wish-btn.active {
  color: #ef4444;
  border-color: #fca5a5;
  background: #fef2f2;
}

/* 5. Bloc Réassurance */
.pdp-trust-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.pdp-trust-box > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #475569;
  line-height: 1.45;
}

.pdp-trust-box strong {
  color: #0f172a;
  font-weight: 700;
}

/* 6. Description & Fiche Technique */
.pdp-details-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  margin-top: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.pdp-details-card h2, .pdp-details-card .pdp-section-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pdp-specs-card table, .specs-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  font-size: 14px;
}

.pdp-specs-card tr:nth-child(even), .specs-table tr:nth-child(even) {
  background: #f8fafc;
}

.pdp-specs-card tr:nth-child(odd), .specs-table tr:nth-child(odd) {
  background: #ffffff;
}

.pdp-specs-card tr:hover, .specs-table tr:hover {
  background: #f0f9ff;
}

.pdp-specs-card td:first-child, .specs-table td:first-child {
  width: 32%;
  padding: 13px 18px;
  font-weight: 700;
  color: #334155;
  border-bottom: 1px solid #e2e8f0;
  background: rgba(248, 250, 252, 0.6);
}

.pdp-specs-card td:last-child, .specs-table td:last-child {
  padding: 13px 18px;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
  font-weight: 500;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdp-faq-item, details.pdp-faq-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pdp-faq-item[open] {
  background: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.08);
}

.pdp-faq-item summary {
  font-weight: 700;
  font-size: 15px;
  color: #0f172a;
  outline: none;
  user-select: none;
}

.pdp-faq-answer {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

/* 7. Produits Similaires Recommandés */
.pdp-similar-section, .pdp-similar-wrap {
  margin-top: 48px;
}

.pdp-similar-section h2, .pdp-similar-wrap .section-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 24px;
}

/* ══════════════════════════════════════════════════════════════════════
   HERO BANNERS (CATÉGORIES & MARQUES)
   ══════════════════════════════════════════════════════════════════════ */

.category-hero, .brand-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px 32px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.15);
}

.category-hero h1, .brand-hero h1 {
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 12px;
}

.category-hero p, .brand-hero p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 800px;
}

/* ══════════════════════════════════════════════════════════════════════
   PANIER & CHECKOUT DESIGN SYSTEM
   ══════════════════════════════════════════════════════════════════════ */

.cart-grid, .checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
  margin-bottom: 60px;
}

.cart-items-card, .checkout-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cart-item-row {
  display: grid;
  grid-template-columns: 70px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f1f5f9;
}

.cart-item-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
  background: #f8fafc;
  padding: 4px;
  border: 1px solid #e2e8f0;
}

.order-summary-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary-title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #475569;
}

.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  padding-top: 14px;
  border-top: 1.5px solid #e2e8f0;
}

.summary-total-price {
  font-size: 22px;
  font-weight: 900;
  color: #0284c7;
  font-family: var(--font-mono);
}

.cart-promo-box {
  display: flex;
  gap: 8px;
}

/* ══════════════════════════════════════════════════════════════════════
   NOS MARQUES OFFICIELLES (GRILLE DESKTOP & CARTES)
   ══════════════════════════════════════════════════════════════════════ */
.brands-section {
  padding: 40px 0 32px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  width: 100%;
}

.brand-badge-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 16px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 96px;
}

.brand-badge-card:hover {
  border-color: #0284c7;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.14);
}

.brand-badge-name {
  color: #0284c7;
  font-size: 20px;
  font-family: var(--font-mono);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.brand-badge-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}

/* ══════════════════════════════════════════════════════════════════════
   POURQUOI CHOISIR BIGTEC ? / RÉASSURANCE (BOX & GRILLE DESKTOP)
   ══════════════════════════════════════════════════════════════════════ */
.reassurance-section {
  padding: 32px 0 60px;
}

.reassurance-box {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 44px 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  width: 100%;
}

.reassurance-main-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.reassurance-item {
  text-align: center;
  padding: 22px 18px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1.5px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  transition: all 0.25s ease;
}

.reassurance-item:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.reassurance-item-icon {
  font-size: 40px;
  margin-bottom: 10px;
  line-height: 1;
}

.reassurance-item-title {
  color: #0f172a;
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 4px;
}

.reassurance-item-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════════════════
   FOOTER (DESKTOP PROPRE & LISIBLE)
   ══════════════════════════════════════════════════════════════════════ */

.main-footer {
  background: #0b1120;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 32px;
  margin-top: auto;
}

.main-footer .container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 44px;
}

.footer-logo-desc {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.65;
  margin-top: 14px;
  max-width: 380px;
}

.footer-heading, .footer-col-title {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a, .footer-link {
  font-size: 13.5px;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover, .footer-link:hover {
  color: #38bdf8;
  transform: translateX(3px);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #64748b;
  flex-wrap: wrap;
  gap: 12px;
}

/* ══════════════════════════════════════════════════════════════════════
   BARRE DE NAVIGATION MOBILE (BOTTOM BAR)
   ══════════════════════════════════════════════════════════════════════ */

.mobile-bottom-bar {
  display: none;
}

/* ══════════════════════════════════════════════════════════════════════
   DRAWER MENU & ACCOUNT MODAL STYLES
   ══════════════════════════════════════════════════════════════════════ */

.drawer-categories-sidebar {
  max-width: 380px;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.drawer-parents-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.drawer-parent-item {
  border-bottom: 1px solid #f1f5f9;
  list-style: none;
}

.drawer-parent-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 18px;
  border: none;
  background: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.drawer-parent-btn:hover {
  background: #f8fafc;
  color: #0284c7;
}

.drawer-parent-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-chevron {
  font-size: 18px;
  font-weight: 700;
  color: #94a3b8;
  transition: transform 0.2s ease, color 0.2s ease;
}

.drawer-parent-item.open .drawer-chevron {
  transform: rotate(90deg);
  color: #0284c7;
}

.drawer-child-list {
  display: none;
  background: #f8fafc;
  padding: 6px 14px 12px 34px;
  border-top: 1px solid #f1f5f9;
}

.drawer-parent-item.open .drawer-child-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-child-link {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s ease;
}

.drawer-child-link:hover {
  color: #0284c7;
  background: #e0f2fe;
  padding-left: 14px;
}

/* Bouton Voir tout le catalogue dans le Drawer */
.btn-drawer-catalog {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
  transition: all 0.2s ease;
  margin-bottom: 14px;
  box-sizing: border-box;
}

.btn-drawer-catalog:hover {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.45);
  color: #ffffff !important;
}

.drawer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  transition: all 0.15s ease;
}

.drawer-menu-link:hover {
  background: #f1f5f9;
  color: #0284c7;
  transform: translateX(3px);
}

/* ══════════════════════════════════════════════════════════════════════
   BARRE DE NAVIGATION MOBILE (BOTTOM BAR)
   ══════════════════════════════════════════════════════════════════════ */

.mobile-bottom-bar {
  display: none;
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS (320px / 360px / 390px / 414px / 430px / 768px / 1024px)
   ══════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  /* 1. Masquage total de la barre horizontale de catégories sur mobile/tablette (< 1024px) */
  .category-shortcuts-bar, .category-nav-bar {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .btn-text-desktop {
    display: none !important;
  }
  .btn-text-mobile {
    display: inline !important;
  }

  .hero-slide-item { grid-template-columns: 1.1fr 0.9fr; padding: 32px 36px; }
  .hero-slide-title { font-size: 28px; }
  .popular-cats-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .pdp-grid { grid-template-columns: 1fr; gap: 24px; }
  .pdp-gallery-wrap { position: static !important; top: auto !important; }
  .pdp-main-image-box { height: 380px !important; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .btn-filter-mobile { display: inline-flex; }
  .cart-grid, .checkout-grid { grid-template-columns: 1fr; }
  .order-summary-box { position: static; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .reassurance-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (min-width: 1024px) {
  .btn-text-desktop {
    display: inline !important;
  }
  .btn-text-mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  body {
    padding-bottom: 64px !important;
  }
  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
  }
  .top-bar {
    display: none !important;
  }

  /* 1. Header Mobile Compact & Propre (1 ligne) */
  .main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .header-inner {
    display: flex;
    flex-direction: column;
    padding: 6px 0 8px !important;
    gap: 4px !important;
  }
  
  .header-main-row, .header-main-row-v3 {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .header-logo {
    font-size: 16px !important;
    gap: 6px !important;
  }
  .header-logo-icon {
    width: 30px !important;
    height: 30px !important;
    font-size: 14px !important;
    border-radius: 8px !important;
  }
  .header-logo-badge {
    font-size: 8.5px !important;
    padding: 1px 4px !important;
    margin-left: 2px !important;
  }

  .header-nav-desktop .nav-link {
    display: none !important;
  }

  .btn-menu-hamburger {
    display: none !important;
  }

  .header-navbar-desktop {
    display: none !important;
  }

  .desktop-search, .desktop-search-v3 {
    display: none !important;
  }

  /* 2. Barre de Recherche Mobile (Ligne dédiée sous le logo) */
  .mobile-search {
    display: block !important;
    width: 100% !important;
    margin: 2px 0 0 0 !important;
    position: relative !important;
  }
  .mobile-search .search-input-wrapper {
    position: relative;
    width: 100%;
  }
  .mobile-search .search-input {
    height: 38px !important;
    padding: 6px 14px 6px 36px !important;
    font-size: 12.5px !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    box-sizing: border-box !important;
    color: #0f172a !important;
    width: 100% !important;
  }
  .mobile-search .search-icon {
    position: absolute;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 13px !important;
    color: #94a3b8 !important;
    pointer-events: none !important;
    z-index: 2 !important;
  }
  .mobile-search .search-results-dropdown {
    position: absolute !important;
    top: calc(100% + 4px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-height: 300px !important;
    z-index: 1000 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18) !important;
    border-radius: 10px !important;
    background: #ffffff !important;
  }

  /* Actions Header Mobile (Panier + Compte) */
  .header-actions, .header-actions-v3 {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .header-actions-v3 .action-label-wrap {
    display: none !important;
  }
  .header-actions-v3 .action-item-delivery,
  .header-actions-v3 .action-item-contact {
    display: none !important;
  }
  .header-action-item {
    padding: 0 !important;
  }
  .action-icon-wrap {
    width: 34px !important;
    height: 34px !important;
    font-size: 15px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 50% !important;
  }
  .action-badge {
    top: -3px !important;
    right: -3px !important;
    min-width: 16px !important;
    height: 16px !important;
    font-size: 9px !important;
  }

  /* 3. HERO MOBILE V2 (ORDRE STRICT: BADGE -> TITRE -> DESCRIPTION -> IMAGE ~90% -> BOUTON ACHETER -> DOTS) */
  .hero-carousel-section {
    padding: 10px 0 14px !important;
  }
  .hero-carousel-container {
    min-height: auto !important;
    border-radius: 16px !important;
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
  }
  .hero-slide-item {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    text-align: center !important;
    align-items: center !important;
    padding: 14px 12px 28px !important;
    box-sizing: border-box !important;
  }
  .hero-slide-item:not(.active) {
    display: none !important;
  }

  /* ORDRE 1: Content (Badge, Titre, Description) */
  .hero-slide-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    gap: 0 !important;
    order: 1 !important;
  }
  .hero-slide-badge {
    display: inline-block !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 2px 8px !important;
    margin: 0 0 4px 0 !important;
    border-radius: 4px !important;
    order: 1 !important;
  }
  .hero-slide-title {
    font-size: 17.5px !important;
    font-weight: 800 !important;
    line-height: 1.22 !important;
    margin: 0 0 3px 0 !important;
    color: #ffffff !important;
    order: 2 !important;
  }
  .hero-slide-desc {
    font-size: 12px !important;
    line-height: 1.35 !important;
    margin: 0 0 6px 0 !important;
    color: #94a3b8 !important;
    max-width: 95% !important;
    order: 3 !important;
  }

  /* ORDRE 2: Grande Image Promotionnelle Cliquable (~90% de la largeur utile, contain, sans déformation) */
  .hero-slide-visual {
    display: flex !important;
    order: 2 !important;
    min-height: auto !important;
    height: auto !important;
    margin: 4px auto 8px !important;
    width: 100% !important;
    max-width: 90% !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
  }
  .hero-slide-img-backdrop {
    display: none !important;
  }
  .hero-slide-img {
    max-height: 190px !important;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 8px !important;
    transition: transform 0.18s ease;
  }
  .hero-slide-visual:active .hero-slide-img {
    transform: scale(0.98);
  }

  /* ORDRE 3: Suppression TOTALE de tout bouton sur Mobile (Hero No Button) */
  .hero-slide-actions {
    display: none !important;
  }

  .hero-nav-arrow {
    display: none !important;
  }
  .hero-dots {
    bottom: 6px !important;
    gap: 5px !important;
  }
  .hero-dot {
    width: 6px !important;
    height: 6px !important;
  }
  .hero-dot.active {
    width: 16px !important;
  }

  /* 5. Menu Drawer Mobile Adapté */
  #menuDrawer, .drawer-sidebar.drawer-categories-sidebar {
    width: min(340px, 90vw) !important;
    max-width: 90vw !important;
  }
  .drawer-parent-btn {
    padding: 11px 16px !important;
    font-size: 13px !important;
  }
  .drawer-child-list {
    padding: 4px 10px 10px 22px !important;
  }
  .drawer-child-link {
    padding: 6px 8px !important;
    font-size: 12px !important;
  }
  .btn-drawer-catalog {
    padding: 10px 14px !important;
    font-size: 12.5px !important;
  }

  /* 6. Section Catégories Populaires Mobile */
  .popular-categories-section {
    padding: 16px 0 12px !important;
  }
  .section-main-title {
    font-size: 17px !important;
  }
  .section-sub-title {
    font-size: 11.5px !important;
  }
  .popular-cats-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .popular-cat-card {
    padding: 12px 8px 10px !important;
    border-radius: 10px !important;
    gap: 5px !important;
  }
  .popular-cat-icon-wrap {
    width: 38px !important;
    height: 38px !important;
    font-size: 18px !important;
    border-radius: 8px !important;
  }
  .popular-cat-name {
    font-size: 11.5px !important;
  }
  .popular-cat-badge {
    font-size: 9px !important;
    padding: 1px 5px !important;
  }

  /* 7. Grilles & Cartes Produits Mobile */
  .products-grid, .categories-grid, .brands-grid, .reassurance-grid,
  [data-wb-section-type="brands_grid"] > div:last-child,
  [data-wb-section-type="reassurance"] > div > div:last-child {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .brand-badge-card {
    padding: 14px 8px !important;
    min-height: auto !important;
  }
  .brand-badge-name {
    font-size: 15px !important;
  }
  .brand-badge-label {
    font-size: 10px !important;
  }
  .reassurance-section {
    padding: 16px 0 24px !important;
  }
  .reassurance-box {
    padding: 20px 14px !important;
    border-radius: 12px !important;
  }
  .reassurance-main-title {
    font-size: 17px !important;
    margin-bottom: 16px !important;
  }
  .reassurance-item {
    padding: 12px 8px !important;
    gap: 4px !important;
  }
  .reassurance-item-icon {
    font-size: 26px !important;
    margin-bottom: 4px !important;
  }
  .reassurance-item-title {
    font-size: 12px !important;
    margin-bottom: 2px !important;
  }
  .reassurance-item-desc {
    font-size: 10.5px !important;
    line-height: 1.35 !important;
  }

  .product-card {
    padding: 8px !important;
    border-radius: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  .product-img-wrap {
    height: 120px !important;
    padding: 4px !important;
  }
  .product-title {
    font-size: 11.5px !important;
    min-height: 28px !important;
    line-height: 1.25 !important;
  }
  .product-brand {
    font-size: 9.5px !important;
  }
  .product-price {
    font-size: 13.5px !important;
  }
  .product-old-price {
    font-size: 10.5px !important;
  }
  .product-badges .badge-tag {
    font-size: 8.5px !important;
    padding: 1px 5px !important;
  }
  .product-actions-wrap, .product-card-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
  }
  .product-actions-wrap a, .product-actions-wrap button, .btn-express-quick, .btn-add-cart {
    width: 100% !important;
    padding: 6px 4px !important;
    font-size: 10.5px !important;
    text-align: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
  }

  /* 8. PDP Fiche Produit Mobile */
  .pdp-wrap { padding: 14px 0 32px !important; }
  .pdp-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .pdp-gallery-wrap { position: static !important; top: auto !important; width: 100% !important; }
  .pdp-main-image-box { height: 260px !important; padding: 12px !important; border-radius: 12px !important; }
  .pdp-info-wrap { padding: 16px 12px !important; border-radius: 12px !important; gap: 12px !important; }
  .pdp-title { font-size: 18px !important; line-height: 1.3 !important; }
  .pdp-current-price { font-size: 22px !important; }
  .pdp-thumbnails-row { gap: 6px !important; margin-top: 10px !important; }
  .pdp-thumb { width: 52px !important; height: 52px !important; }

  .cart-item-row { grid-template-columns: 50px 1fr auto !important; gap: 8px !important; }
  .trust-grid { grid-template-columns: 1fr !important; }
  .footer-grid { display: flex !important; flex-direction: column !important; gap: 18px !important; }
  .footer-bottom { display: flex !important; flex-direction: column !important; gap: 8px !important; text-align: center !important; }

  /* 9. Barre de Navigation Basse Mobile (Fixed Bottom Bar) */
  .mobile-bottom-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 56px !important;
    background: rgba(15, 23, 42, 0.98) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;
    z-index: 999 !important;
    padding: 0 4px !important;
    box-sizing: border-box !important;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2) !important;
  }

  .mobile-nav-btn {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px !important;
    color: #94a3b8 !important;
    text-decoration: none !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    position: relative !important;
    padding: 4px 6px !important;
    flex: 1 !important;
    height: 100% !important;
    cursor: pointer !important;
    background: transparent !important;
    border: none !important;
  }

  .mobile-nav-btn:hover, .mobile-nav-btn.active {
    color: #38bdf8 !important;
  }

  .mobile-nav-icon {
    font-size: 17px !important;
    line-height: 1 !important;
  }
}

@media (max-width: 412px) {
  .product-img-wrap { height: 115px !important; }
  .header-logo { font-size: 15px !important; }
  .header-logo-icon { width: 28px !important; height: 28px !important; font-size: 13px !important; }
  .pdp-main-image-box { height: 240px !important; padding: 10px !important; }
  .pdp-thumb { width: 46px !important; height: 46px !important; }
  .pdp-title { font-size: 17px !important; }
  .pdp-current-price { font-size: 20px !important; }
}

/* ══════════════════════════════════════════════════════════════════════
   TIROIRS LATÉRAUX (MENU GAUCHE / PANIER DROITE) & MODALES
   ══════════════════════════════════════════════════════════════════════ */

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 1. Tiroirs par défaut à Droite (Panier, Filtres) */
.drawer-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  height: 100%;
  width: 100%;
  max-width: 420px;
  background: var(--bg-surface);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
}

.drawer-backdrop.active .drawer-sidebar {
  transform: translateX(0);
}

/* 2. Tiroir Menu Catégories à GAUCHE (Style MyTek Rayons) */
.drawer-sidebar.drawer-categories-sidebar, #menuDrawer {
  right: auto !important;
  left: 0 !important;
  max-width: 380px !important;
  box-shadow: 10px 0 35px rgba(0, 0, 0, 0.25) !important;
  transform: translateX(-100%) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.drawer-backdrop.active .drawer-sidebar.drawer-categories-sidebar,
.drawer-backdrop.active #menuDrawer {
  transform: translateX(0) !important;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.drawer-header > div {
  color: var(--text-main) !important;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 20px;
}

.drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.close-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg-surface-elevated);
  color: var(--text-main);
  border-radius: var(--radius-md);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  color: var(--text-main);
}

@media (max-width: 480px) {
  .drawer-sidebar { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════════════════════
   WEBSITE BUILDER — SÉPARATION STRICTE DESKTOP / MOBILE
   ══════════════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .mobile-only-sections,
  .mobile-only-section,
  .top-bar-badge-mobile {
    display: none !important;
  }
  .desktop-only-sections,
  .desktop-only-section,
  .top-bar-badge-desktop {
    display: block !important;
  }
  .top-bar-badge-desktop {
    display: flex !important;
  }
}

@media (max-width: 1023px) {
  .desktop-only-sections,
  .desktop-only-section,
  .top-bar-badge-desktop {
    display: none !important;
  }
  .mobile-only-sections,
  .mobile-only-section,
  .top-bar-badge-mobile {
    display: block !important;
  }
  .top-bar-badge-mobile {
    display: flex !important;
  }
}



/* ══════════════════════════════════════════════════════════════════════
   PAGES LÉGALES & INFORMATIVES (DESIGN SYSTÈME PROPRE & ÉLÉGANT)
   ══════════════════════════════════════════════════════════════════════ */
.legal-page-wrap {
  padding: 10px 0 60px;
  min-height: calc(100vh - 420px);
}

.legal-page-header {
  margin-bottom: 28px;
}

.legal-badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.legal-page-title {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.legal-page-meta {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.legal-page-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-sections-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 26px 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.legal-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.legal-card-content {
  font-size: 14px;
  color: #334155;
  line-height: 1.7;
}

.legal-card-content p {
  margin: 0 0 12px;
}

.legal-card-content strong {
  color: #0f172a;
}

/* FAQ ACCORDÉON */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-header {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.faq-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0284c7;
  background: #f0f9ff;
  padding: 3px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}

.faq-question {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.faq-icon {
  font-size: 20px;
  font-weight: 700;
  color: #94a3b8;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: #0284c7;
}

.faq-answer {
  display: none;
  padding: 0 22px 18px 22px;
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  border-top: 1px solid #f8fafc;
}

.faq-item.open .faq-answer {
  display: block;
}

/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.contact-card-title {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.contact-card-desc {
  font-size: 12px;
  color: #64748b;
  margin: 0 0 12px;
}

.contact-highlight {
  font-size: 15px;
  font-weight: 800;
  color: #0284c7;
  text-decoration: none;
  transition: color 0.15s ease;
}

.contact-highlight:hover {
  color: #0369a1;
  text-decoration: underline;
}

/* BANDEAU D'AIDE BAS DE PAGE */
.legal-help-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1.5px solid #bae6fd;
  border-radius: 14px;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* ══════════════════════════════════════════════════════════════════════
   FOOTER INSTITUTIONNEL — REFAIT & OPTIMISÉ 4 COLONNES
   ══════════════════════════════════════════════════════════════════════ */
.main-footer {
  background: #0b1120;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 56px 0 28px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col-brand .header-logo {
  color: #ffffff;
}

.footer-logo-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 12px 0 14px;
  max-width: 360px;
}

.footer-badges-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.footer-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-contact-block {
  font-size: 12.5px;
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.4;
}

.footer-contact-link {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.15s ease;
}

.footer-contact-link:hover {
  color: #38bdf8;
}

.footer-heading {
  font-size: 13.5px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-size: 13.5px;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: #38bdf8;
  transform: translateX(3px);
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #64748b;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* RESPONSIVE TABLETTE */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
  .main-footer {
    padding: 36px 0 88px;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

