/* =========================================
   ADIM SHOP — style.css
   Premium Dark E-commerce UI
   Palette: #0F172A / #2563EB / #F59E0B
   ========================================= */

/* ---- CSS VARIABLES ---- */
:root {
  --clr-bg: #0f172a;
  --clr-bg2: #111827;
  --clr-bg3: #1e293b;
  --clr-card: #1a2744;
  --clr-primary: #2563eb;
  --clr-primary-h: #1d4ed8;
  --clr-accent: #f59e0b;
  --clr-accent-h: #d97706;
  --clr-text: #e2e8f0;
  --clr-text-muted: #94a3b8;
  --clr-border: rgba(255, 255, 255, 0.08);
  --clr-white: #fff;
  --clr-success: #10b981;
  --clr-error: #ef4444;

  --font-primary: "Cairo", "Tajawal", sans-serif;
  --font-display: "Noto Serif Arabic", "Cairo", serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.3);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.18s ease;

  --container: 1200px;
  --gap: clamp(1rem, 4vw, 2rem);
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  direction: rtl;
}

body.lang-fr {
  direction: ltr;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
select,
input,
textarea {
  font-family: inherit;
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--clr-white);
}
h1 {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 900;
}
h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
}
h3 {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 700;
}

/* ---- CONTAINER ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2.5rem);
}

/* ---- SECTIONS ---- */
.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85em 2em;
  background: linear-gradient(135deg, var(--clr-primary) 0%, #1d4ed8 100%);
  color: var(--clr-white);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.55);
  background: linear-gradient(135deg, #3b82f6 0%, var(--clr-primary) 100%);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-xl {
  padding: 1em 2.5em;
  font-size: 1.15rem;
}
.btn-lg {
  padding: 0.9em 2em;
  font-size: 1.05rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--clr-border);
  color: var(--clr-text-muted);
  font-weight: 600;
  transition:
    border-color var(--transition-fast),
    color var(--transition-fast),
    background var(--transition-fast);
}
.btn-ghost:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  background: rgba(37, 99, 235, 0.06);
}

.btn-nav-order {
  background: var(--clr-accent);
  color: #0f172a;
  padding: 0.45em 1.2em;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast);
}
.btn-nav-order:hover {
  background: var(--clr-accent-h);
  transform: translateY(-1px);
}

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.section-header h2 {
  margin: 0.4em 0 0.6em;
}
.section-header p {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--clr-primary);
  padding: 0.3em 1em;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==============================
   HEADER
============================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: -0.01em;
}
.logo-icon {
  font-size: 1.5rem;
}
.logo strong {
  color: var(--clr-accent);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-right: auto; /* RTL: push to left */
}
.lang-fr .header-nav {
  margin-right: unset;
  margin-left: auto;
}

.header-nav a {
  color: var(--clr-text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}
.header-nav a:hover {
  color: var(--clr-white);
}

.lang-toggle {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  padding: 0.35em 0.85em;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition:
    background var(--transition-fast),
    color var(--transition-fast);
}
.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--clr-white);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--clr-text-muted);
  border-radius: 2px;
  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  padding: 0.5rem 0;
}
.mobile-nav a {
  padding: 0.8rem 1.5rem;
  color: var(--clr-text-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--clr-border);
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover {
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.04);
}
.mobile-nav.open {
  display: flex;
}

/* ==============================
   HERO
============================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 80% 70% at 50% -10%,
      rgba(37, 99, 235, 0.18) 0%,
      transparent 60%
    ),
    var(--clr-bg);
}

/* Animated mesh orbs */
.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: orbFloat 12s ease-in-out infinite;
}
.mesh-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--clr-primary);
  top: -20%;
  right: -15%;
  animation-delay: 0s;
}
.mesh-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--clr-accent);
  bottom: -10%;
  left: -10%;
  animation-delay: -4s;
}
.mesh-orb-3 {
  width: 300px;
  height: 300px;
  background: #8b5cf6;
  top: 50%;
  left: 30%;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -40px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.97);
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.15),
    rgba(245, 158, 11, 0.05)
  );
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--clr-accent);
  padding: 0.4em 1em;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  width: fit-content;
}

@keyframes pulseBadge {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.3);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
  }
}
.animate-pulse-badge {
  animation: pulseBadge 2.5s infinite;
}

.hero-title {
  letter-spacing: -0.02em;
}
.hero-title em {
  display: block;
  font-style: normal;
  background: linear-gradient(135deg, var(--clr-accent) 0%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: var(--clr-text-muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 480px;
}

.trust-badges-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.tbadge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--clr-success);
  font-weight: 600;
}
.tbadge svg {
  width: 14px;
  height: 14px;
}

.hot-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  padding: 0.35em 0.9em;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  width: fit-content;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mug-showcase {
  position: relative;
  width: clamp(260px, 40vw, 400px);
}

.mug-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(37, 99, 235, 0.25) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.mug-card-hero {
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.2),
    rgba(15, 23, 42, 0.8)
  );
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.mug-card-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(37, 99, 235, 0.6),
    transparent
  );
}

.mug-svg-wrapper {
  width: 100%;
  animation: mugFloat 4s ease-in-out infinite;
}
@keyframes mugFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.mug-hero-svg {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}

/* Steam animation */
.steam {
  animation: steamRise 3s ease-in-out infinite;
}
.steam-2 {
  animation-delay: -1s;
}
.steam-3 {
  animation-delay: -2s;
}
@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translateY(0) scaleX(1);
  }
  30% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: translateY(-15px) scaleX(0.8);
  }
}

.price-pill-hero {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  background: linear-gradient(135deg, var(--clr-accent), #d97706);
  padding: 0.4em 1.2em;
  border-radius: var(--radius-full);
  color: #0f172a;
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}
.price-amount {
  font-size: 1.8rem;
  font-family: var(--font-display);
}
.price-currency {
  font-size: 1rem;
  font-weight: 700;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  animation: floatCard 5s ease-in-out infinite;
}
.float-card p {
  color: var(--clr-text-muted);
  font-size: 0.75rem;
  font-weight: 500;
}
.float-card-1 {
  top: -10px;
  right: -30px;
  animation-delay: 0s;
}
.float-card-2 {
  bottom: 30px;
  left: -30px;
  animation-delay: -2.5s;
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.5;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid var(--clr-text-muted);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--clr-text-muted);
  border-radius: 2px;
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

/* ==============================
   STATS BAR
============================== */
.stats-bar {
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 1.5rem 0;
}
.stats-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0 2rem;
}
.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--clr-accent);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
}

/* ==============================
   PRODUCT SECTION
============================== */
.product-section {
  background: var(--clr-bg2);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* Gallery */
.product-gallery {
  position: relative;
}

.gallery-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.15),
    rgba(15, 23, 42, 0.9)
  );
  border: 1px solid rgba(37, 99, 235, 0.2);
  position: relative;
}
.gallery-img-wrapper {
  padding: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
  transition: transform var(--transition);
}
.gallery-main:hover .gallery-img-wrapper {
  transform: scale(1.04);
}
.gallery-mug-svg {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  animation: mugFloat 4s ease-in-out infinite;
}

.gallery-zoom-hint {
  position: absolute;
  bottom: 1rem;
  left: 1rem; /* RTL: will be right in ltr */
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.gallery-main:hover .gallery-zoom-hint {
  opacity: 1;
}

.gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  justify-content: center;
}
.thumb {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--clr-bg3);
  transition:
    border-color var(--transition-fast),
    transform var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.thumb svg {
  width: 100%;
  height: 100%;
}
.thumb:hover {
  border-color: var(--clr-text-muted);
  transform: translateY(-2px);
}
.thumb.active {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* Product Info */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.price-block {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.08),
    rgba(30, 64, 175, 0.06)
  );
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.price-badge-bem {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--clr-accent);
  padding: 0.25em 0.9em;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.price-display {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  animation: priceGlow 2s ease-in-out infinite;
}
@keyframes priceGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(245, 158, 11, 0.5));
  }
}
.price-main {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--clr-accent);
  line-height: 1;
}
.price-curr {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-accent);
  opacity: 0.8;
}
.price-note {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-top: 0.5rem;
}

/* Features list */
.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--clr-text);
}
.feat-icon {
  width: 18px;
  height: 18px;
  color: var(--clr-success);
  flex-shrink: 0;
}

.mini-trust {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

/* ==============================
   EXAMPLES SECTION
============================== */
.examples-section {
  background: var(--clr-bg);
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.example-card {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.example-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.example-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-glow);
}
.example-card:hover::before {
  transform: scaleX(1);
}

.example-mug-wrap {
  animation: mugFloat 4.5s ease-in-out infinite;
}
.ex-mug {
  width: 120px;
  height: 130px;
}

.example-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.example-info p {
  font-size: 0.84rem;
  color: var(--clr-text-muted);
}

/* ==============================
   HOW IT WORKS
============================== */
.how-section {
  background: var(--clr-bg2);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  right: 28px; /* RTL */
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-primary), var(--clr-accent));
  opacity: 0.3;
}
.lang-fr .timeline::before {
  right: unset;
  left: 28px;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  align-items: flex-start;
  position: relative;
}
.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), #1d4ed8);
  color: var(--clr-white);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
  position: relative;
  z-index: 1;
}

.timeline-content {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  flex: 1;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.timeline-content:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateX(-4px);
}
.lang-fr .timeline-content:hover {
  transform: translateX(4px);
}
.tl-emoji {
  font-size: 1.5rem;
}
.timeline-content h3 {
  margin: 0.3rem 0 0.4rem;
}
.timeline-content p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

/* ==============================
   REVIEWS
============================== */
.reviews-section {
  background: var(--clr-bg);
}

.overall-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.stars-overall {
  font-size: 1.2rem;
}
.rating-text {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition:
    transform var(--transition),
    border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  right: 1.25rem; /* RTL */
  font-size: 6rem;
  color: rgba(37, 99, 235, 0.08);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}
.lang-fr .review-card::before {
  right: unset;
  left: 1.25rem;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.25);
}

.review-stars {
  font-size: 1rem;
}
.review-card blockquote {
  font-size: 0.92rem;
  color: var(--clr-text);
  line-height: 1.7;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-info strong {
  display: block;
  font-size: 0.9rem;
}
.reviewer-info span {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

/* ==============================
   TRUST SECTION
============================== */
.trust-section {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05),
    rgba(245, 158, 11, 0.03)
  );
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 1.5rem;
}

.trust-item {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}
.trust-item:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-glow);
}
.trust-icon {
  font-size: 2rem;
}
.trust-item h3 {
  font-size: 0.95rem;
}
.trust-item p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

/* ==============================
   ORDER SECTION
============================== */
.order-section {
  background: var(--clr-bg2);
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2rem, 4vw, 3rem);
  /* On passe de "start" à "stretch" pour que la colonne fasse toute la hauteur */
  align-items: stretch;
}

/* Form wrapper */
.order-form-wrap {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--clr-border);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-white);
  margin-top: 1.75rem;
}
.form-section-title:first-child {
  margin-top: 0;
}
.fs-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.form-row {
  margin-bottom: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.75em 1em;
  color: var(--clr-white);
  font-size: 0.95rem;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(148, 163, 184, 0.5);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-primary);
  background: rgba(37, 99, 235, 0.05);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--clr-error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.field-error {
  font-size: 0.78rem;
  color: var(--clr-error);
  font-weight: 600;
  min-height: 1.1em;
}

/* Select wrapper */
.select-wrapper {
  position: relative;
}
.select-wrapper select {
  padding-left: 2.2rem; /* RTL: adjust */
  cursor: pointer;
}
.lang-fr .select-wrapper select {
  padding-left: unset;
  padding-right: 2.2rem;
}
.select-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.75rem; /* RTL */
  pointer-events: none;
  color: var(--clr-text-muted);
}
.lang-fr .select-arrow {
  left: unset;
  right: 0.75rem;
}

/* Upload zone */
.upload-zone {
  border: 2px dashed var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast);
  position: relative;
  overflow: hidden;
}
.upload-zone:hover {
  border-color: var(--clr-primary);
  background: rgba(37, 99, 235, 0.04);
}
.upload-zone.drag-over {
  border-color: var(--clr-primary);
  background: rgba(37, 99, 235, 0.08);
}

.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  pointer-events: none;
}
.upload-content svg {
  color: var(--clr-text-muted);
}
.upload-content p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  font-weight: 600;
}
.upload-content span {
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.6);
}

.upload-preview {
  position: relative;
  display: flex;
  justify-content: center;
}
.upload-preview img {
  max-height: 160px;
  border-radius: var(--radius-md);
  object-fit: cover;
}
.remove-photo {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--clr-error);
  color: white;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast);
}
.remove-photo:hover {
  background: #c0392b;
  transform: scale(1.15);
}

.upload-note {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: 0.4rem;
}

/* Delivery type options */
.delivery-type-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.delivery-option {
  cursor: pointer;
}
.delivery-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.delivery-option-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}
.delivery-option input[type="radio"]:checked + .delivery-option-card {
  border-color: var(--clr-primary);
  background: rgba(37, 99, 235, 0.08);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.delivery-option-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
}
.del-icon {
  font-size: 1.5rem;
}
.delivery-option-card strong {
  display: block;
  font-size: 0.9rem;
}
.delivery-option-card small {
  font-size: 0.78rem;
  color: var(--clr-accent);
  font-weight: 600;
}

/* ==============================
   ORDER SUMMARY (sticky)
============================== */
.summary-card {
  background: var(--clr-bg3);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-glow);
}
.summary-card::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  border-radius: 3px;
  margin-bottom: 1.25rem;
  margin-top: -1.75rem;
  margin-left: -1.75rem;
  margin-right: -1.75rem;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.summary-title {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--clr-white);
}

.summary-mug-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}
.summary-product-name {
  font-weight: 700;
  font-size: 0.95rem;
}
.summary-product-sub {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: 0.2rem;
}

.summary-lines {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}
.summary-val {
  font-weight: 700;
  color: var(--clr-text);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.1),
    rgba(37, 99, 235, 0.08)
  );
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  font-weight: 700;
  color: var(--clr-white);
}
.total-amount-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.total-amount {
  font-size: 2rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--clr-accent);
  transition: transform var(--transition-fast);
}
.total-amount.updated {
  animation: numPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes numPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.total-currency {
  font-size: 1rem;
  color: var(--clr-accent);
  font-weight: 700;
}

.summary-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}

.btn-order-submit {
  font-size: 0.95rem;
  gap: 0.6rem;
}

.submit-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  margin-top: 0.6rem;
}

#mugsContainer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mug-item {
  display: flex;
  gap: 10px;
}

.mug-item input {
  flex: 1;
}

.remove-mug {
  width: 42px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  font-weight: 700;
}

.add-mug-btn {
  margin-top: 10px;
  width: 100%;
  padding: 12px;
  border: 1px dashed var(--clr-primary);
  background: rgba(37, 99, 235, 0.08);
  color: var(--clr-primary);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 700;
}

/* ==============================
   FAQ
============================== */
.faq-section {
  background: var(--clr-bg);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: rgba(37, 99, 235, 0.3);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text);
  text-align: right; /* RTL */
  transition: background var(--transition-fast);
}
.lang-fr .faq-q {
  text-align: left;
}
.faq-q:hover {
  background: rgba(255, 255, 255, 0.03);
}
.faq-arrow {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--clr-text-muted);
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--clr-primary);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s;
  padding: 0 1.5rem;
}
.faq-a p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  padding-bottom: 1.1rem;
}
.faq-item.open .faq-a {
  max-height: 300px;
}

/* ==============================
   FOOTER
============================== */
.site-footer-bottom {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding: 2.5rem 0;
}
.footer-inner-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-white);
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}
.footer-links {
  display: flex;
  gap: 1rem;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--clr-success);
  font-weight: 600;
  transition: opacity var(--transition-fast);
}
.footer-links a:hover {
  opacity: 0.75;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.5);
}

.footer-phone {
  margin-top: 12px;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-phone span {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
}

/* ==============================
   FLOATING WHATSAPP
============================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem; /* RTL */
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: white;
  padding: 0.7rem 1.2rem 0.7rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  animation: waBounce 2s ease-in-out infinite 3s;
}
.lang-fr .whatsapp-float {
  left: unset;
  right: 2rem;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
@keyframes waBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ==============================
   BACK TO TOP
============================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem; /* RTL */
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity var(--transition),
    transform var(--transition);
}
.lang-fr .back-to-top {
  right: unset;
  left: 2rem;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-3px);
}
.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ==============================
   MODAL
============================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--clr-bg2);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}
.modal-icon {
  font-size: 3rem;
}
.modal-box h3 {
  font-size: 1.4rem;
}
.modal-box p {
  color: var(--clr-text-muted);
  font-size: 0.92rem;
}
.modal-box .btn-primary {
  margin-top: 0.5rem;
}

/* ==============================
   SCROLL REVEAL ANIMATIONS
============================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.24s;
}
.reveal-delay-3 {
  transition-delay: 0.36s;
}
.reveal-delay-4 {
  transition-delay: 0.48s;
}

/* ==============================
   RESPONSIVE — TABLET (≤900px)
============================== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-subtitle {
    text-align: center;
  }
  .trust-badges-hero {
    justify-content: center;
  }
  .hero-cta-row {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 2rem;
  }
  .mug-showcase {
    width: clamp(220px, 60vw, 340px);
  }

  .product-layout {
    grid-template-columns: 1fr;
  }
  .order-layout {
    grid-template-columns: 1fr;
  }
  .summary-card {
    position: static;
  }

  .header-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}

.gallery-product-photo {
  transition: opacity 0.2s ease;
}

.thumb.active {
  border: 2px solid #000;
  transform: scale(1.05);
}

.gallery-main {
  position: relative;
  overflow: hidden;
}

/* Flèches discrètes */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 42px;
  height: 42px;

  border: none;
  background: transparent;

  color: rgba(255, 255, 255, 0.55);

  font-size: 38px;
  font-weight: 300;

  cursor: pointer;
  z-index: 10;

  transition: all 0.25s ease;
}

.gallery-btn:hover {
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.gallery-btn.prev {
  left: 465px;
}

.gallery-btn.next {
  right: 465px;
}

.gallery-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.25);

  transition: 0.3s;
}

.dot.active {
  background: white;
}

.gallery-main {
  position: relative;
}

.gallery-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font-size: 32px;
}

.gallery-btn:hover {
  background: transparent;
  color: white;
}

/* ==============================
   RESPONSIVE — MOBILE (≤600px)
============================== */
@media (max-width: 600px) {
  .float-card-1,
  .float-card-2 {
    display: none;
  }
  .stats-inner {
    gap: 0.5rem;
  }
  .stat-item {
    padding: 0 0.75rem;
  }
  .stat-divider {
    height: 30px;
  }
  .examples-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline::before {
    right: 24px;
  }
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float {
    padding: 0.75rem;
  }
}

@media (max-width: 380px) {
  .examples-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   LTR overrides (French mode)
============================== */
.lang-fr {
  direction: ltr;
}
.lang-fr .timeline-content:hover {
  transform: translateX(4px);
}
.lang-fr .timeline::before {
  right: unset;
  left: 28px;
}

/* ==============================
   SELECT OPTION DARK
============================== */
select option {
  background: var(--clr-bg2);
  color: var(--clr-text);
}
