/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  background: #f5f5f5;
  color: #1a1a1a;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --red: #e60012;
  --red-dark: #b8000e;
  --red-light: #ff1f2e;
  --bg: #f5f5f5;
  --white: #ffffff;
  --dark: #1a1a1a;
  --gray: #666666;
  --light-gray: #eeeeee;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --transition: all 0.3s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { margin-bottom: 1rem; color: var(--gray); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,0,18,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== SECTION COMMONS ===== */
section { padding: 5rem 0; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .overline {
  display: inline-block;
  color: var(--red);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}
.section-header h2 {
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-header p {
  max-width: 600px;
  margin: 0 auto;
}
.divider {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: var(--transition);
}
header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO / SLIDER ===== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 74px;
}
.slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; }
.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(230,0,18,0.3) 100%);
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 4rem;
}
.slide-text {
  max-width: 650px;
  color: var(--white);
}
.slide-text .badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.slide-text h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.slide-text p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.dot.active {
  background: var(--white);
  width: 30px;
  border-radius: 5px;
}

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 10;
}
.arrow-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.arrow-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ===== INFO BAR ===== */
.info-bar {
  background: var(--red);
  color: var(--white);
  padding: 1.25rem 0;
}
.info-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.info-item i {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ===== PRÉSENTATION ===== */
#presentation {
  background: var(--white);
}
.presentation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.presentation-image {
  position: relative;
}
.presentation-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.badge-offer {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--red);
  color: white;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(230,0,18,0.5);
  line-height: 1.3;
}
.badge-offer .big { font-size: 1.8rem; }
.badge-offer .small { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.presentation-content { }
.presentation-content .overline {
  color: var(--red);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.75rem;
}
.presentation-content h2 { color: var(--dark); margin-bottom: 1.5rem; }
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}
.feature i { color: var(--red); font-size: 1rem; }
.address-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg);
  padding: 1.25rem;
  border-radius: var(--radius);
  margin: 1.5rem 0 2rem;
  border-left: 4px solid var(--red);
}
.address-box i { color: var(--red); font-size: 1.2rem; margin-top: 2px; }
.address-box p { margin: 0; color: var(--dark); font-weight: 500; }

/* ===== PRODUITS SLIDER ===== */
#produits {
  background: var(--bg);
}
.produits-slider-wrapper {
  position: relative;
  overflow: hidden;
}
.produits-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}
.produit-card {
  min-width: calc(33.333% - 1rem);
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  flex-shrink: 0;
}
.produit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.produit-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.produit-info {
  padding: 1.25rem;
}
.produit-tag {
  display: inline-block;
  background: rgba(230,0,18,0.1);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.6rem;
}
.produit-info h3 { color: var(--dark); margin-bottom: 0.5rem; }
.produit-info p { font-size: 0.9rem; margin: 0; }
.produits-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.prod-arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: transparent;
  color: var(--red);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.prod-arrow:hover {
  background: var(--red);
  color: white;
}

/* ===== HORAIRES ===== */
#horaires {
  background: var(--red);
  color: var(--white);
}
#horaires .section-header .overline { color: rgba(255,255,255,0.8); }
#horaires .section-header h2 { color: var(--white); }
#horaires .section-header p { color: rgba(255,255,255,0.85); }
#horaires .divider { background: rgba(255,255,255,0.4); }
.horaires-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.horaire-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
}
.horaire-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.horaire-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.horaire-time {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin: 0.5rem 0;
}
.horaire-card p { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.9rem; }
.horaires-cta { text-align: center; }

/* ===== SERVICES ===== */
#services {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.service-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius);
  background: var(--bg);
  transition: var(--transition);
  border: 2px solid transparent;
}
.service-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(230,0,18,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  color: var(--red);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--red);
  color: white;
}
.service-card h3 { color: var(--dark); font-size: 1rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.85rem; margin: 0; }
.services-cta { text-align: center; }

/* ===== OFFRES ===== */
#offres {
  background: var(--bg);
}
.offres-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.offre-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.offre-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.offre-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(230,0,18,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
}
.offre-body h3 { color: var(--dark); margin-bottom: 0.5rem; }
.offre-body p { margin: 0; font-size: 0.9rem; }

/* ===== CARTE / MAP ===== */
#localisation {
  background: var(--white);
}
.localisation-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}
.localisation-info h3 { color: var(--dark); margin-bottom: 1.5rem; }
.info-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.info-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg);
  border-radius: 8px;
}
.info-list-item .icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.info-list-item .content strong { display: block; color: var(--dark); font-size: 0.9rem; }
.info-list-item .content span { color: var(--gray); font-size: 0.85rem; }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== CONTACT ===== */
#contact {
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { color: var(--dark); margin-bottom: 1rem; }
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.contact-email:hover { text-decoration: underline; }
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--bg);
  transition: border-color 0.2s;
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.8rem; color: var(--gray); margin-top: 0.75rem; }
.form-success {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 500;
}

/* ===== RÉSEAUX SOCIAUX ===== */
#reseaux {
  background: var(--dark);
  color: var(--white);
}
#reseaux .section-header .overline { color: rgba(255,255,255,0.6); }
#reseaux .section-header h2 { color: var(--white); }
#reseaux .section-header p { color: rgba(255,255,255,0.7); }
#reseaux .divider { background: var(--red); }
.social-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: var(--transition);
  min-width: 120px;
  color: white;
}
.social-card:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-4px);
}
.social-card i { font-size: 2rem; }
.social-card span { font-size: 0.85rem; font-weight: 500; }

/* ===== MAGASINS PROCHES ===== */
#magasins-proches {
  background: var(--bg);
}
.magasins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.magasin-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.magasin-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.magasin-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.magasin-body { padding: 1.5rem; }
.magasin-body h3 { color: var(--dark); margin-bottom: 0.4rem; font-size: 1rem; }
.magasin-body .magasin-tag {
  display: inline-block;
  background: rgba(230,0,18,0.1);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.magasin-body p { font-size: 0.85rem; margin-bottom: 1rem; }
.magasin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--red);
  font-size: 0.875rem;
  font-weight: 600;
  transition: gap 0.2s;
}
.magasin-link:hover { gap: 0.7rem; }
.magasins-cta { text-align: center; }

/* ===== FOOTER ===== */
footer {
  background: #111111;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 45px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.875rem; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 0.9rem;
}
.footer-social a:hover { background: var(--red); color: white; }
.footer-col h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--red);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-col ul li a:hover { color: var(--red); }
.footer-col ul li a i { font-size: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.footer-contact-item i { color: var(--red); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { margin: 0; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--red); }

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(230,0,18,0.4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 1rem;
  }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .slide-content { padding: 0 2rem; }
  .slide-text h1 { font-size: 1.8rem; }
  .presentation-grid { grid-template-columns: 1fr; }
  .presentation-image img { height: 300px; }
  .badge-offer { right: 1rem; bottom: -1rem; width: 100px; height: 100px; }
  .badge-offer .big { font-size: 1.5rem; }
  .horaires-grid { grid-template-columns: 1fr; max-width: 350px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .offres-grid { grid-template-columns: 1fr; }
  .localisation-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .magasins-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-bar .container { gap: 1.5rem; }
  .produit-card { min-width: calc(85% - 0.75rem); }
}

@media (max-width: 480px) {
  section { padding: 3.5rem 0; }
  .slide-text h1 { font-size: 1.5rem; }
  .slide-text p { font-size: 0.95rem; }
  .slide-btns { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .social-grid { gap: 1rem; }
  .social-card { min-width: 90px; padding: 1.5rem 1rem; }
}
