/* ==========================================================================
   PRESTIGE HOME — PARURE DE DRAP PRESTIGE 7 PIÈCES (KING SIZE)
   Landing Page E-Commerce de Vente Directe
   Prix Officiel : 6 900 DA | Livraison : 58 Wilayas via Amana Speed
   ========================================================================== */

:root {
  /* Palette Haute Couture */
  --c-white: #FFFFFF;
  --c-ivory: #FAF8F5;
  --c-cream: #F5EFE6;
  --c-sand: #EAE2D5;
  --c-taupe: #DDD3C4;
  
  /* Or Champagne */
  --c-gold-light: #DFC493;
  --c-gold: #C5A059;
  --c-gold-rich: #B38E46;
  --c-gold-dark: #8E6E2D;
  
  /* Textes */
  --c-text-main: #1A1715;
  --c-text-body: #47413A;
  --c-text-muted: #7E756B;
  
  /* Bordures & Ombres */
  --border-gold: rgba(197, 160, 89, 0.32);
  --border-gold-subtle: rgba(197, 160, 89, 0.18);
  --shadow-gold: 0 10px 30px rgba(197, 160, 89, 0.35);
  --shadow-soft: 0 8px 24px rgba(26, 23, 21, 0.05);
  --shadow-card: 0 16px 40px -10px rgba(26, 23, 21, 0.09);
  
  /* Polices */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Rayons */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --transition: 0.25s ease;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--c-white);
  color: var(--c-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

/* Typographie */
.section-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold-rich);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-text-main);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--c-text-body);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
}

.gold-separator {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold-light), var(--c-gold-rich));
  margin: 14px 0 22px 0;
}

.gold-separator.center {
  margin-left: auto;
  margin-right: auto;
}

/* Boutons E-Commerce */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-rich) 100%);
  color: var(--c-white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-gold-light);
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(197, 160, 89, 0.45);
  background: linear-gradient(135deg, var(--c-gold-light) 0%, var(--c-gold) 100%);
}

.btn-large {
  padding: 20px 42px;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
}

.btn-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: shimmerAnim 3.6s infinite;
}

@keyframes shimmerAnim {
  0% { left: -60%; }
  30% { left: 130%; }
  100% { left: 130%; }
}

/* ==========================================================================
   1. BARRE SUPÉRIEURE ANIMÉE (MARQUEE)
   ========================================================================== */

.announcement-bar {
  background: #1A1715;
  color: var(--c-gold-light);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  position: relative;
  z-index: 1001;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.announcement-bar:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
}

.marquee-sep {
  color: var(--c-gold);
  font-size: 0.72rem;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   2. HEADER PREMIUM (CENTRÉ & NAVIGATION)
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold-subtle);
  box-shadow: 0 4px 20px rgba(26, 23, 21, 0.04);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
  position: relative;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-toggle-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.menu-toggle-btn .bar {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--c-text-main);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle-btn:hover .bar {
  background-color: var(--c-gold-rich);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-text-main);
  text-decoration: none;
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-gold);
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--c-gold-rich);
}

.nav-link:hover::after {
  width: 100%;
}

.header-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.18em;
  color: var(--c-text-main);
  line-height: 1.1;
}

.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--c-gold-rich);
  margin-top: 2px;
  text-transform: uppercase;
}

.logo-mark {
  color: var(--c-gold);
  font-size: 1.25rem;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch-box {
  display: inline-flex;
  align-items: center;
  background: var(--c-ivory);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 3px 8px;
  gap: 4px;
}

.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.lang-btn.active {
  color: var(--c-white);
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-rich) 100%);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(197, 160, 89, 0.3);
}

.lang-sep {
  color: var(--c-taupe);
  font-size: 0.75rem;
}

.btn-header-order {
  display: inline-block;
  background: var(--c-gold);
  color: var(--c-white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
}

.btn-header-order:hover {
  background: var(--c-gold-rich);
  transform: translateY(-1px);
}

/* ==========================================================================
   MENU TIROIR MOBILE (DRAWER)
   ========================================================================== */

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.3s ease;
}

.mobile-drawer.open {
  visibility: visible;
  pointer-events: auto;
}

.drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 16, 15, 0.65);
  opacity: 0;
  backdrop-filter: blur(4px);
  transition: opacity 0.3s ease;
}

.mobile-drawer.open .drawer-overlay {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85%;
  height: 100%;
  background: var(--c-white);
  box-shadow: 8px 0 35px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px 20px;
  overflow-y: auto;
}

.mobile-drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-gold-subtle);
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.drawer-brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  color: var(--c-text-main);
  line-height: 1.1;
}

.drawer-brand-sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--c-gold-rich);
}

.drawer-close-btn {
  background: none;
  border: none;
  font-size: 1.9rem;
  color: var(--c-text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-gold-subtle);
}

.drawer-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-text-main);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.drawer-link:hover {
  color: var(--c-gold-rich);
}

.drawer-lang-section {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--border-gold-subtle);
}

.drawer-lang-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.drawer-lang-switch {
  display: flex;
  width: 100%;
  justify-content: space-around;
  padding: 6px;
}

.drawer-lang-switch .lang-btn {
  flex: 1;
  text-align: center;
  padding: 8px 12px;
  font-size: 0.85rem;
}

.drawer-footer {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-drawer-cta {
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 0.88rem;
}

.drawer-note {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  text-align: center;
  line-height: 1.4;
}

/* ==========================================================================
   SECTION 1 — HERO
   ========================================================================== */

.hero-section {
  padding: 44px 0 68px 0;
  background: radial-gradient(circle at 15% 20%, #FAF8F5 0%, #FFFFFF 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 48px;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-gold);
}

.hero-tag-overlay {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(26, 23, 21, 0.9);
  backdrop-filter: blur(6px);
  color: var(--c-gold-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(197, 160, 89, 0.4);
  z-index: 2;
}

.hero-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-ivory);
  border: 1px solid var(--border-gold);
  color: var(--c-gold-rich);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.badge-sparkle {
  color: var(--c-gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  line-height: 1.12;
  font-weight: 600;
  color: var(--c-text-main);
  margin-bottom: 10px;
}

.hero-secondary-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: var(--c-gold-rich);
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.35;
}

.hero-short-desc {
  font-size: 1.02rem;
  color: var(--c-text-body);
  line-height: 1.65;
  margin-bottom: 20px;
}

.hero-attributes {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.hero-attr-tag {
  background: var(--c-ivory);
  border: 1px solid var(--border-gold);
  color: var(--c-text-main);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}

.hero-attr-tag.gold-border {
  border-color: var(--c-gold);
  color: var(--c-gold-dark);
}

.hero-offer-box {
  background: var(--c-ivory);
  border: 2px solid var(--c-gold);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-soft);
}

.hero-offer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.offer-badge-pill {
  background: #1A1715;
  color: var(--c-gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.offer-total-pieces {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--c-gold-dark);
}

.hero-price-display {
  margin-bottom: 18px;
}

.price-main {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.8vw, 3.8rem);
  font-weight: 700;
  color: var(--c-gold-rich);
  line-height: 1;
}

.btn-hero-cta {
  width: 100%;
  padding: 18px;
  font-size: 1rem;
}

.hero-delivery-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text-body);
  margin-top: 14px;
  flex-wrap: wrap;
}

.hero-delivery-badges .dot {
  color: var(--c-gold);
}

/* ==========================================================================
   SECTION 2 — ACCROCHE
   ========================================================================== */

.section-teaser {
  padding: 80px 0;
  background: var(--c-white);
  border-top: 1px solid var(--c-sand);
}

.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 54px;
}

.teaser-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-gold);
}

.teaser-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.teaser-text {
  font-size: 1.15rem;
  color: var(--c-text-body);
  line-height: 1.7;
  margin-bottom: 26px;
}

/* ==========================================================================
   SECTION 3 — LES 7 PIÈCES
   ========================================================================== */

.section-pieces {
  padding: 85px 0;
  background: var(--c-ivory);
  border-top: 1px solid var(--border-gold-subtle);
  border-bottom: 1px solid var(--border-gold-subtle);
}

.highlight-total-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-rich) 100%);
  color: var(--c-white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  margin-top: 10px;
}

.pieces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.piece-item-card {
  background: var(--c-white);
  padding: 30px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold-subtle);
  box-shadow: var(--shadow-soft);
  position: relative;
  text-align: center;
  transition: var(--transition);
}

.piece-item-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-gold);
  box-shadow: var(--shadow-card);
}

.piece-item-card.featured {
  border: 2px solid var(--c-gold);
  background: radial-gradient(circle at 50% 0%, #FFFFFF 0%, #FAF6EE 100%);
}

.piece-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.piece-emoji {
  font-size: 2rem;
  margin-bottom: 12px;
}

.piece-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--c-text-main);
  margin-bottom: 6px;
}

.piece-badge-detail {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-gold-dark);
  background: var(--c-cream);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.piece-sub {
  font-size: 0.85rem;
  color: var(--c-text-body);
  line-height: 1.5;
}

/* ==========================================================================
   SECTION 4 — KING SIZE
   ========================================================================== */

.section-kingsize {
  padding: 60px 0;
  background: var(--c-white);
}

.kingsize-box {
  max-width: 820px;
  margin: 0 auto;
  background: var(--c-ivory);
  border: 2px solid var(--c-gold);
  border-radius: var(--radius-lg);
  padding: 44px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.kingsize-badge {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--c-gold-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.kingsize-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--c-text-main);
  font-weight: 600;
}

.kingsize-desc {
  font-size: 1.15rem;
  color: var(--c-text-body);
  max-width: 620px;
  margin: 0 auto 20px auto;
}

.kingsize-meta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-gold-dark);
  flex-wrap: wrap;
}

.kingsize-meta-row .sep {
  color: var(--c-sand);
}

/* ==========================================================================
   SECTION 5 — GALERIE
   ========================================================================== */

.section-gallery {
  padding: 85px 0;
  background: var(--c-white);
  border-top: 1px solid var(--c-sand);
}

.gallery-wrapper {
  max-width: 880px;
  margin: 0 auto;
}

.gallery-display-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #181614;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-gold);
  margin-bottom: 16px;
  cursor: zoom-in;
}

.gallery-display-frame img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-gold);
  color: var(--c-text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 5;
}

.gallery-arrow:hover {
  background: var(--c-gold);
  color: var(--c-white);
}

.gallery-arrow.prev { left: 14px; }
.gallery-arrow.next { right: 14px; }

.gallery-zoom-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(26, 23, 21, 0.78);
  color: var(--c-white);
  font-size: 0.74rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

.gallery-photo-counter {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-text-main);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
}

.gallery-thumbs-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.thumb-item {
  background: none;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: var(--transition);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-item.active {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.35);
}

/* ==========================================================================
   SECTION 6 — AVANTAGES (COURTE & PREMIUM)
   ========================================================================== */

.section-why {
  padding: 70px 0;
  background: var(--c-ivory);
  border-top: 1px solid var(--border-gold-subtle);
  border-bottom: 1px solid var(--border-gold-subtle);
}

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

.why-card {
  background: var(--c-white);
  padding: 24px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold-subtle);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-gold);
  box-shadow: var(--shadow-card);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.why-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-text-main);
  margin-bottom: 4px;
}

.why-desc {
  font-size: 0.82rem;
  color: var(--c-text-body);
  line-height: 1.4;
}

/* ==========================================================================
   SECTION 7 — AVIS CLIENTS VÉRIFIÉS
   ========================================================================== */

.section-reviews {
  padding: 85px 0;
  background: var(--c-white);
  border-bottom: 1px solid var(--border-gold-subtle);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.review-card {
  background: var(--c-ivory);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-gold);
  box-shadow: var(--shadow-card);
}

.review-card.featured {
  border: 2px solid var(--c-gold);
  background: radial-gradient(circle at 50% 0%, #FFFFFF 0%, #FAF6EE 100%);
}

.review-stars {
  color: #D4AF37;
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-quote {
  font-size: 0.96rem;
  color: var(--c-text-body);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 22px;
  flex-grow: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-gold-subtle);
  padding-top: 14px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-rich) 100%);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 2px 6px rgba(197, 160, 89, 0.3);
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.review-author {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--c-text-main);
}

.review-badge-verified {
  font-size: 0.76rem;
  color: #2E7D32;
  font-weight: 600;
}

/* ==========================================================================
   SECTION 7 — MISE EN VALEUR
   ========================================================================== */

.section-highlight {
  padding: 90px 0;
  background: var(--c-white);
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 54px;
}

.highlight-text {
  font-size: 1.15rem;
  color: var(--c-text-body);
  line-height: 1.7;
  margin-bottom: 22px;
}

.highlight-pills-list {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.h-pill {
  background: var(--c-ivory);
  border: 1px solid var(--border-gold);
  color: var(--c-text-main);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

.highlight-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-gold);
}

.highlight-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ==========================================================================
   SECTION 8 — OFFRE / PRIX (6 900 DA)
   ========================================================================== */

.section-offer-pricing {
  padding: 85px 0;
  background: var(--c-ivory);
  border-top: 1px solid var(--border-gold-subtle);
  border-bottom: 1px solid var(--border-gold-subtle);
}

.offer-card-deal {
  background: radial-gradient(circle at 50% 0%, #FFFFFF 0%, #FAF5ED 100%);
  border: 2px solid var(--c-gold);
  border-radius: var(--radius-lg);
  padding: 56px 28px;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-card), 0 0 28px rgba(197, 160, 89, 0.2);
}

.offer-deal-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-rich) 100%);
  color: var(--c-white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.offer-deal-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: var(--c-text-main);
  margin-bottom: 4px;
}

.offer-deal-size {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-gold-rich);
  margin-bottom: 20px;
}

.offer-deal-pricing {
  margin-bottom: 20px;
}

.price-main-big {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.5vw, 4.6rem);
  font-weight: 700;
  color: var(--c-gold-rich);
  line-height: 1;
}

.offer-delivery-info {
  margin-bottom: 26px;
}

.offer-delivery-info p {
  font-size: 0.98rem;
  color: var(--c-text-body);
  font-weight: 600;
  margin: 4px 0;
}

.offer-cod-reminder {
  font-size: 0.88rem;
  color: var(--c-gold-dark);
  font-weight: 600;
  margin-top: 16px;
}

/* ==========================================================================
   SECTION 9 — FORMULAIRE DE COMMANDE
   ========================================================================== */

.section-order {
  padding: 45px 0 95px 0;
  background: var(--c-white);
}

.order-wrap-container {
  max-width: 700px;
}

#commande,
.order-main-box {
  background: var(--c-white);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  scroll-margin-top: 74px;
}

.order-fiche-top-bar {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF8F5 100%);
  border-bottom: 1px solid var(--border-gold-subtle);
  padding: 24px 22px 20px 22px;
  text-align: center;
}

.order-fiche-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-rich) 100%);
  color: var(--c-white);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(197, 160, 89, 0.25);
}

.order-fiche-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--c-text-main);
  line-height: 1.25;
  margin-bottom: 6px;
}

.order-fiche-sub {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  font-weight: 500;
}

.order-delivery-banner {
  background: #1A1715;
  color: var(--c-gold-light);
  padding: 12px 18px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.order-delivery-banner .dot {
  color: var(--c-gold);
}

.order-box-header {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--c-ivory);
  border-bottom: 1px solid var(--c-sand);
  padding: 18px 24px;
}

.order-thumb-img {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  object-fit: cover;
}

.order-item-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--c-text-main);
  margin-bottom: 3px;
}

.order-item-features {
  font-size: 0.85rem;
  color: var(--c-text-body);
  margin-bottom: 3px;
}

.order-item-price {
  font-size: 0.9rem;
  color: var(--c-gold-rich);
}

.order-form-body {
  padding: 28px 24px;
}

.form-field {
  margin-bottom: 18px;
}

.form-row-2cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text-main);
  margin-bottom: 6px;
}

label .req {
  color: #C0392B;
}

input[type="text"],
input[type="tel"],
input[type="number"],
select {
  width: 100%;
  padding: 13px 15px;
  background: var(--c-ivory);
  border: 1px solid #D5CECE;
  border-radius: var(--radius-sm);
  color: var(--c-text-main);
  font-size: 0.95rem;
  transition: var(--transition);
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--c-gold);
  background: var(--c-white);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 34px;
}

.select-wrapper select:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  background-color: #F0ECE6;
  border-color: #D5CECE;
  color: var(--c-text-muted);
}

.select-wrapper select:not(:disabled) {
  opacity: 1;
  cursor: pointer;
  background-color: var(--c-ivory);
}

.select-wrapper::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-gold-rich);
  pointer-events: none;
}

/* ==========================================================================
   MODES DE LIVRAISON AMANA SPEED (DOMICILE / STOP DESK)
   ========================================================================== */

.delivery-mode-group {
  margin-top: 10px;
  margin-bottom: 20px;
  animation: fadeInDown 0.3s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delivery-mode-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-text-main);
  margin-bottom: 10px;
}

.delivery-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.delivery-card-label {
  display: block;
  position: relative;
  cursor: pointer;
  margin: 0;
}

.delivery-card-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.delivery-card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 16px;
  min-height: 84px;
  background: var(--c-ivory);
  border: 1.5px solid var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  transition: all 0.22s ease;
  position: relative;
}

.delivery-card-label:hover .delivery-card-box {
  border-color: var(--c-gold);
  background: #FFFDF9;
}

.delivery-card-label input[type="radio"]:checked + .delivery-card-box {
  border-color: var(--c-gold-rich);
  background: #FFFFFF;
  box-shadow: 0 4px 16px rgba(197, 160, 89, 0.22);
}

.delivery-card-main {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.delivery-card-radio-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #C0B5A7;
  display: inline-block;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 0.2s ease;
}

.delivery-card-label input[type="radio"]:checked + .delivery-card-box .delivery-card-radio-circle {
  border-color: var(--c-gold-rich);
  background: var(--c-gold-rich);
  box-shadow: inset 0 0 0 3px #FFFFFF;
}

.delivery-card-texts {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.delivery-card-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-text-main);
}

.delivery-card-sub {
  font-size: 0.74rem;
  color: var(--c-text-muted);
  line-height: 1.3;
}

.delivery-card-price {
  align-self: flex-end;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--c-gold-dark);
  margin-top: 8px;
  font-family: var(--font-sans);
}

.delivery-card-price.unconfirmed {
  font-size: 0.76rem;
  color: #B3541E;
  font-style: italic;
  font-weight: 600;
}

.qty-control {
  display: flex;
  align-items: center;
  background: var(--c-ivory);
  border: 1px solid #D5CECE;
  border-radius: var(--radius-sm);
  height: 48px;
}

.qty-btn {
  width: 44px;
  height: 100%;
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-gold-rich);
  cursor: pointer;
}

.qty-control input {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  text-align: center;
  font-weight: 700;
  padding: 0;
}

.order-recap-box {
  background: var(--c-ivory);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 22px 0 26px 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.order-recap-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--c-text-main);
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-gold-subtle);
}

.recap-badge-icon {
  font-size: 1.15rem;
}

.recap-body-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.recap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: var(--c-text-body);
}

.recap-label {
  font-weight: 500;
}

.recap-val {
  font-weight: 600;
  color: var(--c-text-main);
  text-align: right;
}

.recap-row.shipping-row {
  background: rgba(197, 160, 89, 0.08);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin: 4px 0;
  border: 1px dashed var(--border-gold);
}

.recap-row.shipping-row .recap-val {
  color: var(--c-gold-dark);
  font-weight: 700;
}

.recap-row.total-row {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--c-text-main);
  border-top: 1px solid var(--c-sand);
  padding-top: 14px;
  margin-top: 6px;
}

.recap-row.total-row .recap-label {
  letter-spacing: 0.04em;
  font-weight: 700;
}

.gold-total {
  color: var(--c-gold-rich);
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
}

.amana-highlight {
  color: var(--c-gold-dark);
  font-weight: 600;
}

.field-error {
  display: none;
  font-size: 0.78rem;
  color: #C0392B;
  margin-top: 4px;
}

.form-field.has-error input,
.form-field.has-error select {
  border-color: #C0392B;
  background: #FFF5F5;
}

.form-field.has-error .field-error {
  display: block;
}

.order-submit-wrap {
  margin-top: 10px;
}

.btn-submit-full {
  width: 100%;
  padding: 18px;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-submit-full:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.4);
  box-shadow: none;
  transform: none !important;
}

.btn-submit-full:disabled::after {
  display: none;
}

.order-callback-text {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  text-align: center;
  margin-top: 14px;
  font-weight: 500;
}

/* ==========================================================================
   SECTION 10 — RÉASSURANCE (4 CARTES)
   ========================================================================== */

.section-reassurance {
  padding: 60px 0;
  background: var(--c-ivory);
  border-top: 1px solid var(--border-gold-subtle);
  border-bottom: 1px solid var(--border-gold-subtle);
}

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

.reassurance-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: var(--c-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold-subtle);
  box-shadow: var(--shadow-soft);
}

.reassurance-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.reassurance-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text-main);
  margin-bottom: 4px;
}

.reassurance-desc {
  font-size: 0.82rem;
  color: var(--c-text-muted);
}

/* ==========================================================================
   SECTION 11 — CTA FINAL
   ========================================================================== */

.section-final-banner {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  color: var(--c-white);
}

.final-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.final-bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.final-bg-tint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 23, 21, 0.55);
}

.final-banner-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.final-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.final-subheadline {
  font-size: 1.15rem;
  color: var(--c-sand);
  margin-bottom: 16px;
}

.final-price-tag {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--c-gold-light);
  margin-bottom: 12px;
}

.final-shipping-note {
  font-size: 0.9rem;
  color: var(--c-sand);
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.final-shipping-note .sep {
  color: var(--c-gold);
}

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

.footer-clean {
  background: #141211;
  color: var(--c-text-muted);
  padding: 22px 0;
  font-size: 0.82rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-white);
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */

.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(14, 13, 12, 0.94);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-close-btn {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: var(--c-white);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2010;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(197, 160, 89, 0.4);
  color: var(--c-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2010;
}

.lightbox-nav-btn.prev { left: 18px; }
.lightbox-nav-btn.next { right: 18px; }

.lightbox-inner {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.lightbox-info-bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 14px;
  color: var(--c-sand);
  font-size: 0.9rem;
}

/* ==========================================================================
   MODAL SUCCÈS COMMANDE
   ========================================================================== */

.order-success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.order-success-modal.open {
  display: flex;
}

.order-success-box {
  background: var(--c-white);
  border-radius: var(--radius-md);
  border: 2px solid var(--c-gold);
  padding: 36px 26px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.success-icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--c-ivory);
  border: 2px solid var(--c-gold);
  color: var(--c-gold-rich);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.success-subtitle {
  font-size: 0.92rem;
  color: var(--c-text-body);
  margin-bottom: 16px;
}

.success-details-box {
  background: var(--c-ivory);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: left;
  font-size: 0.85rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.success-call-alert {
  font-size: 0.85rem;
  color: var(--c-gold-rich);
  margin-bottom: 20px;
  font-weight: 600;
}

/* ==========================================================================
   STICKY CTA MOBILE
   ========================================================================== */

.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--c-gold);
  padding: 10px 16px;
  z-index: 990;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

.sticky-cta-flex {
  max-width: 480px;
  margin: 0 auto;
}

.btn-sticky-full {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* ==========================================================================
   RESPONSIVE (MOBILE FIRST & DESKTOP)
   ========================================================================== */

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .btn-header-order {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .teaser-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .pieces-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .reassurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .header-container {
    height: 64px;
  }

  .brand-name {
    font-size: 1.25rem;
    letter-spacing: 0.14em;
  }

  .brand-sub {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
  }

  .hero-section {
    padding: 24px 0 40px 0;
  }
  
  .hero-title {
    font-size: 2.1rem;
  }
  
  .hero-secondary-title {
    font-size: 1.25rem;
  }
  
  .hero-offer-box {
    padding: 18px 16px;
  }
  
  .pieces-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .piece-item-card {
    padding: 18px 12px;
  }
  
  .piece-num {
    font-size: 1.5rem;
  }
  
  .piece-emoji {
    font-size: 1.6rem;
  }
  
  .piece-name {
    font-size: 1.1rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .why-card {
    padding: 18px 12px;
  }
  
  .why-icon {
    font-size: 1.6rem;
  }
  
  .why-title {
    font-size: 1.1rem;
  }
  
  .form-row-2cols {
    grid-template-columns: 1fr;
  }

  .delivery-options-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .order-form-body {
    padding: 20px 16px;
  }
  
  .gallery-thumbs-row {
    gap: 6px;
  }
  
  .reassurance-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .reassurance-card {
    padding: 18px 12px;
  }
  
  .footer-row {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  
  .order-recap-box {
    padding: 16px 14px;
    margin: 18px 0 20px 0;
  }

  .recap-row {
    font-size: 0.88rem;
  }

  .recap-row.total-row {
    font-size: 1.05rem;
    padding-top: 12px;
  }

  .gold-total {
    font-size: 1.25rem;
  }

  .btn-submit-full {
    padding: 16px;
    font-size: 0.98rem;
  }

  .section-order {
    padding: 24px 0 60px 0;
  }

  .order-fiche-top-bar {
    padding: 20px 14px 16px 14px;
  }

  .order-fiche-title {
    font-size: 1.55rem;
  }

  .order-fiche-sub {
    font-size: 0.86rem;
  }

  .sticky-mobile-cta {
    display: block;
  }
}

/* ==========================================================================
   SUPPORT BILINGUE & DIRECTION RTL (ARABE)
   ========================================================================== */

html[dir="rtl"] body {
  font-family: 'Cairo', var(--font-sans);
}

html[dir="rtl"] .section-title,
html[dir="rtl"] .hero-title,
html[dir="rtl"] .offer-deal-title,
html[dir="rtl"] .final-headline,
html[dir="rtl"] .order-fiche-title,
html[dir="rtl"] .kingsize-title,
html[dir="rtl"] .brand-name,
html[dir="rtl"] .drawer-brand-name,
html[dir="rtl"] .why-title,
html[dir="rtl"] .piece-name {
  font-family: 'Cairo', var(--font-sans);
  font-weight: 700;
}

html[dir="rtl"] .drawer-panel {
  left: auto;
  right: 0;
  transform: translateX(100%);
  box-shadow: -8px 0 35px rgba(0, 0, 0, 0.18);
}

html[dir="rtl"] .mobile-drawer.open .drawer-panel {
  transform: translateX(0);
}

html[dir="rtl"] .btn-primary svg,
html[dir="rtl"] .btn-large svg,
html[dir="rtl"] .btn-hero-cta svg {
  transform: scaleX(-1);
}

html[dir="rtl"] .form-field {
  text-align: right;
}

html[dir="rtl"] .select-wrapper::after {
  right: auto;
  left: 14px;
}

html[dir="rtl"] .select-wrapper select {
  padding-left: 36px;
  padding-right: 14px;
}

html[dir="rtl"] .order-box-header {
  flex-direction: row-reverse;
  text-align: right;
}

html[dir="rtl"] .recap-row {
  flex-direction: row-reverse;
}

html[dir="rtl"] .review-footer {
  flex-direction: row-reverse;
  text-align: right;
}

html[dir="rtl"] .review-meta {
  text-align: right;
}

html[dir="rtl"] .gallery-photo-counter {
  left: auto;
  right: 14px;
}

html[dir="rtl"] .gallery-zoom-badge {
  right: auto;
  left: 14px;
}

html[dir="rtl"] .order-header-info {
  text-align: right;
}

html[dir="rtl"] .delivery-card-box {
  text-align: right;
}

html[dir="rtl"] .delivery-card-main {
  flex-direction: row-reverse;
}

html[dir="rtl"] .delivery-card-price {
  align-self: flex-start;
}

html[dir="rtl"] .order-callback-text {
  direction: rtl;
}

html[dir="rtl"] .success-details-box {
  text-align: right;
  direction: rtl;
}

html[dir="rtl"] .marquee-track {
  animation: marquee-rtl 32s linear infinite;
}

@keyframes marquee-rtl {
}


