/* ============================================================
   PANDORA.CI — Global Stylesheet
   Developpe par Atom Marketing Digital
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
  --pandora-blue: #1a5276;
  --pandora-blue-light: #2980b9;
  --pandora-blue-dark: #0e3651;
  --pandora-blue-hover: #1b6ca0;
  --pandora-gold: #d4a745;
  --pandora-gold-light: #f0d78c;
  --pandora-gold-dark: #b8912e;
  --pandora-cream: #faf8f3;
  --pandora-white: #ffffff;
  --pandora-gray-50: #fafafa;
  --pandora-gray-100: #f5f5f5;
  --pandora-gray-200: #ebebeb;
  --pandora-gray-300: #d4d4d4;
  --pandora-gray-500: #8a8a8a;
  --pandora-gray-600: #6b6b6b;
  --pandora-gray-700: #444444;
  --pandora-gray-800: #2d2d2d;
  --pandora-black: #1a1a1a;
  --pandora-success: #27ae60;
  --pandora-danger: #e74c3c;
  --pandora-whatsapp: #25D366;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.14);
  --shadow-gold: 0 4px 20px rgba(212,167,69,0.3);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-full: 50px;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --header-height: 80px;
  --topbar-height: 44px;
  --max-width: 1400px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--pandora-white);
  color: var(--pandora-gray-800);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; background: none; }
ul, ol { list-style: none; }

/* ===== ICONES SVG ===== */
.p-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.icon-lg { width: 28px; height: 28px; }
.icon-xl { width: 40px; height: 40px; }

/* ===== UTILITY ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 80px 0; }
.section-tight { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pandora-gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--pandora-blue-dark);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px;
  color: var(--pandora-gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Row header (titre + lien "tout voir") */
.row-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
}
.row-header .section-title { margin-bottom: 0; font-size: 34px; }
.row-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--pandora-blue);
  white-space: nowrap;
  transition: var(--transition-fast);
}
.row-link .p-icon { width: 16px; height: 16px; transition: transform 0.25s; }
.row-link:hover { color: var(--pandora-blue-dark); }
.row-link:hover .p-icon { transform: translateX(4px); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn .p-icon { width: 18px; height: 18px; }
.btn-primary {
  background: var(--pandora-blue);
  color: white;
  padding: 14px 32px;
  font-size: 15px;
}
.btn-primary:hover {
  background: var(--pandora-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,82,118,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--pandora-blue);
  padding: 14px 32px;
  font-size: 15px;
  border-color: var(--pandora-blue);
}
.btn-outline:hover {
  background: var(--pandora-blue);
  color: white;
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--pandora-gold);
  color: white;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--pandora-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-whatsapp {
  background: var(--pandora-whatsapp);
  color: white;
  padding: 14px 28px;
  font-size: 15px;
}
.btn-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 18px 42px; font-size: 16px; }

/* =====================================================
   TOP BAR
   ===================================================== */
.top-bar {
  background: var(--pandora-white);
  color: var(--pandora-gray-600);
  border-bottom: 1px solid var(--pandora-gray-200);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1001;
}
.top-bar .p-icon { color: var(--pandora-gold); }
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 28px;
}
.top-bar-left span,
.top-bar-right span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.top-bar .p-icon { width: 16px; height: 16px; }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang-switch {
  display: flex;
  gap: 3px;
  background: var(--pandora-gray-100);
  border-radius: 20px;
  padding: 3px;
}
.lang-btn {
  padding: 4px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition-fast);
  background: transparent;
  color: var(--pandora-gray-500);
}
.lang-btn.active {
  background: var(--pandora-blue);
  color: var(--pandora-white);
}
.lang-btn:hover:not(.active) { color: var(--pandora-blue); }

/* =====================================================
   HEADER / NAVIGATION
   ===================================================== */
.header {
  background: var(--pandora-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid var(--pandora-gray-200);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}
.header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}
/* Le container des mega-menus ne doit pas heriter du layout de la barre */
.mega-menu .container {
  display: block;
  height: auto;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.nav-right { justify-content: flex-end; }

/* Nav Items (with dropdown) */
.nav-item {
  position: relative;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pandora-gray-700);
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  user-select: none;
}
.nav-item:hover {
  color: var(--pandora-blue);
  background: var(--pandora-gray-50);
}
.nav-item .arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
  opacity: 0.6;
}
.nav-item:hover .arrow,
.nav-item.active .arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Nav Links */
.nav-link {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pandora-gray-700);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.nav-link:hover {
  color: var(--pandora-blue);
  background: var(--pandora-gray-50);
}

/* Logo Center */
.logo-center {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}
.logo-center img {
  height: 38px;
  width: auto;
  transition: var(--transition);
}
.logo-center:hover img { transform: scale(1.03); }

/* Nav Icons */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 14px;
}
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--pandora-gray-700);
  position: relative;
}
.icon-btn .p-icon { width: 21px; height: 21px; }
.icon-btn:hover {
  background: var(--pandora-gray-100);
  color: var(--pandora-blue);
}
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--pandora-gold);
  color: white;
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
/* Panier vide : le cercle ne doit PAS apparaitre (prioritaire sur display:flex) */
.cart-badge[hidden] { display: none !important; }

/* =====================================================
   MEGA MENU
   ===================================================== */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--pandora-white);
  border-top: 2px solid var(--pandora-gold);
  box-shadow: var(--shadow-xl);
  padding: 36px 0 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}
.mega-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.mega-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.mega-item:hover {
  background: var(--pandora-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xs);
}
.mega-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--pandora-gray-700);
}
.mega-icon .p-icon { width: 24px; height: 24px; }
.mega-item:hover .mega-icon { transform: scale(1.08); }
.mega-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--pandora-gray-800);
}
.mega-sublabel {
  font-size: 11px;
  color: var(--pandora-gray-500);
  margin-top: 2px;
}
.mega-menu-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--pandora-gray-200);
  text-align: center;
}
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pandora-blue);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 28px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--pandora-blue);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.view-all-link .p-icon { width: 16px; height: 16px; }
.view-all-link:hover { background: var(--pandora-blue); color: white; }

/* Overlay */
.mega-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(2px);
}
.mega-overlay.active { opacity: 1; visibility: visible; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 82vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eef4fb 0%, #f6ece0 45%, #fbe8ef 100%);
  display: flex;
  align-items: center;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-shapes::before {
  content: '';
  position: absolute;
  width: 650px; height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,82,118,0.05) 0%, transparent 70%);
  top: -250px; right: -120px;
}
.hero-bg-shapes::after {
  content: '';
  position: absolute;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,167,69,0.07) 0%, transparent 70%);
  bottom: -150px; left: -80px;
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-content .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-text { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pandora-gold);
  color: white;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease-out 0.2s both;
}
.hero-badge .p-icon { width: 16px; height: 16px; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  font-weight: 700;
  color: var(--pandora-blue-dark);
  line-height: 1.08;
  margin-bottom: 22px;
  animation: fadeUp 0.8s ease-out 0.4s both;
}
.hero-title .highlight { color: var(--pandora-gold); font-style: italic; }
.hero-subtitle {
  font-size: 17px;
  color: var(--pandora-gray-600);
  line-height: 1.75;
  margin-bottom: 34px;
  animation: fadeUp 0.8s ease-out 0.6s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease-out 0.8s both;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  font-size: 13px;
  color: var(--pandora-gray-600);
  animation: fadeUp 0.8s ease-out 1s both;
}
.hero-stars { display: inline-flex; gap: 2px; }
.star-filled { width: 18px; height: 18px; color: var(--pandora-gold); fill: var(--pandora-gold); }

/* Hero visual — carte produit + chips */
.hero-visual {
  position: relative;
  flex-shrink: 0;
  width: 420px;
  height: 460px;
  animation: fadeUp 0.9s ease-out 0.5s both;
}
.hero-card {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  background: var(--pandora-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: floatCard 6s ease-in-out infinite;
}
.hero-card-media {
  height: 240px;
  background: linear-gradient(135deg, #fde4ee 0%, #f3d2b8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-icon { width: 90px; height: 90px; color: rgba(26,82,118,0.5); stroke-width: 1.3; }
.hero-card-body { padding: 20px 22px 24px; }
.hero-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--pandora-gold);
  margin-bottom: 8px;
}
.hero-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--pandora-blue-dark);
  margin-bottom: 6px;
}
.hero-card-price { font-size: 14px; font-weight: 600; color: var(--pandora-gray-600); }

.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--pandora-white);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  animation: floatSlow 5s ease-in-out infinite;
}
.hero-chip .p-icon { width: 22px; height: 22px; color: var(--pandora-blue); }
.hero-chip strong { display: block; font-size: 13px; font-weight: 700; color: var(--pandora-gray-800); }
.hero-chip span { font-size: 11px; color: var(--pandora-gray-500); }
.hero-chip-delivery { top: 30px; left: -10px; animation-delay: 0.6s; }
.hero-chip-rating { bottom: 40px; right: -10px; animation-delay: 1.4s; }
.hero-chip-rating .p-icon { color: var(--pandora-danger); fill: rgba(231,76,60,0.15); }

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar {
  background: var(--pandora-white);
  border-bottom: 1px solid var(--pandora-gray-200);
  padding: 26px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--pandora-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pandora-blue);
  flex-shrink: 0;
}
.trust-icon .p-icon { width: 24px; height: 24px; }
.trust-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--pandora-gray-800); }
.trust-text span { font-size: 12px; color: var(--pandora-gray-500); }

/* =====================================================
   QUICK CATEGORIES STRIP
   ===================================================== */
.quickcat-section { padding: 40px 0 10px; }
.quickcat-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.quickcat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 90px;
  transition: var(--transition);
}
.quickcat-icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pandora-gray-700);
  transition: var(--transition);
}
.quickcat-icon .p-icon { width: 30px; height: 30px; }
.quickcat:hover .quickcat-icon { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quickcat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--pandora-gray-700);
  text-align: center;
}
.quickcat:hover .quickcat-label { color: var(--pandora-blue); }

/* =====================================================
   PRODUCTS GRID + CARD
   ===================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--pandora-white);
  border: 1px solid var(--pandora-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-media {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-icon {
  width: 84px; height: 84px;
  color: rgba(26,82,118,0.32);
  stroke-width: 1.3;
  transition: var(--transition);
}
.product-card:hover .product-icon { transform: scale(1.08); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 11px;
  border-radius: var(--radius-full);
  color: white;
  z-index: 2;
}
.badge-new  { background: var(--pandora-blue); }
.badge-best { background: var(--pandora-danger); }
.badge-gold { background: var(--pandora-gold-dark); }
.wishlist-btn {
  position: absolute;
  top: 10px; right: 10px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pandora-gray-600);
  box-shadow: var(--shadow-xs);
  opacity: 0;
  transform: translateY(-4px);
  transition: var(--transition);
  z-index: 2;
}
.wishlist-btn .p-icon { width: 18px; height: 18px; }
.product-card:hover .wishlist-btn { opacity: 1; transform: translateY(0); }
.wishlist-btn:hover { color: var(--pandora-danger); }
.wishlist-btn.active .p-icon { color: var(--pandora-danger); fill: var(--pandora-danger); }
.product-info { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.product-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--pandora-gold);
}
.product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--pandora-blue-dark);
  line-height: 1.35;
}
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
}
.product-price { font-size: 15px; font-weight: 800; color: var(--pandora-gray-800); }
.product-old {
  font-size: 12px;
  font-weight: 500;
  color: var(--pandora-gray-500);
  text-decoration: line-through;
  margin-left: 4px;
}
.product-add {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--pandora-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.product-add .p-icon { width: 19px; height: 19px; }
.product-add:hover { background: var(--pandora-gold); transform: scale(1.08); }
.product-add.added { background: var(--pandora-success); transform: scale(1.18); }

/* gradients de placeholder produit */
.pg-rose   { background: linear-gradient(135deg,#fde4ee,#f7c6dc); }
.pg-red    { background: linear-gradient(135deg,#fbe1de,#f3b3aa); }
.pg-gold   { background: linear-gradient(135deg,#f8edd3,#ebcd8a); }
.pg-green  { background: linear-gradient(135deg,#e4f3e7,#c0e4c8); }
.pg-blue   { background: linear-gradient(135deg,#e3edf8,#bcd5ef); }
.pg-amber  { background: linear-gradient(135deg,#fcefda,#f6d6a3); }
.pg-cyan   { background: linear-gradient(135deg,#def5f7,#b2e4e9); }
.pg-violet { background: linear-gradient(135deg,#efe3f5,#d6bce5); }
.pg-indigo { background: linear-gradient(135deg,#e6e8f7,#c0c6ec); }
.pg-honey  { background: linear-gradient(135deg,#fdf3d6,#f2db93); }

/* =====================================================
   CATEGORIES GRID
   ===================================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.category-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 16px;
  border: 1px solid var(--pandora-gray-200);
  background: var(--pandora-white);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pandora-blue-light);
}
.cat-icon-wrap {
  width: 78px; height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}
.cat-icon-wrap .p-icon { width: 36px; height: 36px; }
.category-card:hover .cat-icon-wrap { transform: scale(1.1); }
.cat-name {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: var(--pandora-blue-dark);
}
.cat-subtitle { font-size: 11px; color: var(--pandora-gray-500); line-height: 1.5; }

/* Category colors (fond + couleur d'icone) */
.cat-sapin .cat-icon-wrap     { background: #e8f5e9; color: #2e7d32; }
.cat-akwaba .cat-icon-wrap    { background: #fff3e0; color: #ef6c00; }
.cat-foi .cat-icon-wrap       { background: #f3e5f5; color: #7b1fa2; }
.cat-cupidon .cat-icon-wrap   { background: #fce4ec; color: #c2185b; }
.cat-maeva .cat-icon-wrap     { background: #e0f7fa; color: #0097a7; }
.cat-mifa .cat-icon-wrap      { background: #fbe9e7; color: #d84315; }
.cat-fierte .cat-icon-wrap    { background: #fff8e1; color: #f59f00; }
.cat-aphrodite .cat-icon-wrap { background: #fce4ec; color: #ad1457; }
.cat-cfa .cat-icon-wrap       { background: #e8eaf6; color: #3949ab; }
.cat-prestige .cat-icon-wrap  { background: #efebe9; color: #6d4c41; }

/* =====================================================
   SHOWCASE CARDS
   ===================================================== */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.showcase-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  cursor: pointer;
  transition: var(--transition);
  color: white;
}
.showcase-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.showcase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.showcase-card > * { position: relative; z-index: 2; }
.showcase-1 { background: linear-gradient(135deg, #1a5276, #2471a3); grid-column: span 2; min-height: 400px; }
.showcase-1::before { background: linear-gradient(to top, rgba(14,54,81,0.85), transparent 60%); }
.showcase-2 { background: linear-gradient(135deg, #c0392b, #e74c3c); }
.showcase-2::before { background: linear-gradient(to top, rgba(120,28,17,0.85), transparent 60%); }
.showcase-3 { background: linear-gradient(135deg, #d4a745, #c9982e); }
.showcase-3::before { background: linear-gradient(to top, rgba(130,100,30,0.85), transparent 60%); }
.showcase-4 { background: linear-gradient(135deg, #6c3483, #a569bd); }
.showcase-4::before { background: linear-gradient(to top, rgba(75,35,95,0.85), transparent 60%); }
.showcase-5 { background: linear-gradient(135deg, #0e6655, #1abc9c); grid-column: span 2; }
.showcase-5::before { background: linear-gradient(to top, rgba(10,70,55,0.85), transparent 60%); }

.showcase-icon { width: 52px; height: 52px; margin-bottom: 16px; opacity: 0.92; stroke-width: 1.4; }
.showcase-name { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.showcase-desc { font-size: 14px; opacity: 0.9; line-height: 1.6; max-width: 420px; }
.showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 10px 24px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  color: white;
}
.showcase-cta .p-icon { width: 16px; height: 16px; }
.showcase-cta:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* =====================================================
   HOW IT WORKS (STEPS)
   ===================================================== */
.steps-row { display: flex; justify-content: center; gap: 40px; }
.step-card { text-align: center; flex: 1; max-width: 260px; }
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--pandora-blue);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--pandora-gold);
}
.step-icon .p-icon { width: 34px; height: 34px; }
.step-title { font-size: 17px; font-weight: 700; color: var(--pandora-blue-dark); margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--pandora-gray-600); line-height: 1.65; }

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--pandora-blue-dark) 0%, var(--pandora-blue) 50%, var(--pandora-blue-light) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(212,167,69,0.07);
  top: -220px; right: -120px;
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-title { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; margin-bottom: 16px; }
.cta-desc { font-size: 17px; opacity: 0.85; margin-bottom: 36px; max-width: 550px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--pandora-blue-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .footer-logo { margin-bottom: 16px; }
.footer-brand .footer-logo img { height: 30px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.75);
}
.social-btn .p-icon { width: 19px; height: 19px; }
.social-btn:hover { background: var(--pandora-gold); color: white; transform: translateY(-2px); }
.footer-col h4 {
  color: white;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.55); font-size: 14px; transition: var(--transition-fast); }
.footer-col a:hover { color: var(--pandora-gold); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-left { font-size: 13px; }
.footer-credit { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-credit a { color: var(--pandora-gold); font-weight: 700; margin-left: 4px; }
.payment-icons { display: flex; gap: 14px; color: rgba(255,255,255,0.6); }
.payment-icons .p-icon { width: 22px; height: 22px; }

/* =====================================================
   WHATSAPP FLOATING BUTTON
   ===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.whatsapp-float-btn {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--pandora-whatsapp);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  position: relative;
}
.whatsapp-float-btn .p-icon { width: 30px; height: 30px; }
.whatsapp-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.whatsapp-float-btn .pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid var(--pandora-whatsapp);
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.whatsapp-tooltip {
  background: var(--pandora-gray-800);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatCard {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-12px); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .showcase-1, .showcase-5 { grid-column: span 2; }
  .hero-title { font-size: 48px; }
  .mega-menu-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hero-visual { display: none; }
  .hero-content .container { justify-content: center; }
  .hero-text { text-align: center; max-width: 650px; }
  .hero-actions, .hero-meta { justify-content: center; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  /* Top-bar compacte : une seule ligne (promo tronquee + langue) */
  .top-bar { padding: 7px 0; }
  .top-bar .container { flex-direction: row; justify-content: space-between; align-items: center; gap: 10px; }
  .top-bar-left { flex-wrap: nowrap; gap: 0; font-size: 11px; overflow: hidden; min-width: 0; }
  .top-bar-left span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .top-bar-left span:not(:first-child) { display: none; }
  .top-bar-right { flex-shrink: 0; gap: 0; }
  .top-bar-right > span { display: none; }
  .header > .container { height: 60px; }
  .nav-left { display: none; }
  .nav-right .nav-link { display: none; }
  .logo-center img { height: 28px; }
  .hero { min-height: auto; padding: 50px 0 60px; }
  .hero-title { font-size: 34px; }
  .hero-subtitle { font-size: 15px; }
  .section { padding: 50px 0; }
  .section-tight { padding: 40px 0; }
  .section-title { font-size: 30px; }
  .row-header .section-title { font-size: 26px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-1, .showcase-5 { grid-column: span 1; }
  .steps-row { flex-direction: column; align-items: center; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .mega-menu-grid { grid-template-columns: repeat(2, 1fr); }
  /* Barre de confiance en grille 2x2 sur mobile (plus compacte) */
  .trust-bar .container { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 12px; }
  .trust-item { gap: 10px; }
  .trust-icon { width: 42px; height: 42px; }
  .trust-text strong { font-size: 13px; }
  .trust-text span { font-size: 11px; }
  /* Cartes prestations moins hautes sur mobile */
  .showcase-card { min-height: 260px !important; padding: 24px; }
  .showcase-1 { min-height: 300px !important; }
  .cta-title { font-size: 30px; }
  .whatsapp-float-btn { width: 54px; height: 54px; }
  .quickcat-row { gap: 10px; }
  .quickcat-icon { width: 64px; height: 64px; }
  .quickcat-label { font-size: 11px; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-title { font-size: 28px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   PAGES INTERNES — en-tete + fil d'ariane
   ===================================================== */
.page-hero {
  background: linear-gradient(135deg, #eef4fb 0%, #f6ece0 55%, #fbe8ef 100%);
  padding: 48px 0 42px;
}
.page-hero-slim { padding: 22px 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--pandora-gray-500);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--pandora-blue); }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--pandora-blue-dark);
  margin-bottom: 10px;
}
.page-hero-desc { font-size: 16px; color: var(--pandora-gray-600); max-width: 640px; line-height: 1.7; }
.container-narrow { max-width: 900px; }

/* =====================================================
   BOUTIQUE — filtres + etats
   ===================================================== */
.shop-toolbar {
  background: var(--pandora-white);
  border-bottom: 1px solid var(--pandora-gray-200);
  padding: 22px 0;
}
.shop-filters { display: flex; flex-direction: column; gap: 14px; }
.filter-group { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.filter-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--pandora-gray-500);
  min-width: 74px;
}
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--pandora-gray-300);
  font-size: 13px;
  font-weight: 600;
  color: var(--pandora-gray-700);
  background: var(--pandora-white);
  cursor: pointer;
  transition: var(--transition-fast);
}
.filter-chip:hover { border-color: var(--pandora-blue); color: var(--pandora-blue); }
.filter-chip.active {
  background: var(--pandora-blue);
  border-color: var(--pandora-blue);
  color: white;
}
.shop-count { font-size: 13px; color: var(--pandora-gray-500); margin-bottom: 20px; font-weight: 600; }
.shop-empty {
  text-align: center;
  padding: 70px 20px;
  color: var(--pandora-gray-600);
}
.shop-empty .icon-xl { color: var(--pandora-gray-300); margin: 0 auto 18px; display: block; }
.shop-empty h3 { font-size: 20px; color: var(--pandora-blue-dark); margin-bottom: 8px; }
.shop-empty-actions { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.products-grid-4 { grid-template-columns: repeat(4, 1fr); }
.product-name a:hover { color: var(--pandora-blue); }

/* =====================================================
   PAGE PRODUIT
   ===================================================== */
.product-page { padding: 50px 0 60px; }
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 50px;
  align-items: start;
}
.product-gallery { position: sticky; top: 110px; }
.gallery-main {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery-icon { width: 130px; height: 130px; color: rgba(26,82,118,0.35); stroke-width: 1.2; }
.gallery-caption {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.85);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--pandora-gray-700);
}
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.gallery-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(26,82,118,0.45);
  transition: var(--transition-fast);
}
.gallery-thumb .p-icon { width: 26px; height: 26px; }
.gallery-thumb:hover { transform: translateY(-2px); }
.gallery-thumb.active { border-color: var(--pandora-blue); }

.product-detail-cat {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pandora-gold);
}
.product-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--pandora-blue-dark);
  margin: 8px 0 12px;
}
.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--pandora-gray-600);
  margin-bottom: 18px;
}
.product-detail-price {
  font-size: 30px;
  font-weight: 800;
  color: var(--pandora-gray-800);
  margin-bottom: 18px;
}
.product-detail-price .product-old { font-size: 17px; margin-left: 10px; }
.product-detail-desc { font-size: 15px; line-height: 1.75; color: var(--pandora-gray-600); margin-bottom: 26px; }
.product-block { margin-bottom: 24px; }
.product-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--pandora-blue-dark);
  margin-bottom: 12px;
}
.product-block h3 .p-icon { color: var(--pandora-gold); }
.product-contenu { display: flex; flex-direction: column; gap: 8px; }
.product-contenu li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--pandora-gray-700);
}
.product-contenu .p-icon { width: 17px; height: 17px; color: var(--pandora-success); }
.product-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.spec {
  background: var(--pandora-cream);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}
.spec-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pandora-gray-500);
  margin-bottom: 4px;
}
.spec-value { font-size: 13px; font-weight: 700; color: var(--pandora-gray-800); }
.product-block-perso {
  background: var(--pandora-cream);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.product-block-perso p { font-size: 14px; color: var(--pandora-gray-700); line-height: 1.7; }
.product-detail-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.product-reassurance {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--pandora-gray-600);
}
.product-reassurance span { display: inline-flex; align-items: center; gap: 9px; }
.product-reassurance .p-icon { width: 17px; height: 17px; color: var(--pandora-blue); }
.avis-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* =====================================================
   TEMOIGNAGES
   ===================================================== */
.temoignages-carousel { position: relative; overflow: hidden; }
.temoignages-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.temoignages-track::-webkit-scrollbar { display: none; }
.temoignage-card {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
  background: var(--pandora-white);
  border: 1px solid var(--pandora-gray-200);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 280px;
}
.temoignage-stars { display: flex; gap: 2px; }
.star-empty { width: 16px; height: 16px; color: var(--pandora-gray-300); }
.temoignage-stars .star-filled { width: 16px; height: 16px; }
.temoignage-texte { font-size: 14px; line-height: 1.7; color: var(--pandora-gray-700); flex: 1; }
.temoignage-auteur { display: flex; align-items: center; gap: 12px; }
.temoignage-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--pandora-blue);
  color: white;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.temoignage-auteur strong { display: block; font-size: 14px; color: var(--pandora-gray-800); }
.temoignage-auteur span { font-size: 12px; color: var(--pandora-gray-500); }
.temoignages-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.temoignage-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--pandora-gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pandora-gray-700);
  transition: var(--transition-fast);
}
.temoignage-btn:hover { background: var(--pandora-blue); border-color: var(--pandora-blue); color: white; }
.temoignage-btn .p-icon { width: 18px; height: 18px; }
.flip-h { transform: scaleX(-1); }
.temoignage-cta { text-align: center; margin-top: 26px; }

/* =====================================================
   PRESTATIONS
   ===================================================== */
.prestations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.prestation-card {
  background: var(--pandora-white);
  border: 1px solid var(--pandora-gray-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition);
}
.prestation-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--pandora-blue-light); }
.prestation-card-icon {
  width: 62px; height: 62px;
  border-radius: var(--radius-md);
  background: var(--pandora-cream);
  color: var(--pandora-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.prestation-card-title { font-family: 'Playfair Display', serif; font-size: 23px; color: var(--pandora-blue-dark); }
.prestation-card-sous { font-size: 13px; font-weight: 700; color: var(--pandora-gold); }
.prestation-card-desc { font-size: 14px; color: var(--pandora-gray-600); line-height: 1.7; }
.prestation-card-tarif { font-size: 13px; font-weight: 700; color: var(--pandora-gray-800); }
.prestation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}
.prestation-icon-hero {
  width: 84px; height: 84px;
  border-radius: var(--radius-lg);
  background: var(--pandora-cream);
  color: var(--pandora-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.prestation-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--pandora-blue-dark);
  margin: 30px 0 14px;
}
.prestation-desc { font-size: 15px; line-height: 1.8; color: var(--pandora-gray-600); }
.realisations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.realisation-card {
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 16px;
}
.realisation-icon { width: 34px; height: 34px; color: rgba(26,82,118,0.4); }
.realisation-card figcaption { font-size: 13px; font-weight: 700; color: var(--pandora-gray-700); }
.realisation-note { font-size: 13px; color: var(--pandora-gray-500); margin-top: 14px; }
.realisation-note a { color: var(--pandora-blue); font-weight: 700; }
.prestation-aside { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 22px; }
.prestation-tarif-card {
  background: var(--pandora-white);
  border: 1px solid var(--pandora-gray-200);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
}
.prestation-tarif-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  color: var(--pandora-blue-dark);
  margin-bottom: 12px;
}
.prestation-tarif-card h3 .p-icon { color: var(--pandora-gold); }
.prestation-tarif { font-size: 14px; font-weight: 600; color: var(--pandora-gray-700); margin-bottom: 18px; line-height: 1.6; }
.prestation-reassurance {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--pandora-gray-600);
}
.prestation-reassurance span { display: inline-flex; align-items: center; gap: 9px; }
.prestation-reassurance .p-icon { width: 16px; height: 16px; color: var(--pandora-blue); }
.prestation-autres {
  background: var(--pandora-cream);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}
.prestation-autres h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--pandora-gray-500); margin-bottom: 14px; }
.prestation-autres li { margin-bottom: 10px; }
.prestation-autres a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pandora-gray-700);
  transition: var(--transition-fast);
}
.prestation-autres a:hover { color: var(--pandora-blue); }
.prestation-autres .p-icon { width: 14px; height: 14px; }

/* =====================================================
   GALERIE + LIGHTBOX
   ===================================================== */
.galerie-filtres { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 34px; }
.galerie-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.galerie-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
}
.galerie-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.galerie-icon { width: 44px; height: 44px; color: rgba(26,82,118,0.35); }
.galerie-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 18px 14px;
  background: linear-gradient(to top, rgba(20,20,20,0.65), transparent);
  color: white;
}
.galerie-item figcaption strong { display: block; font-size: 14px; }
.galerie-item figcaption span { font-size: 11px; opacity: 0.85; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.92);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 30px;
}
.lightbox[hidden] { display: none; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 28px;
  font-size: 40px;
  color: white;
  line-height: 1;
}
.lightbox-media {
  width: min(860px, 92vw);
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-media .galerie-icon { width: 70px; height: 70px; }
.lightbox-caption { color: white; font-size: 15px; font-weight: 600; }

/* =====================================================
   A PROPOS — fondatrice + valeurs
   ===================================================== */
.fondatrice-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 50px;
  align-items: center;
}
.fondatrice-photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.fondatrice-placeholder {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #eef4fb, #fbe8ef);
  border: 2px dashed var(--pandora-gray-300);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--pandora-gray-500);
  font-size: 14px;
  font-weight: 600;
}
.fondatrice-placeholder .icon-xl { color: var(--pandora-gray-300); }
.fondatrice-texte p { font-size: 15px; line-height: 1.8; color: var(--pandora-gray-600); margin-bottom: 16px; }
.fondatrice-citation {
  position: relative;
  background: var(--pandora-cream);
  border-left: 4px solid var(--pandora-gold);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--pandora-blue-dark);
  line-height: 1.7;
  margin-top: 22px;
}
.fondatrice-citation .p-icon { color: var(--pandora-gold); margin-bottom: 8px; display: block; }
.fondatrice-citation cite { display: block; margin-top: 12px; font-size: 13px; font-style: normal; font-weight: 700; color: var(--pandora-gray-600); }
.valeurs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.valeur-card {
  background: var(--pandora-white);
  border: 1px solid var(--pandora-gray-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}
.valeur-card .trust-icon { margin: 0 auto 16px; }
.valeur-card h3 { font-size: 18px; color: var(--pandora-blue-dark); margin-bottom: 10px; }
.valeur-card p { font-size: 14px; color: var(--pandora-gray-600); line-height: 1.7; }
.livraison-infos { display: flex; justify-content: space-around; gap: 20px; flex-wrap: wrap; }

/* =====================================================
   FAQ
   ===================================================== */
.faq-theme { margin-bottom: 36px; }
.faq-theme-titre {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--pandora-blue-dark);
  margin-bottom: 16px;
}
.faq-item {
  background: var(--pandora-white);
  border: 1px solid var(--pandora-gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--pandora-gray-800);
  cursor: pointer;
  list-style: none;
  transition: var(--transition-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--pandora-blue); }
.faq-chevron { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s; color: var(--pandora-gray-500); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item p { padding: 0 20px 18px; font-size: 14px; line-height: 1.75; color: var(--pandora-gray-600); }
.faq-cta {
  text-align: center;
  background: var(--pandora-cream);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  margin-top: 20px;
}
.faq-cta h3 { font-size: 20px; color: var(--pandora-blue-dark); margin-bottom: 8px; }
.faq-cta p { font-size: 14px; color: var(--pandora-gray-600); margin-bottom: 20px; }

/* =====================================================
   DEVIS — formulaire
   ===================================================== */
.devis-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}
.devis-form {
  background: var(--pandora-white);
  border: 1px solid var(--pandora-gray-200);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 13px; font-weight: 700; color: var(--pandora-gray-700); }
.form-field input,
.form-field select {
  padding: 13px 14px;
  border: 2px solid var(--pandora-gray-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 14px;
  background: var(--pandora-white);
  transition: var(--transition-fast);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--pandora-blue); }
.devis-note { font-size: 12px; color: var(--pandora-gray-500); margin-top: 14px; line-height: 1.6; }
.devis-etapes { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--pandora-gray-700); }
.devis-etapes strong { color: var(--pandora-gold); margin-right: 6px; }
.devis-aside { position: sticky; top: 110px; }

/* =====================================================
   CGV
   ===================================================== */
.cgv-bloc { margin-bottom: 34px; }
.cgv-bloc h2 {
  font-family: 'Playfair Display', serif;
  font-size: 23px;
  color: var(--pandora-blue-dark);
  margin-bottom: 12px;
}
.cgv-bloc p, .cgv-bloc li { font-size: 14px; line-height: 1.8; color: var(--pandora-gray-600); }
.cgv-bloc ul { padding-left: 4px; display: flex; flex-direction: column; gap: 8px; }
.cgv-bloc li { padding-left: 16px; position: relative; }
.cgv-bloc li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pandora-gold);
}
.cgv-table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 14px; }
.cgv-table th, .cgv-table td {
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid var(--pandora-gray-200);
}
.cgv-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pandora-gray-500);
  background: var(--pandora-cream);
}
.cgv-table td { color: var(--pandora-gray-700); }

/* Footer contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}
.footer-contact .p-icon { width: 15px; height: 15px; margin-right: 6px; }

/* =====================================================
   RESPONSIVE — nouvelles pages (audit #21)
   ===================================================== */
@media (max-width: 1000px) {
  .product-layout { grid-template-columns: 1fr; gap: 34px; }
  .product-gallery { position: static; }
  .prestation-layout, .devis-layout { grid-template-columns: 1fr; }
  .prestation-aside, .devis-aside { position: static; }
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
  .temoignage-card { flex-basis: calc(50% - 10px); }
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .fondatrice-layout { grid-template-columns: 1fr; gap: 30px; }
  .valeurs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .page-hero-title { font-size: 30px; }
  .product-detail-title { font-size: 28px; }
  .product-specs { grid-template-columns: 1fr; }
  .avis-grid { grid-template-columns: 1fr; }
  .prestations-grid { grid-template-columns: 1fr; }
  .realisations-grid { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .temoignage-card { flex-basis: 100%; }
  .filter-label { min-width: 100%; }
  .product-detail-actions .btn { width: 100%; }
}

/* =====================================================
   PHOTOS PRODUITS REELLES
   ===================================================== */
.product-media.has-photo { background: var(--pandora-gray-50); }
.product-media.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.product-card:hover .product-media.has-photo img { transform: scale(1.05); }
.gallery-main.has-photo { background: var(--pandora-gray-50); }
.gallery-main.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================================
   HERO SLIDER (slides gerees dans l'Admin)
   ===================================================== */
.hero-slider {
  position: relative;
  /* Marges laterales identiques a celles du contenu (.container : 40px) */
  width: calc(100% - 80px);
  max-width: calc(var(--max-width) - 80px);
  margin: 28px auto 0;
  aspect-ratio: 21/9;
  min-height: 320px;
  max-height: 640px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--pandora-gray-100);
  box-shadow: var(--shadow-md);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(14,54,81,0.55) 0%, rgba(14,54,81,0.15) 55%, transparent 100%);
}
.hero-slide-overlay.pos-centre { background: rgba(14,54,81,0.35); text-align: center; }
.hero-slide-overlay.pos-centre .hero-slide-text { margin: 0 auto; }
.hero-slide-overlay.pos-droite { background: linear-gradient(270deg, rgba(14,54,81,0.55) 0%, rgba(14,54,81,0.15) 55%, transparent 100%); }
.hero-slide-overlay.pos-droite .hero-slide-text { margin-left: auto; }
.hero-slide-text { max-width: 520px; color: white; }
.hero-slide-titre {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.hero-slide-sous {
  font-size: 17px;
  opacity: 0.92;
  margin-bottom: 24px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  color: var(--pandora-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
}
.slider-nav:hover { background: white; transform: translateY(-50%) scale(1.06); }
.slider-nav .p-icon { width: 20px; height: 20px; }
.slider-prev { left: 18px; }
.slider-next { right: 18px; }
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
}
.slider-dot.active { background: white; width: 26px; border-radius: 6px; }

/* =====================================================
   PARTENAIRES
   ===================================================== */
.partenaires-section { border-top: 1px solid var(--pandora-gray-200); }
.partenaires-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.partenaire-logo {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
  opacity: 0.65;
  transition: var(--transition);
}
.partenaire-logo:hover { filter: grayscale(0); opacity: 1; transform: translateY(-3px); }
.partenaire-logo img { max-height: 64px; max-width: 140px; object-fit: contain; }

@media (max-width: 768px) {
  .hero-slider { aspect-ratio: 4/3; max-height: 420px; width: calc(100% - 40px); margin-top: 16px; }
  .hero-slide-titre { font-size: 26px; }
  .hero-slide-sous { font-size: 14px; }
  .slider-nav { width: 38px; height: 38px; }
  .partenaires-row { gap: 24px; }
  .partenaire-logo { height: 44px; }
  .partenaire-logo img { max-height: 44px; max-width: 100px; }
}

/* =====================================================
   BOUTONS EMPILES (devis, WhatsApp, panier) — espaces
   ===================================================== */
.summary-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.summary-actions .btn { width: 100%; }

/* =====================================================
   PAGE PANIER
   ===================================================== */
.panier-vide {
  text-align: center;
  padding: 70px 20px;
  color: var(--pandora-gray-600);
}
.panier-vide .icon-xl { color: var(--pandora-gray-300); margin: 0 auto 18px; display: block; }
.panier-vide h2 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--pandora-blue-dark); margin-bottom: 8px; }
.panier-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.panier-liste { display: flex; flex-direction: column; gap: 14px; }
.panier-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto auto 32px;
  align-items: center;
  gap: 16px;
  background: var(--pandora-white);
  border: 1px solid var(--pandora-gray-200);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.panier-item-img {
  width: 84px; height: 84px;
  border-radius: var(--radius-sm);
  background: var(--pandora-cream);
  overflow: hidden;
}
.panier-item-img img { width: 100%; height: 100%; object-fit: cover; }
.panier-item-infos { display: flex; flex-direction: column; gap: 4px; }
.panier-item-infos strong { font-size: 15px; color: var(--pandora-blue-dark); }
.panier-item-infos span { font-size: 13px; color: var(--pandora-gray-500); }
.panier-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--pandora-gray-300);
  border-radius: var(--radius-full);
  padding: 5px 12px;
}
.panier-item-qty button {
  width: 22px; height: 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--pandora-blue);
  line-height: 1;
}
.panier-item-qty span { font-size: 14px; font-weight: 700; min-width: 18px; text-align: center; }
.panier-item-total { font-size: 15px; font-weight: 800; color: var(--pandora-gray-800); white-space: nowrap; }
.panier-item-suppr {
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 20px;
  color: var(--pandora-gray-500);
  transition: var(--transition-fast);
}
.panier-item-suppr:hover { background: #fdecea; color: var(--pandora-danger); }
.panier-actions-bas {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.panier-vider {
  font-size: 13px;
  font-weight: 600;
  color: var(--pandora-gray-500);
  text-decoration: underline;
  transition: var(--transition-fast);
}
.panier-vider:hover { color: var(--pandora-danger); }
.panier-resume {
  position: sticky;
  top: 110px;
  background: var(--pandora-white);
  border: 1px solid var(--pandora-gray-200);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
}
.panier-resume h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: var(--pandora-blue-dark);
  margin-bottom: 18px;
}
.panier-resume h3 .p-icon { color: var(--pandora-gold); }
.resume-lignes { margin: 18px 0; }
.resume-ligne {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 14px;
  color: var(--pandora-gray-700);
  border-bottom: 1px solid var(--pandora-gray-100);
}
.resume-total {
  font-size: 18px;
  font-weight: 800;
  color: var(--pandora-blue-dark);
  border-bottom: none;
  padding-top: 14px;
}

@media (max-width: 900px) {
  .panier-layout { grid-template-columns: 1fr; }
  .panier-resume { position: static; }
  .panier-item { grid-template-columns: 64px minmax(0, 1fr) auto; grid-template-rows: auto auto; }
  .panier-item-img { width: 64px; height: 64px; grid-row: span 2; }
  .panier-item-total { grid-column: 3; }
  .panier-item-suppr { grid-column: 3; grid-row: 1; justify-self: end; }
}

/* Miniatures photo (4 angles) */
.gallery-main.has-photo img { transition: object-position 0.35s ease, transform 0.35s ease; }
.gallery-thumb.has-photo {
  overflow: hidden;
  background: var(--pandora-gray-100);
  padding: 0;
}
.gallery-thumb.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================================
   BANNIERE PERSONNALISATION DU PANIER (accueil)
   ===================================================== */
.perso-banner {
  background: linear-gradient(120deg, #eef4fb 0%, #fdf3e3 60%, #fbe8ef 100%);
  border-radius: var(--radius-lg);
  padding: 46px 50px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
.perso-banner-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pandora-gold);
  margin-bottom: 10px;
}
.perso-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--pandora-blue-dark);
  margin-bottom: 12px;
}
.perso-banner p { font-size: 15px; color: var(--pandora-gray-600); line-height: 1.7; margin-bottom: 22px; }
.perso-banner-etapes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.perso-banner-etapes span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pandora-gray-700);
}
.perso-banner-etapes .p-icon { width: 20px; height: 20px; color: var(--pandora-blue); flex-shrink: 0; }
@media (max-width: 900px) {
  .perso-banner { grid-template-columns: 1fr; padding: 32px 24px; }
  .perso-banner h2 { font-size: 26px; }
}

/* =====================================================
   CARTES DECORATION AVEC PHOTOS
   ===================================================== */
.showcase-card.has-photo,
.prestation-card.has-photo { position: relative; overflow: hidden; }
.showcase-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: var(--transition);
}
.showcase-card.has-photo:hover .showcase-photo { transform: scale(1.05); }
.showcase-card.has-photo::before {
  background: linear-gradient(to top, rgba(10,25,40,0.82) 0%, rgba(10,25,40,0.25) 55%, transparent 100%);
}
.prestation-card.has-photo {
  color: white;
  border: none;
  min-height: 300px;
  justify-content: flex-end;
}
.prestation-card.has-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10,25,40,0.85) 0%, rgba(10,25,40,0.3) 55%, transparent 100%);
}
.prestation-card.has-photo > * { position: relative; z-index: 2; }
.prestation-card.has-photo .prestation-card-title { color: white; }
.prestation-card.has-photo .prestation-card-sous { color: var(--pandora-gold-light); }
.prestation-card.has-photo .prestation-card-desc { color: rgba(255,255,255,0.85); }
.prestation-card.has-photo .prestation-card-tarif { color: rgba(255,255,255,0.9); }
.prestation-card.has-photo .prestation-card-icon {
  background: rgba(255,255,255,0.15);
  color: white;
  backdrop-filter: blur(4px);
}
.prestation-card.has-photo .row-link { color: var(--pandora-gold-light); }

/* Galerie de realisations avec photos */
.realisation-card.has-photo,
.galerie-item.has-photo { position: relative; overflow: hidden; padding: 0; }
.realisation-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.realisation-card.has-photo:hover .realisation-photo,
.galerie-item.has-photo:hover .realisation-photo { transform: scale(1.06); }
.realisation-card.has-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px;
  background: linear-gradient(to top, rgba(10,25,40,0.75), transparent);
  color: white;
  z-index: 2;
}
.lightbox-media.has-photo img { width: 100%; height: 100%; object-fit: contain; border-radius: var(--radius-lg); }

/* =====================================================
   IMAGES UPLOADEES : categories, occasions, prestations
   ===================================================== */
.quickcat-photo, .cat-photo, .mega-photo { overflow: hidden; padding: 0; }
.quickcat-photo img, .cat-photo img, .mega-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.quickcat:hover .quickcat-photo img,
.category-card:hover .cat-photo img { transform: scale(1.08); transition: var(--transition); }

/* =====================================================
   POPUP PROMOTIONNEL (gere dans l'Admin)
   ===================================================== */
.promo-popup {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 30, 0.6);
  backdrop-filter: blur(3px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.promo-popup[hidden] { display: none; }
.promo-popup-box {
  position: relative;
  background: var(--pandora-white);
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: popupEntree 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}
@keyframes popupEntree {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.promo-popup-close {
  position: absolute;
  top: 10px; right: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  font-size: 22px;
  line-height: 1;
  color: var(--pandora-gray-700);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.promo-popup-media { aspect-ratio: 16/9; background: var(--pandora-cream); }
.promo-popup-media img { width: 100%; height: 100%; object-fit: cover; }
.promo-popup-body { padding: 26px 28px 30px; text-align: center; }
.promo-popup-titre {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--pandora-blue-dark);
  margin-bottom: 8px;
  line-height: 1.25;
}
.promo-popup-sous { font-size: 15px; font-weight: 600; color: var(--pandora-gold-dark); margin-bottom: 8px; }
.promo-popup-desc { font-size: 14px; color: var(--pandora-gray-600); line-height: 1.65; margin-bottom: 16px; }
.promo-popup-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--pandora-cream);
  border: 1px dashed var(--pandora-gold);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.promo-popup-code span { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--pandora-gray-500); }
.promo-popup-code strong { font-size: 17px; letter-spacing: 2px; color: var(--pandora-blue-dark); }
.promo-code-copier {
  font-size: 12px;
  font-weight: 700;
  color: var(--pandora-blue);
  text-decoration: underline;
}
@media (max-width: 480px) {
  .promo-popup-box { max-width: 100%; }
  .promo-popup-titre { font-size: 20px; }
}

/* =====================================================
   BARRE DE RECHERCHE (ouverte via l'icone loupe)
   ===================================================== */
.search-overlay {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--pandora-white);
  border-top: 1px solid var(--pandora-gray-200);
  box-shadow: var(--shadow-lg);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
  z-index: 998;
}
.search-overlay.open { max-height: 120px; opacity: 1; padding: 20px 0; }
.search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--pandora-gray-50);
  border: 2px solid var(--pandora-gray-200);
  border-radius: var(--radius-full);
  padding: 6px 6px 6px 20px;
}
.search-form:focus-within { border-color: var(--pandora-blue); }
.search-form > .p-icon { width: 20px; height: 20px; color: var(--pandora-gray-500); flex-shrink: 0; }
.search-form input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  padding: 10px 0;
  outline: none;
  color: var(--pandora-gray-800);
}
.search-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 24px;
  color: var(--pandora-gray-500);
  flex-shrink: 0;
}
.search-close:hover { background: var(--pandora-gray-100); color: var(--pandora-danger); }

/* =====================================================
   NOTIFICATION PANIER (toast)
   ===================================================== */
.pandora-toast {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 10002;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--pandora-white);
  border: 1px solid var(--pandora-gray-200);
  border-left: 4px solid var(--pandora-success);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--pandora-gray-800);
  max-width: 340px;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.4,0.64,1), opacity 0.3s;
}
.pandora-toast.visible { transform: translateX(0); opacity: 1; }
.toast-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--pandora-success);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.pandora-toast strong { color: var(--pandora-blue-dark); }
.toast-lien {
  margin-left: auto;
  white-space: nowrap;
  font-weight: 700;
  font-size: 13px;
  color: var(--pandora-blue);
  align-self: center;
}
.toast-lien:hover { color: var(--pandora-gold); }
@media (max-width: 480px) {
  .pandora-toast { right: 12px; left: 12px; max-width: none; }
}

/* =====================================================
   PAGES D'AUTHENTIFICATION (connexion, inscription...)
   ===================================================== */
.auth-section { display: flex; justify-content: center; }
.auth-card {
  background: var(--pandora-white);
  border: 1px solid var(--pandora-gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
  width: 100%;
  max-width: 440px;
}
.auth-card-large { max-width: 560px; }
.auth-titre { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--pandora-blue-dark); text-align: center; margin-bottom: 8px; }
.auth-sous { text-align: center; font-size: 14px; color: var(--pandora-gray-600); margin-bottom: 26px; }
.auth-form .form-field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.auth-form label { font-size: 13px; font-weight: 700; color: var(--pandora-gray-700); }
.auth-form input {
  padding: 13px 15px;
  border: 2px solid var(--pandora-gray-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition-fast);
}
.auth-form input:focus { outline: none; border-color: var(--pandora-blue); }
.auth-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.auth-ligne { display: flex; justify-content: flex-end; margin-bottom: 18px; margin-top: -4px; }
.auth-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--pandora-gray-600); margin-bottom: 20px; cursor: pointer; line-height: 1.5; }
.auth-check input { width: 18px; height: 18px; margin-top: 1px; flex-shrink: 0; accent-color: var(--pandora-blue); }
.auth-lien { font-size: 13px; color: var(--pandora-blue); font-weight: 600; }
.auth-lien:hover { color: var(--pandora-gold); }
.auth-lien-fort { color: var(--pandora-blue); font-weight: 700; }
.auth-lien-fort:hover { color: var(--pandora-gold); }
.auth-bas { text-align: center; font-size: 14px; color: var(--pandora-gray-600); margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--pandora-gray-100); }
.auth-erreur { background: #fdecea; color: #c0392b; padding: 12px 16px; border-radius: var(--radius-md); font-size: 14px; margin-bottom: 20px; }
.auth-succes { background: #e6f4ea; color: #1e8449; padding: 12px 16px; border-radius: var(--radius-md); font-size: 14px; margin-bottom: 20px; max-width: 440px; }
.icon-btn-connecte { color: var(--pandora-blue); position: relative; }
.icon-btn-connecte::after { content: ''; position: absolute; top: 8px; right: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--pandora-success); border: 2px solid var(--pandora-white); }

/* =====================================================
   NEWSLETTER (footer)
   ===================================================== */
.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 0;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-news-texte h4 { color: white; font-size: 16px; margin-bottom: 4px; text-transform: none; letter-spacing: 0; }
.footer-news-texte p { font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-news-form { display: flex; gap: 10px; flex: 1; min-width: 280px; max-width: 460px; }
.footer-news-form input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  color: white;
  font-family: inherit;
  font-size: 14px;
}
.footer-news-form input::placeholder { color: rgba(255,255,255,0.5); }
.footer-news-form input:focus { outline: none; border-color: var(--pandora-gold); }
.footer-news-msg { flex-basis: 100%; font-size: 13px; margin-top: 4px; }
.footer-news-msg.ok { color: #7ee2a8; }
.footer-news-msg.ko { color: #f5b7b1; }
@media (max-width: 640px) {
  .footer-newsletter { flex-direction: column; align-items: stretch; text-align: center; }
  .footer-news-form { max-width: none; }
  .auth-card { padding: 28px 22px; }
  .auth-form .form-row { grid-template-columns: 1fr; }
}

/* =====================================================
   MENU MOBILE (hamburger + tiroir)
   ===================================================== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--pandora-gray-800);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,20,30,0.5);
  backdrop-filter: blur(2px);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 300px; max-width: 85vw;
  height: 100%;
  background: var(--pandora-white);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 30px rgba(0,0,0,0.15);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--pandora-gray-200);
}
.mobile-logo { font-size: 22px; font-weight: 800; color: var(--pandora-blue-dark); letter-spacing: 1px; }
.mobile-logo span { color: var(--pandora-gold); }
.mobile-close { font-size: 30px; line-height: 1; color: var(--pandora-gray-500); width: 40px; height: 40px; }
.mobile-menu-body { flex: 1; overflow-y: auto; padding: 12px 16px 30px; }
.mobile-link {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--pandora-gray-800);
  border-radius: var(--radius-md);
}
.mobile-link:hover, .mobile-link:active { background: var(--pandora-gray-50); color: var(--pandora-blue); }
.mobile-link .p-icon { width: 20px; height: 20px; color: var(--pandora-blue); flex-shrink: 0; }

.mobile-acc-btn {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  padding: 14px 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--pandora-gray-800);
  border-radius: var(--radius-md);
  font-family: inherit;
  text-align: left;
}
.mobile-acc-btn:hover { background: var(--pandora-gray-50); }
.mobile-acc-btn .p-icon { width: 20px; height: 20px; color: var(--pandora-blue); flex-shrink: 0; }
.mobile-acc-btn .mobile-chev { margin-left: auto; width: 16px; height: 16px; color: var(--pandora-gray-500); transition: transform 0.3s; }
.mobile-acc.open .mobile-chev { transform: rotate(180deg); }
.mobile-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-acc.open .mobile-acc-body { max-height: 600px; }
.mobile-acc-body a {
  display: block;
  padding: 11px 12px 11px 45px;
  font-size: 14px;
  color: var(--pandora-gray-600);
  border-radius: var(--radius-sm);
}
.mobile-acc-body a:hover { background: var(--pandora-gray-50); color: var(--pandora-blue); }
.mobile-sep { height: 1px; background: var(--pandora-gray-200); margin: 12px 8px; }
.mobile-lang { display: flex; gap: 8px; padding: 10px 12px; }
.mobile-lang .lang-btn {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--pandora-gray-300);
  font-size: 13px;
  font-weight: 700;
  color: var(--pandora-gray-600);
}
.mobile-lang .lang-btn.active { background: var(--pandora-blue); border-color: var(--pandora-blue); color: white; }
.mobile-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px 12px 0;
  padding: 13px;
  background: var(--pandora-whatsapp);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
}
.mobile-wa .p-icon { width: 20px; height: 20px; }

/* Affichage du hamburger uniquement en mobile */
@media (max-width: 768px) {
  .burger { display: flex; }
  .header > .container { justify-content: space-between; position: relative; }
  .nav-left { display: none; }
  /* Logo centre entre le hamburger (gauche) et les icones (droite) */
  .logo-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); padding: 0; }
  .nav-right { flex: 0 0 auto; }
  .nav-icons { margin-left: 0; }
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-overlay { display: none; }
}

/* =====================================================
   BANNIERE INSTALLATION APP (PWA)
   ===================================================== */
.pwa-install {
  position: fixed;
  left: 16px; right: 16px;
  bottom: 16px;
  z-index: 9998;
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--pandora-white);
  border: 1px solid var(--pandora-gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 12px 14px;
  animation: pwaUp 0.4s cubic-bezier(0.34,1.4,0.64,1);
}
.pwa-install[hidden] { display: none; }
@keyframes pwaUp { from { transform: translateY(120%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.pwa-install-icon img { width: 46px; height: 46px; border-radius: 11px; display: block; }
.pwa-install-txt { flex: 1; display: flex; flex-direction: column; line-height: 1.3; }
.pwa-install-txt strong { font-size: 14px; color: var(--pandora-blue-dark); }
.pwa-install-txt span { font-size: 12px; color: var(--pandora-gray-500); }
.pwa-install-btn {
  background: var(--pandora-blue);
  color: white;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}
.pwa-install-btn:hover { background: var(--pandora-gold); }
.pwa-install-close { font-size: 22px; color: var(--pandora-gray-400); width: 28px; height: 28px; flex-shrink: 0; }
/* Ne pas chevaucher le bouton WhatsApp flottant */
@media (max-width: 520px) { .pwa-install { bottom: 92px; } }

/* =====================================================
   MOBILE : filtres boutique compacts (defilement horizontal)
   ===================================================== */
@media (max-width: 768px) {
  .shop-filters { gap: 12px; }
  .filter-group { align-items: stretch; }
  .filter-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filter-chips::-webkit-scrollbar { display: none; }
  .filter-chip { flex-shrink: 0; }
  .filter-label { min-width: auto; margin-bottom: 2px; }
}
