:root {
  --color-primary: #c70103;
  --color-primary-light: #fd3b39;
  --color-primary-dark: #9a0200;
  --color-accent-promo: #FFD700;
  --color-bg: #FFFFFF;
  --color-bg-soft: #F6F6F6;
  --color-text: #222222;
  --color-text-muted: #555555;
  --color-border: #E0E0E0;
  --container-width: 1200px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(199, 1, 3, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
  position: relative;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* Force overflow-x: hidden sur tous les éléments principaux */
img,
video,
iframe,
embed,
object,
svg,
picture {
  max-width: 100%;
  height: auto;
}

/* Conteneurs principaux - empêcher le dépassement */
section,
div,
header,
footer,
main,
article,
aside,
nav {
  max-width: 100%;
  box-sizing: border-box;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.container {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow-x: hidden;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */

.site-header {
  background: #c70103; /* Fallback pour les navigateurs qui ne supportent pas les gradients */
  background: linear-gradient(90deg, #c70103 0%, #fd3b39 100%) !important;
  background-image: linear-gradient(90deg, #c70103 0%, #fd3b39 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.site-header .header-inner {
  position: relative;
}

.site-header:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: 40px;
  max-height: 100%;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: block;
  position: relative;
}

.main-nav a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background-color: #ffffff;
  transition: transform 0.3s ease;
}

.main-nav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Hero */

.hero {
  padding: 3rem 0;
  background-color: var(--color-bg-soft);
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 600px;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.hero-image-placeholder {
  width: 260px;
  height: 160px;
  border-radius: 8px;
  border: 1px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}

/* Sections */

.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h1,
.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.section-header p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Cards */

/* Mobile-first : une colonne pleine largeur sur étroits écrans (évite minmax(280px) > viewport) */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
  max-width: 100%;
}

.cards-grid > .card,
.cards-grid > figure {
  min-width: 0;
  max-width: 100%;
}

.card {
  background-color: #ffffff;
  border: 1px solid rgba(199, 1, 3, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(199, 1, 3, 0.15);
  border-color: rgba(199, 1, 3, 0.2);
}

.card:hover::before {
  transform: scaleX(1);
}

.store-card h3,
.promo-card h3,
.job-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

/* Promo */

.promo-card {
  position: relative;
}

.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent-promo), #FFC700);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

.promo-price {
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 0.75rem;
  color: var(--color-primary);
  line-height: 1.2;
}

.promo-desc {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.promo-store {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.store-card {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.card.store-card {
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
}

.magasins-grid .card.store-card {
  padding: 0;
}

.magasins-grid .store-card-image {
  margin: 0;
}

.store-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-bg-soft);
}

.store-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.store-card:hover .store-card-image img {
  transform: scale(1.05);
}

.store-card-content {
  padding: 1.5rem;
}

.store-card-content h3 {
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.store-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.store-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.store-icon {
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 2px;
  width: 20px;
  height: 20px;
}

.store-info-text {
  flex: 1;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.store-phone-link {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.store-phone-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* Legacy support - garder pour compatibilité */
.store-address,
.store-hours,
.store-phone {
  display: none;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff;
  border: none;
  width: 100%;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  color: #ffffff;
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

/* ============================================
   Magasins page
   ============================================ */
.magasins-hero {
  padding: 4.5rem 0 1.5rem;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.95), #f4f6fb 65%);
}

.magasins-hero__grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.magasins-hero__content {
  text-align: center;
  max-width: 880px;
}

.magasins-hero__content h1 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.magasins-hero__content p {
  color: #475569;
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.magasins-hero__cta {
  font-weight: 600;
  color: #c70103;
}

.magasins-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background: rgba(199, 1, 3, 0.12);
  border: 1px solid rgba(199, 1, 3, 0.24);
  color: #9f142f;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.magasins-hero__grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.magasins-hero__visual {
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.25);
  width: min(960px, 100%);
}

.magasins-hero__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.magasins-hero__read-more {
  display: inline-block;
  margin: 0.25rem 0 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #c70103;
  background: transparent;
  border: 1px solid rgba(199, 1, 3, 0.35);
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.magasins-hero__read-more:hover {
  color: #a60202;
  border-color: rgba(199, 1, 3, 0.6);
  background: rgba(199, 1, 3, 0.06);
}

.magasins-hero__btn-hidden {
  display: none !important;
}

.magasins-hero__more[hidden] {
  display: none;
}

.magasins-hero__more .magasins-hero__read-more {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.magasins-list {
  padding: 2rem 0 4rem;
  background: #ffffff;
}

.magasins-list__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.magasins-list__header h2 {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
  font-weight: 800;
  color: #0f172a;
}

.magasins-list__header p {
  margin: 0;
  color: #475569;
  font-size: 1.05rem;
}

.magasins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

@media (max-width: 768px) {
  .magasins-grid {
    display: flex;
    overflow-x: auto;
    gap: 1.25rem;
    padding-bottom: 1rem;
    margin: 0 -1rem;
    padding-left: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .magasins-grid > .card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }

  .magasins-grid::-webkit-scrollbar {
    height: 6px;
  }

  .magasins-grid::-webkit-scrollbar-track {
    background: transparent;
  }

  .magasins-grid::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.7);
    border-radius: 999px;
  }
}
.store-info-link {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: #c70103;
  text-decoration: none;
  transition: color 0.2s ease;
}

.store-info-link::after {
  content: '↗';
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.store-info-link:hover {
  color: #a60202;
}

.store-info-link:hover::after {
  transform: translateX(2px);
}

.store-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.btn-google-review {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(15, 23, 42, 0.08);
  color: #1f2937;
  padding: 0.75rem 1.1rem;
  border-radius: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-google-review:hover {
  background: rgba(15, 23, 42, 0.12);
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.magasins-empty {
  margin: 0 auto;
  max-width: 640px;
  background: rgba(248, 250, 252, 0.92);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px dashed rgba(148, 163, 184, 0.35);
  text-align: center;
  color: #475569;
}

@media (max-width: 768px) {
  .magasins-hero {
    padding: 3.5rem 0 3rem;
  }

  .magasins-hero__grid {
    gap: 2rem;
  }

  .magasins-hero__content p {
    font-size: 1rem;
  }
}

/* ============================================
   À propos page
   ============================================ */
.a-propos-hero {
  padding: 4.5rem 0 3.5rem;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.95), #f4f6fb 65%);
}

.a-propos-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}

.a-propos-content p {
  color: #475569;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.a-propos-intro {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: #0f172a !important;
  margin-bottom: 2rem !important;
}

.a-propos-close {
  font-weight: 600;
  color: #c70103 !important;
  font-size: 1.15rem !important;
  margin-top: 2rem !important;
}


@media (max-width: 768px) {
  .a-propos-hero {
    padding: 3.5rem 0 2.5rem;
  }

  .a-propos-content {
    text-align: left;
  }

  .a-propos-content p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .a-propos-intro {
    font-size: 1.1rem !important;
  }

  .a-propos-close {
    font-size: 1.05rem !important;
  }
}

/* ============================================
   Emplois page
   ============================================ */
.emplois-hero {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.95), #f4f6fb 65%);
  padding: 4.5rem 0 3.5rem;
}

.emplois-hero__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.emplois-hero__visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.emplois-hero__image {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.25);
}

.emplois-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.emplois-hero__content h1 {
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 1.25rem;
}

.emplois-hero__content p {
  font-size: 1.1rem;
  color: #475569;
  max-width: 560px;
}

.emplois-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  background: rgba(199, 1, 3, 0.12);
  border: 1px solid rgba(199, 1, 3, 0.25);
  color: #9a0200;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.emplois-hero__actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-emplois {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  position: relative;
  overflow: hidden;
}

/* Effet miroir au survol */
.btn-emplois::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.6s;
  pointer-events: none;
}

.btn-emplois:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.btn-emplois--primary,
body .btn-emplois--primary,
a.btn-emplois--primary,
button.btn-emplois--primary {
  background-color: #c70103 !important;
  background: linear-gradient(135deg, #c70103 0%, #fd3b39 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(199, 1, 3, 0.3) !important;
  border: none !important;
  position: relative !important;
  z-index: 1 !important;
}

/* S'assurer que le contenu du bouton est au-dessus de l'effet miroir */
.btn-emplois--primary > *,
body .btn-emplois--primary > *,
a.btn-emplois--primary > *,
button.btn-emplois--primary > * {
  position: relative !important;
  z-index: 1 !important;
}

.btn-emplois--primary:hover,
body .btn-emplois--primary:hover,
a.btn-emplois--primary:hover,
button.btn-emplois--primary:hover {
  background-color: #9a0200 !important;
  background: linear-gradient(135deg, #9a0200 0%, #c70103 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(199, 1, 3, 0.4) !important;
}

.btn-emplois--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(199, 1, 3, 0.3);
}

.btn-emplois--ghost {
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
}

.btn-emplois--ghost:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(15, 23, 42, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.btn-emplois--outline,
body .btn-emplois--outline,
a.btn-emplois--outline,
button.btn-emplois--outline {
  background: transparent !important;
  border: 1.5px solid #c70103 !important;
  color: #c70103 !important;
}

.btn-emplois--outline:hover,
body .btn-emplois--outline:hover,
a.btn-emplois--outline:hover,
button.btn-emplois--outline:hover {
  background-color: #c70103 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(199, 1, 3, 0.2) !important;
}

.emplois-hero__stats {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.emplois-hero__stats article {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.emplois-hero__stats strong {
  font-size: 2rem;
  color: #0f172a;
}

.emplois-hero__stats span {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
}

.emplois-values {
  padding: 4rem 0 3.5rem;
  background: #ffffff;
}

.emplois-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.emplois-values__grid article {
  background: #fff8f8;
  border-radius: 18px;
  padding: 1.75rem;
  border: 1px solid rgba(252, 165, 165, 0.45);
  box-shadow: 0 16px 38px rgba(199, 1, 3, 0.12);
}

/* Card "Évolution & formation" avec fond vert */
.emplois-values__grid article:nth-child(2) {
  background: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 100%);
  border: 1px solid rgba(63, 174, 42, 0.25);
  box-shadow: 0 16px 38px rgba(63, 174, 42, 0.12);
}

/* Card "Pri Atè Plat" - styles pour garantir application en production */
.highlight-card-pri-ate-plat,
body .highlight-card-pri-ate-plat,
body .grid-modern > .highlight-card-modern:nth-child(2),
body .section-highlights-modern .grid-modern > article:nth-child(2) {
  background: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 100%) !important;
  background-color: #d1fae5 !important;
  border-color: rgba(63, 174, 42, 0.25) !important;
  border: 1px solid rgba(63, 174, 42, 0.25) !important;
}

/* Boutons réseaux sociaux - texte blanc garanti en production */
.store-social-actions .btn,
body .store-social-actions .btn,
a.store-social-actions .btn,
button.store-social-actions .btn,
.store-card-social .store-social-actions .btn,
body .store-card-social .store-social-actions .btn {
  color: #ffffff !important;
  color: white !important;
}

.store-social-actions .btn svg,
body .store-social-actions .btn svg,
.store-card-social .store-social-actions .btn svg,
body .store-card-social .store-social-actions .btn svg {
  fill: #ffffff !important;
  fill: white !important;
  color: #ffffff !important;
  color: white !important;
}

.store-social-actions {
  display: grid;
  gap: 0.55rem;
}

.store-social-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.6rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.55rem 0.8rem;
}

.store-social-actions .btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-facebook-social {
  background: #1877f2;
  border-color: #166fe0;
}

.btn-instagram-social {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
  border-color: rgba(129, 52, 175, 0.55);
}

.btn-tiktok-social {
  background: #111827;
  border-color: #0b1220;
}

.store-social-actions .btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.highlight-card-pri-ate-plat:hover,
body .highlight-card-pri-ate-plat:hover,
body .grid-modern > .highlight-card-modern:nth-child(2):hover,
body .section-highlights-modern .grid-modern > article:nth-child(2):hover {
  border-color: rgba(255, 255, 255, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2) !important;
}

.highlight-card-pri-ate-plat:hover::before,
body .highlight-card-pri-ate-plat:hover::before,
body .grid-modern > .highlight-card-modern:nth-child(2):hover::before,
body .section-highlights-modern .grid-modern > article:nth-child(2):hover::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3)) !important;
  transform: scaleX(1) !important;
}

.highlight-card-pri-ate-plat:hover::after,
body .highlight-card-pri-ate-plat:hover::after,
body .grid-modern > .highlight-card-modern:nth-child(2):hover::after,
body .section-highlights-modern .grid-modern > article:nth-child(2):hover::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5)) !important;
  opacity: 1 !important;
}

.emplois-values__grid h3 {
  margin-bottom: 0.75rem;
  color: #0f172a;
  font-size: 1.3rem;
}

.emplois-values__grid p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.emplois-listing {
  padding: 4rem 0;
  background: #f8fafc;
}

.emplois-listing__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.emplois-listing__header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.emplois-listing__header p {
  margin: 0;
  color: #475569;
}

.emplois-listing__header a {
  color: #c70103;
  font-weight: 600;
}

.emplois-listing__cta {
  margin-top: 2rem;
}

.emplois-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.emplois-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.emplois-card__body {
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.emplois-card__tag {
  align-self: flex-start;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(63, 174, 42, 0.12);
  color: #245c20;
  font-weight: 600;
  font-size: 0.85rem;
}

.emplois-card h3 {
  margin: 0;
  font-size: 1.35rem;
  color: #0f172a;
}

.emplois-card__store {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  color: #475569;
  font-weight: 600;
}

.emplois-card__store svg {
  width: 18px;
  height: 18px;
}

.emplois-card__desc {
  margin: 0;
  color: #475569;
  line-height: 1.5;
}

.emplois-card__footer {
  padding: 1.25rem 1.75rem 1.75rem;
}

.emplois-card__footer .btn-emplois {
  width: 100%;
}

.emplois-empty {
  margin: 0 auto;
  max-width: 660px;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px dashed rgba(15, 23, 42, 0.2);
  color: #475569;
}

.emplois-highlight {
  padding: 1.8rem 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
}

.emplois-highlight__wrapper {
  display: flex;
  gap: 0rem;
  align-items: center;
  background: white;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
  padding: 2rem;
  flex-wrap: wrap;
}

.emplois-highlight__content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.emplois-highlight__content p {
  margin-bottom: 1.5rem;
  color: #475569;
  line-height: 1.6;
}

.emplois-highlight__badge {
  display: inline-flex;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background: rgba(63, 174, 42, 0.12);
  color: #245c20;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Badge Employé du mois – desktop */
.emplois-highlight__badge-image {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Règle avec spécificité maximale pour garantir l'application en production */
.emplois-highlight__badge-image img,
.emplois-highlight__wrapper .emplois-highlight__badge-image img,
.emplois-highlight .emplois-highlight__badge-image img,
.emplois-highlight__badge-image picture img {
  display: block !important;
  width: auto !important;
  max-width: 200px !important;
  max-height: none !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* Règle ultra-spécifique pour forcer le style même en cas de conflit */
body .emplois-highlight__badge-image img,
body .emplois-highlight__wrapper .emplois-highlight__badge-image img {
  max-width: 200px !important;
  width: auto !important;
}

.emplois-highlight__content {
  flex: 1 1 150px;
}

/* Bouton "Lire la suite" / "Voir moins" pour employé du mois - Styles avec spécificité maximale */
body .employee-highlight-card__read-more,
body .employee-highlight-card__read-less,
body .employee-highlight-card__story .employee-highlight-card__read-more,
body .employee-highlight-card__story .employee-highlight-card__read-less,
body .employee-highlight-card__story--truncated .employee-highlight-card__read-more,
body .employee-highlight-card__story--full .employee-highlight-card__read-less,
body .employee-highlight-card__story-wrapper .employee-highlight-card__read-more,
body .employee-highlight-card__story-wrapper .employee-highlight-card__read-less,
button.employee-highlight-card__read-more,
button.employee-highlight-card__read-less,
button[data-read-more],
button[data-read-less] {
  display: inline-block !important;
  margin-left: 0.5rem !important;
  padding: 0.25rem 0.75rem !important;
  background: transparent !important;
  border: 1px solid #c70103 !important;
  border-radius: 6px !important;
  color: #c70103 !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  font-family: inherit !important;
  line-height: 1.5 !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
  text-decoration: none !important;
  vertical-align: baseline !important;
  transition: all 0.2s ease !important;
}

body .employee-highlight-card__read-more:hover,
body .employee-highlight-card__read-less:hover,
body .employee-highlight-card__story .employee-highlight-card__read-more:hover,
body .employee-highlight-card__story .employee-highlight-card__read-less:hover,
body .employee-highlight-card__story--truncated .employee-highlight-card__read-more:hover,
body .employee-highlight-card__story--full .employee-highlight-card__read-less:hover,
body .employee-highlight-card__story-wrapper .employee-highlight-card__read-more:hover,
body .employee-highlight-card__story-wrapper .employee-highlight-card__read-less:hover,
button.employee-highlight-card__read-more:hover,
button.employee-highlight-card__read-less:hover,
button[data-read-more]:hover,
button[data-read-less]:hover {
  background: #c70103 !important;
  color: white !important;
  border-color: #c70103 !important;
}

body .employee-highlight-card__story--full .employee-highlight-card__read-less {
  margin-top: 1rem !important;
}

@media (max-width: 768px) {
  .emplois-hero {
    padding: 3.5rem 0;
  }

  .emplois-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-emplois {
    width: 100%;
    justify-content: center;
  }

  .emplois-listing__cta {
    width: 100%;
  }

  .emplois-hero__visual {
    gap: 1.25rem;
  }

  .emplois-highlight__grid {
    gap: 1.75rem;
  }

  .emplois-highlight__wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .emplois-highlight__badge-image {
    margin-bottom: 1rem;
    justify-content: center;
  }

  .emplois-highlight__badge-image img,
  .emplois-highlight__wrapper .emplois-highlight__badge-image img,
  body .emplois-highlight__badge-image img {
    max-width: 200px !important;
    width: auto !important;
    height: auto !important;
  }
}

/* Note : .emplois-highlight__badge-image img avec !important est déclaré ci-dessus et prend priorité */

@media (max-width: 768px) {

  .emplois-highlight__wrapper {
    padding: 1.5rem 1.5rem 2rem;
    margin-top: 0;
    gap: 0 !important;  /* forcer gap à 0 en production */
  }
}

.emplois-candidature-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.62);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1200;
  backdrop-filter: blur(4px);
}

.emplois-candidature-overlay.is-open {
  display: flex;
}

.emplois-candidature-modal {
  position: relative;
  background: #ffffff;
  width: min(620px, 100%);
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 2.75rem);
  box-shadow: 0 45px 95px rgba(15, 23, 42, 0.25);
  max-height: 92vh;
  overflow-y: auto;
}

.emplois-candidature-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.08);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.emplois-candidature-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: #0f172a;
  border-radius: 999px;
}

.emplois-candidature-close span:first-child {
  transform: rotate(45deg);
}

.emplois-candidature-close span:last-child {
  transform: rotate(-45deg);
}

.emplois-candidature-close:hover {
  background: rgba(199, 1, 3, 0.15);
}

.emplois-candidature-header {
  padding-right: 2.5rem;
  margin-bottom: 2rem;
}

.emplois-candidature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background: rgba(199, 1, 3, 0.12);
  border: 1px solid rgba(199, 1, 3, 0.2);
  color: #9a0200;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
}

.emplois-candidature-header h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  color: #0f172a;
}

.emplois-candidature-header p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.emplois-candidature-feedback {
  padding: 1rem 1.25rem;
  border-radius: 16px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.emplois-candidature-feedback--success {
  background: rgba(63, 174, 42, 0.15);
  color: #245c20;
  border: 1px solid rgba(63, 174, 42, 0.25);
}

.emplois-candidature-feedback--error {
  background: rgba(199, 1, 3, 0.12);
  color: #9f142f;
  border: 1px solid rgba(199, 1, 3, 0.25);
}

.emplois-candidature-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.emplois-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.emplois-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.emplois-form-group label {
  font-weight: 600;
  color: #0f172a;
}

.emplois-form-group input,
.emplois-form-group select,
.emplois-form-group textarea {
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 14px;
  padding: 0.75rem 0.95rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.emplois-form-group input:focus,
.emplois-form-group select:focus,
.emplois-form-group textarea:focus {
  outline: none;
  border-color: rgba(199, 1, 3, 0.45);
  box-shadow: 0 0 0 3px rgba(199, 1, 3, 0.12);
}

.emplois-form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.emplois-form-group.has-error input,
.emplois-form-group.has-error select,
.emplois-form-group.has-error textarea {
  border-color: rgba(199, 1, 3, 0.55);
  box-shadow: 0 0 0 3px rgba(199, 1, 3, 0.12);
}

.emplois-form-error {
  margin: 0;
  font-size: 0.85rem;
  color: #b4232a;
}

.emplois-form-group--full {
  grid-column: 1 / -1;
}

.emplois-phone-prefix-wrapper {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.emplois-phone-prefix-wrapper:focus-within {
  border-color: rgba(199, 1, 3, 0.45);
  box-shadow: 0 0 0 3px rgba(199, 1, 3, 0.12);
}
.emplois-form-group.has-error .emplois-phone-prefix-wrapper {
  border-color: rgba(199, 1, 3, 0.55);
  box-shadow: 0 0 0 3px rgba(199, 1, 3, 0.12);
}
.emplois-phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  background: rgba(15, 23, 42, 0.06);
  color: #475569;
  font-weight: 600;
  font-size: 1rem;
  border-right: 1px solid rgba(15, 23, 42, 0.12);
}
.emplois-phone-prefix-wrapper input {
  flex: 1;
  min-width: 0;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.emplois-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.emplois-form-disclaimer {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.5;
}

.emplois-form-disclaimer strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #0f172a;
}

.emplois-form-disclaimer a {
  color: #c70103;
  font-weight: 600;
}

body.no-scroll {
  overflow: hidden;
}

/* Message de confirmation candidature */
.candidature-success-message {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: linear-gradient(135deg, #3FAE2A, #2E8A1F);
  color: #ffffff;
}

.candidature-deja-message {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.candidature-success-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.candidature-success-content svg:first-child {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.candidature-success-content > div {
  flex: 1;
}

.candidature-success-content strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.candidature-success-content p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.95;
}

.candidature-success-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.candidature-success-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.candidature-success-close svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 640px) {
  .candidature-success-message {
    padding: 0.875rem;
  }

  .candidature-success-content {
    gap: 0.75rem;
  }

  .candidature-success-content svg:first-child {
    width: 20px;
    height: 20px;
  }

  .candidature-success-content strong {
    font-size: 1rem;
  }

  .candidature-success-content p {
    font-size: 0.875rem;
  }

  .candidature-success-close {
    width: 28px;
    height: 28px;
  }

  .emplois-candidature-modal {
    padding: 2rem 1.5rem;
  }

  .emplois-form-grid {
    grid-template-columns: 1fr;
  }
}

/* Boutons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

/* Bouton principal - Rouge officiel Delimart avec spécificité maximale */
.btn-primary,
body .btn-primary,
a.btn-primary,
button.btn-primary,
a[class*="btn-primary"],
button[class*="btn-primary"] {
  background-color: #c70103 !important;
  background: linear-gradient(135deg, #c70103 0%, #fd3b39 100%) !important;
  color: #ffffff !important;
  border: none !important;
}

.btn-primary:hover,
body .btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover,
a[class*="btn-primary"]:hover,
button[class*="btn-primary"]:hover {
  background-color: #9a0200 !important;
  background: linear-gradient(135deg, #9a0200 0%, #c70103 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(199, 1, 3, 0.3) !important;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(199, 1, 3, 0.2);
  text-decoration: none;
}

.btn-light {
  background-color: #ffffff;
  color: var(--color-primary);
  border: 1.5px solid #ffffff;
  font-weight: 600;
}

.btn-light:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

/* Footer */

.site-footer {
  background: linear-gradient(135deg, var(--color-primary-dark), #8B1A2A);
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 300px;
  margin: 0;
}

.footer-links {
  flex: 1 1 180px;
  min-width: 150px;
}

.footer-social {
  flex: 1 1 180px;
  min-width: 150px;
}

.footer-links h4,
.footer-social h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.footer-links li,
.footer-social li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-social a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.25rem 0;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #fff;
  transform: translateX(4px);
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  width: 100%;
}

/* Formulaires */

.contact-form {
  max-width: 520px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-row label {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.form-row input,
.form-row textarea {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1.5px solid var(--color-border);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  width: 100%;
  font-family: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(199, 1, 3, 0.1);
}

/* Slider Prix Atè Plat */
.section-slider {
  background-color: var(--color-bg-soft);
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  gap: 1.5rem;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}

@media (max-width: 767px) {
  .slider {
    overflow-x: auto;
  }
}

@media (min-width: 768px) {
  .slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    overflow-x: visible;
    gap: 1.5rem;
  }
}

.slide {
  min-width: 0;
  max-width: 100%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .slider .slide {
    flex-shrink: 0;
    min-width: min(320px, 88vw);
  }
}

.slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(199, 1, 3, 0.15);
}

.slide img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  background-color: #f9f9f9;
}

.slide h3 {
  margin: 0.75rem 0 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  word-wrap: break-word;
}

.slide .price {
  color: #d62525;
  font-weight: 600;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.8);
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 50%;
  z-index: 2;
  transition: background-color 0.2s ease;
}

.slider-btn:hover {
  background-color: #fff;
}

.slider-btn.prev {
  left: 0;
}

.slider-btn.next {
  right: 0;
}

/* =======================
   Section Prix Atè Plat (avec background)
======================= */
.section-prixateplat-bg {
  position: relative;
  background-color: var(--color-bg-soft);
  color: #fff;
  padding-top: 6rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.prixateplat-overlay {
  display: none;
}

.section-prixateplat-bg .container {
  position: relative;
  z-index: 2;
}

.section-prixateplat-bg .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-prixateplat-bg .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.section-prixateplat-bg .section-header p {
  color: var(--color-text-muted);
}

/* Slider styles (repris et adaptés) — pas de 2e .slider (scroll horizontal : mobile seulement, voir plus haut) */
.slider-wrapper {
  position: relative;
  overflow: hidden;
}

.section-prixateplat-bg .slide {
  min-width: 0;
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease;
  color: #222;
}

@media (max-width: 767px) {
  .section-prixateplat-bg .slider .slide {
    flex-shrink: 0;
    min-width: 200px;
  }
}

.section-prixateplat-bg .slide:hover {
  transform: translateY(-4px);
}

.section-prixateplat-bg .slide img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}

.price-block {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.old-price {
  font-size: 0.9rem;
  color: #777;
  text-decoration: line-through;
}

.new-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #d62525;
}

.product-desc {
  margin: 0.5rem 0 0.3rem;
  font-size: 0.9rem;
  color: #555;
}

.limit {
  font-size: 0.85rem;
  font-weight: 600;
  color: #c81010;
}

/* Navigation */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 50%;
  z-index: 3;
  transition: background-color 0.2s ease;
}

.slider-btn:hover {
  background-color: #fff;
}

.slider-btn.prev {
  left: 0;
}

.slider-btn.next {
  right: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .slider-btn {
    display: none;
  }
}

/* === Carte produit avec image en fond === */

.slide-prixateplat {
  position: relative;
  min-width: 280px;
  max-width: 320px;
  height: 400px;
  background-image: url("../images/banners/Pri_ate_plat.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
}

.slide-prixateplat:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.slide-prixateplat .slide-content {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5));
  width: 100%;
  padding: 1.25rem;
  border-radius: 0 0 12px 12px;
  backdrop-filter: blur(4px);
}

.slide-content h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.3rem;
}

.old-price {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: line-through;
}

.new-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffdf6d;
}

.product-desc {
  font-size: 0.9rem;
  color: #f1f1f1;
  text-align: center;
  margin-top: 0.3rem;
}

.limit {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffb6b6;
  margin-top: 0.3rem;
}


.price-block {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.old-price {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.new-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #d62525;
}

.product-desc {
  margin: 0.5rem 0 0.3rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.limit {
  font-size: 0.85rem;
  font-weight: 600;
  color: #c81010;
}

/* Mobile: scroll horizontal sans boutons */
@media (max-width: 768px) {
  .slider-btn {
    display: none;
  }

  .slide-prixateplat {
    min-width: 260px;
    max-width: 300px;
    height: 350px;
  }
}

/* Responsive */

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h1,
  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.25rem;
    width: 100%;
  }

  .main-nav a {
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .logo-img {
    height: 30px;
    max-width: 150px;
  }

  .card {
    padding: 1.25rem;
  }

  .highlight-card {
    padding: 1.5rem 1.25rem;
  }
}
/* Hero large avec grande image */

.hero-large {
  position: relative;
  min-height: 700px;
  padding: 8rem 0;
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-carousel-controls {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 50%;
  z-index: 4;
  transition: all 0.3s ease;
  pointer-events: all;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hero-carousel-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.hero-carousel-btn.prev {
  left: 2rem;
}

.hero-carousel-btn.next {
  right: 2rem;
}

.hero-carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 4;
  pointer-events: all;
}

.hero-carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-carousel-dots .dot.active,
.hero-carousel-dots .dot:hover {
  background-color: #fff;
  border-color: #fff;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .hero-large {
    min-height: 550px;
    padding: 5rem 0;
  }

  .hero-carousel-btn {
    display: none;
  }

  .hero-carousel-dots {
    bottom: 1rem;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }
}

.hero-large .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.hero-inner-large {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-end;
  padding-bottom: 4rem;
}

.hero-text {
  flex: 1 1 280px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.hero-text p {
  font-size: 1rem;
  color: #f0f0f0;
  max-width: 480px;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.12);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-side {
  flex: 1 1 220px;
  display: flex;
  justify-content: flex-end;
}

.hero-side-card {
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  max-width: 260px;
  backdrop-filter: blur(4px);
}

.hero-side-title {
  margin: 0 0 0.4rem;
  font-weight: 600;
}

.hero-side-text {
  margin: 0;
  font-size: 0.9rem;
  color: #f5f5f5;
}

/* Highlights sous le hero */

.home-highlights {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.cards-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.highlight-card {
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--color-primary);
  padding: 2rem 1.5rem;
  background: linear-gradient(to bottom, #ffffff, #fafafa);
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(199, 1, 3, 0.15);
  border-top-color: var(--color-primary-light);
}

.highlight-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text);
}

.highlight-card p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Section alternative (fond gris clair) */

.section-alt {
  background-color: var(--color-bg-soft);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 1, 3, 0.1), transparent);
}

/* Bandeau fidélité DelimartConnect */
.section-fidelite {
  background: linear-gradient(135deg, #2D8C3C, #46b255);
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
}

.fidelite-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.fidelite-text h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.fidelite-text p {
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 auto;
}

.fidelite-action .btn {
  background-color: #fff;
  color: #2D8C3C;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.8rem 1.6rem;
  transition: all 0.3s ease;
}

.fidelite-action .btn:hover {
  background-color: #f1f1f1;
  transform: translateY(-2px);
}

/* Anciennes media queries supprimées - voir section "OPTIMISATION MOBILE - RESPONSIVE" à la fin du fichier */

/* Section fidélité DelimartConnect */
.fidelite-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.fidelite-text {
  flex: 1 1 60%;
  text-align: left;
}

.fidelite-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--color-text);
}

.fidelite-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}

.fidelite-text strong {
  font-weight: 700;
  color: var(--color-primary);
}

.fidelite-action {
  flex: 0 0 auto;
}

.fidelite-action .btn {
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #ffffff;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(199, 1, 3, 0.3);
}

.fidelite-action .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.fidelite-action .btn:hover::before {
  left: 100%;
}

.fidelite-action .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(199, 1, 3, 0.4);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: #ffffff;
}


.slide-png-only {
  min-width: 260px;
  max-width: 280px;
  height: auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  justify-content: center;
}

.slide-png-only img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* =======================
   OPTIMISATION MOBILE - RESPONSIVE
   ======================= */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Breakpoint: 1024px (Tablets) */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero-large {
    min-height: 600px;
    padding: 6rem 0;
  }

  .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  }
}

/* Breakpoint: 768px (Mobile Large) */
@media (max-width: 768px) {
  /* Container */
  .container {
    padding: 0 1rem;
  }

  /* Header */
  .header-inner {
    padding: 0.75rem 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #c70103; /* Fallback */
    background: linear-gradient(90deg, #c70103 0%, #fd3b39 100%) !important;
    background-image: linear-gradient(90deg, #c70103 0%, #fd3b39 100%);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, box-shadow 0.3s ease;
    box-shadow: none;
  }

  .main-nav.active {
    max-height: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem 0;
    gap: 0;
    width: 100%;
  }

  .main-nav li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav a {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    display: block;
    text-align: left;
  }

  .main-nav a::after {
    display: none;
  }

  .logo-img {
    height: 32px;
    max-width: 140px;
  }

  /* Hero Section */
  .hero {
    padding: 2rem 0;
  }

  .hero-large {
    min-height: 500px;
    padding: 5rem 0;
  }

  .hero-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-inner-large {
    padding-bottom: 3rem;
  }

  .hero-text h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-carousel-btn {
    display: none;
  }

  .hero-carousel-dots {
    bottom: 1rem;
  }

  .hero-side-card {
    max-width: 100%;
  }

  /* Sections */
  .section {
    padding: 2.5rem 0;
  }

  .section-header {
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .section-header h1,
  .section-header h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  /* Cards Grid */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .cards-grid-3 {
    grid-template-columns: 1fr;
  }

  /* Store Cards */
  .store-card-image {
    height: 180px;
  }

  .store-card-content {
    padding: 1.25rem;
  }

  .store-card-content h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }

  .store-info-list {
    gap: 0.875rem;
    margin-bottom: 1.25rem;
  }

  .store-info-item {
    gap: 0.625rem;
  }

  .store-icon {
    width: 18px;
    height: 18px;
    margin-top: 3px;
  }

  .store-info-text {
    font-size: 0.9rem;
  }

  .btn-whatsapp {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  /* Buttons */
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    min-height: 44px; /* Touch target minimum */
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .btn-lg {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Slider */
  .slider {
    gap: 1rem;
    padding-bottom: 0.5rem;
  }

  .slider-btn {
    display: none;
  }

  .slide-prixateplat {
    min-width: 240px;
    max-width: 280px;
    height: 320px;
  }

  .section-prixateplat-bg {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }

  /* Fidélité Section */
  .fidelite-container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 0 1rem;
  }

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

  .fidelite-text h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .fidelite-text p {
    font-size: 0.95rem;
  }

  .fidelite-action .btn {
    width: 100%;
  }

  /* Highlight Cards */
  .highlight-card {
    padding: 1.5rem 1.25rem;
  }

  .highlight-card h3 {
    font-size: 1.15rem;
  }

  .highlight-card p {
    font-size: 0.9rem;
  }

  /* Footer */
  .site-footer {
    padding: 2.5rem 0 1rem;
    margin-top: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 2rem;
    text-align: left;
  }

  .footer-left {
    flex: 1 1 100%;
    text-align: center;
    max-width: 100%;
  }

  .footer-text {
    max-width: 100%;
    text-align: center;
  }

  .footer-links,
  .footer-social {
    flex: 1 1 100%;
    text-align: center;
    min-width: 100%;
  }

  .footer-links h4,
  .footer-social h4 {
    margin-bottom: 1rem;
  }

  .footer-links ul,
  .footer-social ul {
    align-items: center;
  }

  .footer-links li,
  .footer-social li {
    margin-bottom: 0.75rem;
  }

  .footer-links a,
  .footer-social a {
    padding: 0.5rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    font-size: 0.8rem;
  }
}

/* Breakpoint: 480px (Mobile Small) */
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .header-inner {
    padding: 0.5rem 0;
  }

  .logo-img {
    height: 28px;
    max-width: 120px;
  }

  .hero-large {
    min-height: 450px;
    padding: 4rem 0;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .section-header h1,
  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .section {
    padding: 2rem 0;
  }

  .cards-grid {
    gap: 1rem;
  }

  .store-card-image {
    height: 160px;
  }

  .store-card-content {
    padding: 1rem;
  }

  .store-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.875rem;
  }

  .store-info-list {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .store-icon {
    width: 16px;
    height: 16px;
  }

  .store-info-text {
    font-size: 0.85rem;
  }

  .btn {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }

  .slide-prixateplat {
    min-width: 200px;
    max-width: 240px;
    height: 280px;
  }

  .fidelite-text h2 {
    font-size: 1.3rem;
  }

  .fidelite-text p {
    font-size: 0.9rem;
  }

  /* Footer Small */
  .site-footer {
    padding: 2rem 0 1rem;
  }

  .footer-inner {
    gap: 1.5rem;
  }

  .footer-logo {
    font-size: 1.1rem;
  }

  .footer-text {
    font-size: 0.9rem;
  }

  .footer-links h4,
  .footer-social h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .footer-links a,
  .footer-social a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding-top: 1rem;
  }
}
/* ============================
   Employé du mois – Study cards
   ============================ */

   .employe-du-mois-page .hero--employe {
    padding: 3.5rem 0 2rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
  }
  
  .employe-du-mois-page .page-title {
    margin: 0 0 0.5rem;
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
  }
  
  .employe-du-mois-page .page-subtitle {
    margin: 0;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .section-employe-cards {
    padding-top: 3rem;
  }
  
  .employe-slider-intro {
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
  }
  
  /* Wrapper du slider */
  
  .employe-slider-wrapper {
    position: relative;
  }
  
  .employe-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
  }
  
  .employe-slider::-webkit-scrollbar {
    height: 6px;
  }
  .employe-slider::-webkit-scrollbar-track {
    background: transparent;
  }
  .employe-slider::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 999px;
  }
  
  /* Boutons de navigation */
  
  .employe-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  }
  
  .employe-slider-btn.prev {
    left: -0.25rem;
  }
  .employe-slider-btn.next {
    right: -0.25rem;
  }
  
  .employe-slider-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    background-color: #fff;
  }
  
  @media (max-width: 768px) {
    .employe-slider-btn {
      display: none;
    }
  }
  
  /* Cartes employé (study card) */
  
  .employee-card {
    min-width: 280px;
    max-width: 320px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .employee-card--current {
    box-shadow: 0 12px 32px rgba(199, 1, 3, 0.25);
    border-color: rgba(199, 1, 3, 0.25);
  }
  
  .employee-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  }
  
  .employee-card__figure {
    width: 100%;
    height: 260px;
    background-color: var(--color-bg-soft);
    overflow: hidden;
  }
  
  .employee-card__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .employee-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
  }
  
  /* Infos de base */
  
  .employee-card__info {
    padding: 1.1rem 1.25rem 0.9rem;
  }
  
  .employee-card__badge {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(199, 1, 3, 0.08);
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
  }
  
  .employee-card__name {
    margin: 0 0 0.3rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  
  .employee-card__meta {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
  }
  
  /* Bouton pour afficher le témoignage */
  
  .employee-card__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--color-primary);
    background-color: transparent;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .employee-card__toggle:hover {
    background-color: var(--color-primary);
    color: #fff;
  }
  
  /* Témoignage (fond vert) */
  
  .employee-card__testimonial {
    background: linear-gradient(135deg, #2D8C3C, #46b255);
    color: #ffffff;
    padding: 1rem 1.1rem 1.1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
  }
  
  .employee-card__testimonial p {
    margin: 0;
  }
  
  /* Style de la barre de défilement pour le témoignage */
  .employee-card__testimonial::-webkit-scrollbar {
    width: 6px;
  }
  
  .employee-card__testimonial::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
  }
  
  .employee-card__testimonial::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
  }
  
  .employee-card__testimonial::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.6);
  }
/* === GLOBAL === */
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: #f9fafb;
  color: #111827;
}

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

.admin-layout {
  display: flex;
  min-height: 100vh;
}

/* === SIDEBAR === */
.admin-sidebar {
  width: 260px;
  background: #111827;
  color: #f9fafb;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  position: sticky;
  top: 0;
  height: 100vh;
}

.admin-sidebar__brand {
  text-align: center;
  margin-bottom: 2rem;
}

.admin-sidebar__brand h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.admin-sidebar__subtitle {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

.admin-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-nav__link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: #e5e7eb;
  transition: background 0.2s ease, color 0.2s ease;
}

.admin-nav__link:hover {
  background: #1f2937;
}

.admin-nav__link.is-active {
  background: #c41e3a;
  color: white;
  font-weight: 600;
}

.admin-sidebar__footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
}

.admin-nav__logout {
  display: block;
  padding: 0.75rem 1rem;
  color: #f87171;
  border-radius: 8px;
}

.admin-nav__logout:hover {
  background: rgba(239, 68, 68, 0.15);
}

/* === MAIN AREA === */
.admin-main {
  flex: 1;
  padding: 2rem 2.5rem;
  overflow-y: auto;
}

@media (max-width: 900px) {
  .admin-sidebar {
      position: fixed;
      left: -260px;
      top: 0;
      transition: left 0.3s ease;
      z-index: 1000;
  }

  .admin-sidebar.open {
      left: 0;
  }

  .admin-main {
      padding: 1.5rem;
  }
}


  
  /* Responsive */
  
  @media (max-width: 768px) {
    .employee-card {
      min-width: 260px;
      max-width: 280px;
    }
  
    .employee-card__figure {
      height: 240px;
    }
  }

/* Breakpoint: 320px (Mobile Extra Small) */
@media (max-width: 320px) {
  .container {
    padding: 0 0.5rem;
  }

  .hero-text h1 {
    font-size: 1.35rem;
  }

  .section-header h1,
  .section-header h2 {
    font-size: 1.35rem;
  }

  .btn {
    padding: 0.65rem 0.9rem;
    font-size: 0.8rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch devices */
  .card:hover,
  .btn:hover,
  .store-card:hover {
    transform: none;
  }

  /* Larger touch targets */
  a, button, .btn {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-large {
    min-height: 400px;
    padding: 3rem 0;
  }

  .hero-inner-large {
    padding-bottom: 2rem;
  }
}

.stock-search {
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
}

.stock-search__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.stock-search__form {
  display: flex;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.stock-search__form input {
  flex: 1;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 1rem;
}

.stock-search__form button {
  padding: 0.9rem 1.8rem;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #c70103, #fd3b39);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.stock-search__form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(199, 1, 3, 0.2);
}

.stock-results {
  padding: 3rem 0 4rem;
}

.stock-empty {
  text-align: center;
  padding: 3rem;
  border-radius: 20px;
  background: #fff4f4;
  border: 1px dashed rgba(199, 1, 3, 0.25);
  color: #b91c1c;
  max-width: 720px;
  margin: 2rem auto;
}

.stock-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.16);
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
}

.stock-card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stock-card__header h2 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
}

.stock-card__sku {
  color: #64748b;
  font-weight: 600;
}

.stock-card__table {
  width: 100%;
  border-collapse: collapse;
}

.stock-card__table th,
.stock-card__table td {
  padding: 0.9rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.stock-badge--ok {
  background: rgba(34, 197, 94, 0.15);
  color: #15803d;
}

.stock-badge--ko {
  background: rgba(248, 113, 113, 0.15);
  color: #b91c1c;
}

.stock-qty {
  margin-left: 0.5rem;
  color: #475569;
  font-size: 0.9rem;
}

.stock-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.18);
  color: #166534;
  text-decoration: none;
  font-weight: 600;
}

.stock-wa-btn:hover {
  background: rgba(34, 197, 94, 0.25);
}

.stock-wa-missing {
  color: #94a3b8;
  font-style: italic;
}

@media (max-width: 680px) {
  .stock-search__form {
    flex-direction: column;
  }

  .stock-card__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .stock-card__table th,
  .stock-card__table td {
    padding: 0.75rem 0.5rem;
  }
}

.stock-suggest__success {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.3);
  color: #166534;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
}

.stock-suggest {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.stock-suggest h2 {
  margin: 0 0 0.6rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
}

.stock-suggest p {
  margin: 0 0 1.2rem;
  color: #475569;
}

.stock-suggest__form {
  display: grid;
  gap: 1.15rem;
}

.stock-suggest__group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.stock-suggest__group label {
  font-weight: 600;
  color: #0f172a;
}

.stock-suggest__group input {
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 1rem;
}

.stock-suggest__form button {
  justify-self: start;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #c70103, #fd3b39);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.stock-suggest__form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(199, 1, 3, 0.2);
}

/* Promotions — bouton WhatsApp flottant + choix magasin (même source que /magasins)
   Ciblage : .promotions-wa-float-wrap:not(.--bottom) (et non plus seulement --grid) pour
   rester compatible avec d’anciens déploiements où le wrap n’avait que promotions-wa-float-wrap. */
.promotions-wa-layout--has-wa {
  width: 100%;
}

@media (max-width: 767px) {
  /* Grille pleine largeur ; bouton fixe coin bas-droit (hors flux grille) */
  .promotions-wa-layout--has-wa {
    display: block;
  }

  .promotions-wa-layout--has-wa .promotions-wa-aside {
    position: static;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
    pointer-events: none;
    z-index: 10050;
  }

  .promotions-wa-float-wrap:not(.promotions-wa-float-wrap--bottom) {
    position: static;
    pointer-events: none;
  }

  .promotions-wa-float-wrap:not(.promotions-wa-float-wrap--bottom) .promotions-wa-float-btn {
    position: fixed;
    left: auto;
    right: max(0.75rem, env(safe-area-inset-right));
    top: auto;
    bottom: max(1rem, env(safe-area-inset-bottom));
    transform: none;
    margin: 0;
    pointer-events: auto;
    z-index: 10050;
  }

  .promotions-wa-float-wrap:not(.promotions-wa-float-wrap--bottom) .promotions-wa-modal {
    pointer-events: auto;
  }
}

@media (min-width: 768px) {
  /* FAB premium : fixe à droite, un peu sous le milieu (hors flux du contenu) */
  .promotions-wa-float-wrap:not(.promotions-wa-float-wrap--bottom) {
    position: fixed !important;
    left: auto !important;
    right: max(1.25rem, env(safe-area-inset-right)) !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    height: auto !important;
    z-index: 10050 !important;
    pointer-events: none !important;
  }

  .promotions-wa-float-wrap:not(.promotions-wa-float-wrap--bottom) .promotions-wa-float-btn {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .promotions-wa-float-wrap:not(.promotions-wa-float-wrap--bottom) .promotions-wa-modal {
    pointer-events: auto;
  }

  /* Même traitement FAB page sans visuels */
  .promotions-wa-float-wrap--bottom .promotions-wa-float-btn {
    position: fixed !important;
    left: auto !important;
    right: max(1.25rem, env(safe-area-inset-right)) !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    pointer-events: auto !important;
  }
}

/* Grands écrans : aligné sur le bord droit du container (--container-width), ~60px vers l’intérieur depuis la marge */
@media (min-width: 1200px) {
  .promotions-wa-float-wrap:not(.promotions-wa-float-wrap--bottom) {
    position: fixed !important;
    left: auto !important;
    right: max(
      1.25rem,
      calc(
        env(safe-area-inset-right) + (100vw - var(--container-width, 1200px)) / 2 - 60px
      )
    ) !important;
    top: 60% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    height: auto !important;
    z-index: 10050 !important;
    pointer-events: none !important;
  }

  .promotions-wa-float-wrap:not(.promotions-wa-float-wrap--bottom) .promotions-wa-float-btn {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .promotions-wa-float-wrap--bottom .promotions-wa-float-btn {
    left: auto !important;
    right: max(
      1.25rem,
      calc(
        env(safe-area-inset-right) + (100vw - var(--container-width, 1200px)) / 2 - 60px
      )
    ) !important;
    top: 60% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
  }
}

.promotions-wa-float-wrap {
  position: relative;
}

/* Mobile : variant sans visuels — même coin bas-droit que la grille */
@media (max-width: 767px) {
  .promotions-wa-float-wrap--bottom .promotions-wa-float-btn {
    position: fixed;
    left: auto;
    right: max(0.75rem, env(safe-area-inset-right));
    top: auto;
    bottom: max(1rem, env(safe-area-inset-bottom));
    transform: none;
    z-index: 10050;
  }
}

.promotions-wa-float-btn {
  position: fixed;
  left: auto;
  right: auto;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 10050;
  width: 3.5rem;
  height: 3.5rem;
  min-width: 48px;
  min-height: 48px;
  border: none;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: promotions-wa-float-breathe 2.2s ease-in-out infinite;
}

.promotions-wa-float-btn svg {
  position: relative;
  z-index: 1;
  transform-origin: center center;
  animation: promotions-wa-icon-pulse 2.4s ease-in-out infinite;
}

.promotions-wa-float-btn::before,
.promotions-wa-float-btn::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}

.promotions-wa-float-btn::before {
  animation: promotions-wa-float-ring 2.2s ease-out infinite;
}

.promotions-wa-float-btn::after {
  border-color: rgba(255, 255, 255, 0.35);
  animation: promotions-wa-float-ring 2.2s ease-out infinite;
  animation-delay: 1.1s;
}

@keyframes promotions-wa-float-breathe {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  33% {
    transform: scale(1.06) rotate(-1.5deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  }
  66% {
    transform: scale(1.08) rotate(1.5deg);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  }
}

@keyframes promotions-wa-icon-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes promotions-wa-float-ring {
  0% {
    transform: scale(0.88);
    opacity: 0.65;
  }
  55% {
    opacity: 0.18;
  }
  100% {
    transform: scale(1.48);
    opacity: 0;
  }
}

.promotions-wa-float-btn:hover {
  animation-play-state: paused;
  transform: scale(1.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.promotions-wa-float-btn:hover::before,
.promotions-wa-float-btn:hover::after {
  animation-play-state: paused;
  opacity: 0;
}

.promotions-wa-float-btn:hover svg {
  animation-play-state: paused;
}

.promotions-wa-float-btn:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.45);
  outline-offset: 3px;
  animation-play-state: paused;
}

.promotions-wa-float-btn:focus-visible::before,
.promotions-wa-float-btn:focus-visible::after {
  animation-play-state: paused;
  opacity: 0;
}

.promotions-wa-float-btn:focus-visible svg {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .promotions-wa-float-btn,
  .promotions-wa-float-btn::before,
  .promotions-wa-float-btn::after,
  .promotions-wa-float-btn svg {
    animation: none;
  }

  .promotions-wa-float-btn::before,
  .promotions-wa-float-btn::after {
    display: none;
  }
}

html.promotions-wa-modal-open {
  overflow: hidden;
}

.promotions-wa-modal[hidden] {
  display: none !important;
}

.promotions-wa-modal:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

@media (min-width: 480px) {
  .promotions-wa-modal:not([hidden]) {
    align-items: center;
  }
}

.promotions-wa-modal__backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(199, 1, 3, 0.5) 0%,
    rgba(120, 2, 8, 0.58) 45%,
    rgba(74, 0, 6, 0.62) 100%
  );
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.promotions-wa-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 22rem;
  max-height: min(85vh, 32rem);
  overflow: auto;
  background: #fff;
  border-radius: 1rem 1rem 0 0;
  box-shadow: 0 -8px 40px rgba(15, 23, 42, 0.18);
  padding: 1.25rem 1.25rem 1.5rem;
  animation: promotions-wa-slide-up 0.22s ease-out;
}

@media (min-width: 480px) {
  .promotions-wa-modal__panel {
    border-radius: 1rem;
    animation: promotions-wa-fade-in 0.2s ease-out;
  }
}

@keyframes promotions-wa-slide-up {
  from {
    transform: translateY(100%);
    opacity: 0.85;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes promotions-wa-fade-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.promotions-wa-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.promotions-wa-modal__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text, #0f172a);
}

.promotions-wa-modal__close {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  border: none;
  background: rgba(148, 163, 184, 0.15);
  color: var(--color-text, #334155);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promotions-wa-modal__close:hover {
  background: rgba(148, 163, 184, 0.28);
}

.promotions-wa-modal__sub {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted, #64748b);
}

.promotions-wa-modal__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.promotions-wa-store-btn {
  width: 100%;
  text-align: left;
  padding: 0.95rem 1.1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.promotions-wa-store-btn:hover {
  background: #f1f5f9;
  border-color: rgba(37, 211, 102, 0.45);
}

.promotions-wa-store-btn:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.35);
  outline-offset: 2px;
}

/* Pages SEO discrètes (supermarché Haïti / supermarket Haiti) */
.seo-landing {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.seo-landing__header {
  max-width: 42rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.seo-landing__h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--color-text, #0f172a);
}

.seo-landing__lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--color-text-muted, #475569);
  margin: 0;
}

.seo-landing__content {
  max-width: 40rem;
  margin: 0 auto;
}

.seo-landing__content h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--color-primary, #c70103);
}

.seo-landing__content p {
  line-height: 1.7;
  color: var(--color-text, #334155);
  margin: 0 0 1rem;
}

.seo-landing__store-list {
  margin: 0 0 1.5rem 1.25rem;
  padding: 0;
  line-height: 1.75;
  color: var(--color-text, #334155);
}

.seo-landing__store-list li {
  margin-bottom: 0.35rem;
}

.seo-landing__faq {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.seo-landing__faq h2 {
  margin-top: 0;
}

.seo-landing__faq-q {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.25rem 0 0.5rem;
  color: var(--color-text, #0f172a);
}

.seo-landing__faq-q:first-of-type {
  margin-top: 1rem;
}

.seo-landing__faq p a {
  color: var(--color-primary, #c70103);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-landing__faq p a:hover {
  text-decoration-thickness: 2px;
}

.seo-landing__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.75rem 0 0.5rem;
}

@media (max-width: 480px) {
  .seo-landing__cta-row .btn {
    width: 100%;
    justify-content: center;
  }
}

.delimart-footer-seo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
}

.delimart-footer-seo__link {
  color: var(--delimart-gray-500, #64748b);
  text-decoration: none;
}

.delimart-footer-seo__link:hover {
  color: var(--delimart-red-primary, #c70103);
  text-decoration: underline;
}

.delimart-footer-seo__sep {
  color: var(--delimart-gray-400, #94a3b8);
  user-select: none;
}

.magasins-hero__seo-link {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(199, 1, 3, 0.35);
  text-underline-offset: 2px;
}

.magasins-hero__seo-link:hover {
  color: var(--color-primary, #c70103);
  text-decoration-color: currentColor;
}