/* ===================================================
   PHARMACIE DE OINVILLE
   STYLE PROPRE — VERSION STABLE
=================================================== */

:root {
  --navy: #061a2f;
  --navy-soft: #0b2f55;
  --navy-deep: #03111f;

  --jade: #00766b;
  --jade-light: #12b7a6;

  --cream: #fbf7ee;
  --cream-strong: #f1eadc;

  --sage: #eaf6f2;
  --sage-strong: #dceee9;

  --copper: #c79d63;

  --white: #ffffff;
  --text: #102538;
  --muted: #647487;

  --red: #ef4444;
  --orange: #f97316;

  --doctolib: #0596de;
  --doctolib-light: #19b4f2;

  --shadow: 0 28px 85px rgba(6, 26, 47, 0.14);
  --shadow-soft: 0 18px 55px rgba(6, 26, 47, 0.09);
  --shadow-dark: 0 32px 95px rgba(6, 26, 47, 0.24);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===================================================
   RESET / BASE
=================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  background:
    radial-gradient(circle at 10% 12%, rgba(199, 157, 99, 0.13), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(18, 183, 166, 0.15), transparent 31%),
    linear-gradient(135deg, #fbf7ee 0%, #f6fbf9 48%, #ffffff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(6, 26, 47, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 26, 47, 0.028) 1px, transparent 1px);
  background-size: 62px 62px;

  mask-image: radial-gradient(circle at 50% 20%, black, transparent 76%);
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100000;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

section {
  scroll-margin-top: 120px;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* ===================================================
   ÉLÉMENTS COMMUNS
=================================================== */

.section-label {
  width: fit-content;
  padding: 10px 16px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  border: 1px solid rgba(199, 157, 99, 0.28);
  border-radius: 999px;

  background: linear-gradient(135deg, rgba(255,255,255,0.84), rgba(251,247,238,0.66));
  color: var(--jade);

  box-shadow:
    0 12px 32px rgba(6, 26, 47, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.96);

  font-size: 0.78rem;
  font-weight: 900;
}

.section-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
}

.section-label-dark {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading .section-label {
  margin-bottom: 22px;
}

.section-heading h2,
.reviews-heading h2,
.products-direct-heading h2,
.promise-heading h2,
.about-content h2,
.hours-intro h2,
.contact-content h2 {
  color: var(--navy);
  font-size: clamp(2.6rem, 5.4vw, 5.1rem);
  line-height: 0.94;
  letter-spacing: -0.09em;
}

.section-heading h2::after,
.reviews-heading h2::after,
.products-direct-heading h2::after,
.about-content h2::after,
.contact-content h2::after {
  content: "";
  width: 96px;
  height: 4px;
  margin: 24px auto 0;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--copper), var(--jade), var(--jade-light));
}

.section-heading p,
.reviews-heading p,
.products-direct-heading p,
.promise-heading p,
.about-content p,
.contact-content > p {
  max-width: 660px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.82;
}

/* ===================================================
   BUTTONS
=================================================== */

.btn,
.nav-appointment,
.nav-phone,
.nav-emergency,
.mobile-appointment,
.mobile-emergency,
.mobile-phone,
.contact-form button,
.call-float,
.footer-dark-btn,
.products-direct-button,
.emergency-card,
.reviews-google-link,
.news-instagram-link,
.news-archive-link,
.news-page-back,
.news-page-instagram,
.hours-premium-garde-now {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  border-radius: 999px;

  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    filter 0.3s ease;
}

.btn::before,
.nav-appointment::before,
.nav-emergency::before,
.nav-phone::before,
.mobile-appointment::before,
.mobile-emergency::before,
.mobile-phone::before,
.contact-form button::before,
.call-float::before,
.footer-dark-btn::before,
.products-direct-button::before,
.emergency-card::before,
.reviews-google-link::before,
.news-instagram-link::before,
.news-archive-link::before,
.news-page-back::before,
.news-page-instagram::before,
.hours-premium-garde-now::before {
  content: "";
  position: absolute;
  top: -65%;
  left: -85%;
  z-index: 3;
  width: 42%;
  height: 230%;
  background: linear-gradient(
    115deg,
    transparent,
    rgba(255, 255, 255, 0.42),
    transparent
  );
  transform: translateX(-135%) rotate(18deg);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.btn:hover::before,
.nav-appointment:hover::before,
.nav-phone:hover::before,
.nav-emergency:hover::before,
.mobile-appointment:hover::before,
.mobile-emergency:hover::before,
.mobile-phone:hover::before,
.contact-form button:hover::before,
.call-float:hover::before,
.footer-dark-btn:hover::before,
.products-direct-button:hover::before,
.emergency-card:hover::before,
.reviews-google-link:hover::before,
.news-instagram-link:hover::before,
.news-archive-link:hover::before,
.news-page-back:hover::before,
.news-page-instagram:hover::before,
.hours-premium-garde-now:hover::before {
  transform: translateX(470%) rotate(18deg);
}

.btn:hover,
.nav-appointment:hover,
.nav-phone:hover,
.nav-emergency:hover,
.mobile-appointment:hover,
.mobile-emergency:hover,
.mobile-phone:hover,
.contact-form button:hover,
.call-float:hover,
.footer-dark-btn:hover,
.products-direct-button:hover {
  transform: translateY(-3px);
  filter: saturate(1.04) brightness(1.02);
}

.btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  font-size: 0.9rem;
  font-weight: 900;
}

.btn-primary,
.nav-phone,
.mobile-phone,
.contact-form button {
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #ffffff;
  box-shadow:
    0 18px 44px rgba(6, 26, 47, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary {
  padding: 9px 9px 9px 22px;
}

.btn-primary > span,
.contact-form button span,
.call-float span,
.products-direct-button span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jade), var(--jade-light));
}

.doctolib-button,
.btn-doctolib,
.mobile-appointment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 1px solid rgba(255,255,255,0.22);
  background: linear-gradient(135deg, var(--doctolib-light), var(--doctolib));
  color: #ffffff;

  box-shadow:
    0 18px 44px rgba(5,150,222,0.28),
    inset 0 1px 0 rgba(255,255,255,0.24);

  font-weight: 900;
}

.btn-doctolib {
  padding: 14px 22px;
  font-size: 0.9rem;
}

.doctolib-logo {
  width: 30px;
  height: 30px;
  min-width: 30px;

  display: inline-block;
  background-image: url("images/doctolib-logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ===================================================
   HEADER
=================================================== */

.site-header-premium {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
}

.nav-showcase {
  width: min(1480px, calc(100% - 64px));
  min-height: 82px;
  margin: 0 auto;
  padding: 12px 16px;

  display: flex;
  align-items: center;
  gap: 14px;

  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.90);

  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(248,253,251,0.82));

  box-shadow:
    0 22px 64px rgba(6, 26, 47, 0.13),
    inset 0 1px 0 rgba(255,255,255,0.96);

  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);

  pointer-events: auto;

  transition:
    transform 0.32s var(--ease),
    min-height 0.32s ease,
    box-shadow 0.32s ease;
}

.site-header.scrolled .nav-showcase {
  transform: translateY(-5px) scale(0.994);
  box-shadow:
    0 18px 54px rgba(6, 26, 47, 0.17),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.brand-showcase {
  min-width: 280px;
  padding: 0 22px 0 9px;

  display: inline-flex;
  align-items: center;
  gap: 14px;

  border-radius: 26px;

  background:
    radial-gradient(circle at 20% 20%, rgba(18,183,166,0.10), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,0.86), rgba(234,246,242,0.58));

  text-decoration: none;
}

.brand-showcase .brand-symbol {
  width: 60px;
  height: 60px;
  min-width: 60px;

  display: grid;
  place-items: center;

  border-radius: 22px;

  background: linear-gradient(145deg, #ffffff, #edf8f5);

  box-shadow:
    0 14px 34px rgba(6, 26, 47, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.brand-showcase .brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-showcase .brand-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}

.brand-showcase .brand-name small {
  color: var(--jade);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-showcase .brand-name strong {
  color: var(--navy);
  font-size: 1.34rem;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.nav-showcase .nav-links {
  height: 56px;
  padding: 0 12px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;

  border-radius: 999px;
  border: 1px solid rgba(6, 26, 47, 0.06);

  background: rgba(255,255,255,0.58);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.nav-showcase .nav-links a {
  position: relative;

  min-height: 42px;
  padding: 0 11px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  color: rgba(6, 26, 47, 0.72);

  font-size: 0.81rem;
  font-weight: 900;
  white-space: nowrap;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.nav-showcase .nav-links a:hover,
.nav-showcase .nav-links a.active {
  color: var(--jade);
  background: rgba(18,183,166,0.08);
}

.nav-showcase .nav-links a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;

  width: 28px;
  height: 2px;

  border-radius: 999px;
  background: linear-gradient(90deg, var(--copper), var(--jade));

  transform: translateX(-50%);
}

.nav-showcase .nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-status-orb {
  width: 54px;
  height: 54px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(234,246,242,0.72));

  box-shadow:
    0 14px 34px rgba(6, 26, 47, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.nav-status-dot {
  width: 17px;
  height: 17px;

  border-radius: 50%;
  background: var(--red);

  box-shadow:
    0 0 0 9px rgba(239,68,68,0.12),
    0 0 0 16px rgba(239,68,68,0.05);

  animation: statusPulse 1.9s ease-in-out infinite;
}

.nav-status-orb.is-open .nav-status-dot {
  background: var(--jade-light);
  box-shadow:
    0 0 0 9px rgba(18,183,166,0.14),
    0 0 0 16px rgba(18,183,166,0.06);
}

.nav-status-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

@keyframes statusPulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.16);
  }
}

.nav-showcase .nav-appointment {
  min-height: 58px;
  padding: 0 24px;
  gap: 11px;
  font-size: 0.92rem;
}

.nav-showcase .nav-emergency {
  width: 76px;
  min-height: 58px;

  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-radius: 24px;
  border: 1px solid rgba(239,68,68,0.30);

  background: rgba(255,255,255,0.82);
  color: var(--red);

  box-shadow:
    0 14px 34px rgba(239,68,68,0.10),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.nav-showcase .nav-emergency span {
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
}

.nav-showcase .nav-emergency strong {
  margin-top: 4px;
  color: var(--red);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}

.nav-showcase .nav-emergency:hover {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #ffffff;
}

.nav-showcase .nav-emergency:hover strong {
  color: #ffffff;
}

.nav-showcase .nav-phone {
  min-width: 162px;
  min-height: 58px;
  padding: 0 20px;

  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nav-showcase .nav-phone span {
  color: rgba(255,255,255,0.64);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
}

.nav-showcase .nav-phone strong {
  margin-top: 4px;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1;
}

/* Menu mobile */

.menu-button {
  width: 52px;
  height: 52px;
  min-width: 52px;

  display: none;
  place-items: center;

  border-radius: 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  box-shadow:
    0 16px 38px rgba(6, 26, 47, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.menu-button span {
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.32s var(--ease);
}

.menu-button span:first-child {
  transform: translateY(-5px);
}

.menu-button span:last-child {
  transform: translateY(5px);
}

.menu-button.open span:first-child {
  transform: rotate(45deg);
}

.menu-button.open span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 980;

  padding: 112px 16px 18px;

  display: flex;
  justify-content: center;

  background:
    radial-gradient(circle at 20% 10%, rgba(18,183,166,0.18), transparent 32%),
    linear-gradient(135deg, rgba(6,26,47,0.18), rgba(6,26,47,0.36));

  opacity: 0;
  pointer-events: none;
  transform: translateX(105%);

  transition:
    opacity 0.32s ease,
    transform 0.58s var(--ease);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-menu-inner {
  width: min(520px, 100%);
  max-height: calc(100dvh - 130px);
  padding: 22px;

  overflow-y: auto;

  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.76);

  background:
    radial-gradient(circle at 92% 8%, rgba(18,183,166,0.14), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(234,246,242,0.88));

  box-shadow:
    0 34px 100px rgba(6, 26, 47, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.mobile-menu-links {
  display: grid;
  gap: 10px;
}

.mobile-menu-links a {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
  color: var(--navy);
  font-weight: 900;
}

.mobile-menu-links a.active {
  color: var(--jade);
  background: rgba(18,183,166,0.10);
}

.mobile-menu-actions {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.mobile-appointment,
.mobile-emergency,
.mobile-phone {
  min-height: 54px;
  padding: 0 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 900;
}

.mobile-emergency {
  background: linear-gradient(135deg, #fff5f5, #ffffff);
  color: var(--red);
  border: 1px solid rgba(239,68,68,0.20);
}

/* ===================================================
   URGENCES COMPACTES
=================================================== */

.emergency-section {
  position: relative;
  z-index: 3;

  padding: 38px 0;

  background:
    radial-gradient(circle at 8% 18%, rgba(18,183,166,0.10), transparent 28%),
    radial-gradient(circle at 92% 40%, rgba(24,151,242,0.08), transparent 32%),
    linear-gradient(135deg, #f7fbf9 0%, #ffffff 52%, #eaf6f2 100%);
}

.emergency-panel {
  width: min(1280px, calc(100% - 72px));
  min-height: 76px;

  margin: 18px auto 0;
  padding: 13px 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.90);

  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(245,252,250,0.78));

  box-shadow:
    0 18px 54px rgba(6, 26, 47, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.96);

  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
}

.emergency-left {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.emergency-badge {
  padding: 8px 13px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  border-radius: 999px;

  background: rgba(255,245,245,0.88);
  border: 1px solid rgba(239,68,68,0.15);
  color: var(--red);

  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

.emergency-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(239,68,68,0.12);
}

.emergency-left h2 {
  margin: 0;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 900;
  white-space: nowrap;
}

.emergency-left p {
  display: none;
}

.emergency-right {
  margin-left: auto;

  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;

  flex-wrap: nowrap;
}

.emergency-card {
  min-height: 48px;
  padding: 0 14px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  border-radius: 999px;

  white-space: nowrap;
  text-decoration: none;

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.emergency-card:hover {
  transform: translateY(-2px);
}

.emergency-card-main {
  min-width: 255px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #ffffff;
  box-shadow:
    0 16px 38px rgba(6, 26, 47, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.emergency-card-light {
  min-width: 128px;
  background: rgba(255,255,255,0.86);
  color: var(--navy);
  border: 1px solid rgba(6, 26, 47, 0.07);
  box-shadow:
    0 12px 30px rgba(6, 26, 47, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.emergency-card-search {
  min-width: 190px;
  padding-right: 18px;
  background: linear-gradient(135deg, rgba(18,183,166,0.10), rgba(255,255,255,0.76));
  color: var(--jade);
  border: 1px solid rgba(18,183,166,0.18);
  box-shadow:
    0 12px 30px rgba(18,183,166,0.08),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.emergency-icon {
  width: 29px;
  height: 29px;
  min-width: 29px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #ffffff;

  font-size: 0.86rem;
  font-weight: 900;
}

.emergency-card-light .emergency-icon,
.emergency-card-search .emergency-icon {
  background: rgba(6,26,47,0.04);
  color: var(--navy);
}

.emergency-icon-blue {
  color: #1f8fff !important;
}

.emergency-icon-red {
  color: var(--red) !important;
}

.emergency-icon-green {
  color: var(--jade) !important;
}

.emergency-card-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.emergency-card-text strong {
  color: inherit;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.emergency-card-text small {
  display: none;
}

.emergency-number {
  min-width: 40px;
  height: 28px;
  padding: 0 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #ffffff;

  font-size: 0.74rem;
  font-weight: 900;
}

.emergency-number-soft {
  background: rgba(239,68,68,0.10);
  color: var(--red);
}

/* ===================================================
   HERO
=================================================== */

.hero {
  position: relative;
  min-height: 92vh;
  padding: 56px 0 115px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    radial-gradient(circle at 12% 18%, rgba(199,157,99,0.14), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(18,183,166,0.16), transparent 30%),
    linear-gradient(135deg, #fbf7ee 0%, #f7fbf9 58%, #ffffff 100%);
}

.hero::after {
  content: "PHARMACIE";
  position: absolute;
  right: -40px;
  top: 20%;

  color: rgba(6, 26, 47, 0.035);

  font-size: clamp(6rem, 16vw, 18rem);
  line-height: 1;
  letter-spacing: -0.08em;
  font-weight: 900;

  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}

.hero-content h1 {
  max-width: 760px;
  margin-top: 26px;

  color: var(--navy);

  font-size: clamp(4rem, 7.8vw, 7.8rem);
  line-height: 0.86;
  letter-spacing: -0.105em;
}

.hero-content h1 strong {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--jade), var(--jade-light), var(--copper));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-content p {
  max-width: 640px;
  margin-top: 32px;

  color: rgba(16, 37, 56, 0.70);

  font-size: 1.13rem;
  line-height: 1.88;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-practical {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.hero-practical article {
  padding: 18px;

  display: flex;
  align-items: center;
  gap: 14px;

  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.74);

  background: linear-gradient(145deg, rgba(255,255,255,0.82), rgba(251,247,238,0.54));

  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255,255,255,0.96);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-practical strong {
  display: block;
  color: var(--navy);
  font-weight: 900;
}

.hero-practical small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.hero-practical-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;

  border-radius: 50%;
  background: var(--red);

  box-shadow: 0 0 0 7px rgba(239,68,68,0.14);
}

.hero-practical article.is-open .hero-practical-dot {
  background: var(--jade-light);
  box-shadow: 0 0 0 7px rgba(18,183,166,0.16);
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  min-height: 650px;
  padding: 18px;

  border-radius: 54px;
  border: 1px solid rgba(255,255,255,0.76);

  background: linear-gradient(145deg, rgba(255,255,255,0.78), rgba(251,247,238,0.48));

  box-shadow:
    0 38px 110px rgba(6, 26, 47, 0.17),
    inset 0 1px 0 rgba(255,255,255,0.96);

  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: 614px;

  display: block;
  object-fit: cover;

  border-radius: 40px;

  filter:
    saturate(0.96)
    contrast(1.04)
    brightness(1.01);
}

.hero-floating-card {
  position: absolute;
  z-index: 3;

  padding: 17px 19px;

  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.82);

  background: linear-gradient(145deg, rgba(255,255,255,0.90), rgba(251,247,238,0.62));

  box-shadow:
    0 22px 54px rgba(6, 26, 47, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.96);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-floating-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--jade);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-floating-card strong {
  display: block;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
}

.hero-floating-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
}

.hero-floating-hours {
  left: -28px;
  bottom: 76px;
}

.hero-floating-care {
  right: -26px;
  top: 82px;
}

/* ===================================================
   AVIS GOOGLE
=================================================== */

.google-reviews {
  position: relative;
  padding: 92px 0 96px;
  overflow: hidden;

  background:
    radial-gradient(circle at 8% 18%, rgba(18,183,166,0.15), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(199,157,99,0.12), transparent 34%),
    linear-gradient(135deg, #f7fbf9, #ffffff 48%, #eef8f4);
}

.reviews-heading {
  max-width: 800px;
  margin: 0 auto 54px;
  text-align: center;
}

.reviews-heading .section-label {
  margin-bottom: 22px;
}

.reviews-shell {
  max-width: 1140px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.reviews-summary {
  min-height: 390px;
  padding: 28px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border-radius: 34px;
  overflow: hidden;

  background:
    radial-gradient(circle at 85% 12%, rgba(18,183,166,0.30), transparent 34%),
    linear-gradient(145deg, #061a2f, #0a2f55 56%, #073c4b);

  color: #ffffff;

  box-shadow:
    0 28px 80px rgba(6, 26, 47, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.13);
}

.reviews-google-label {
  width: fit-content;
  padding: 9px 13px;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);

  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.86);

  font-size: 0.78rem;
  font-weight: 900;
}

.reviews-score strong {
  display: block;

  color: #ffffff;

  font-size: clamp(3.4rem, 5vw, 4.7rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 900;
}

.reviews-score span {
  display: block;
  margin-top: 12px;
  color: #ffc857;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.reviews-summary p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.6;
}

.reviews-summary p strong {
  color: #ffffff;
}

.reviews-google-link {
  width: fit-content;
  padding: 13px 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  background: #ffffff;
  color: var(--navy);

  font-size: 0.82rem;
  font-weight: 900;

  box-shadow:
    0 18px 46px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.reviews-list {
  width: 100%;
}

.reviews-list .reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  position: relative;
  min-height: 285px;
  padding: 24px;

  display: flex;
  flex-direction: column;

  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.86);

  background:
    radial-gradient(circle at 88% 12%, rgba(18,183,166,0.09), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(251,247,238,0.68));

  box-shadow:
    0 22px 62px rgba(6, 26, 47, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.98);

  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);

  overflow: hidden;

  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18,183,166,0.26);
  box-shadow:
    0 34px 86px rgba(6, 26, 47, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.98);
}

.review-card::before {
  content: "“";
  position: absolute;
  right: 20px;
  top: 4px;

  color: rgba(18,183,166,0.10);

  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;

  pointer-events: none;
}

.review-card__top,
.review-card-top {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 18px;
}

.review-card__avatar,
.review-avatar {
  width: 50px;
  height: 50px;
  min-width: 50px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.92);

  overflow: hidden;

  background: linear-gradient(135deg, var(--jade), var(--navy-soft));

  color: #ffffff;
  font-weight: 900;

  box-shadow: 0 12px 28px rgba(6, 26, 47, 0.14);
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__author strong,
.review-card-top strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.15;
  font-weight: 900;
}

.review-card__author span,
.review-card-top span {
  display: block;
  margin-top: 4px;
  color: rgba(100,116,135,0.84);
  font-size: 0.74rem;
  font-weight: 800;
}

.review-card__stars {
  position: relative;
  z-index: 2;

  margin-bottom: 16px;

  color: #ffc857;
  font-size: 0.83rem;
  letter-spacing: 0.10em;
}

.review-card__text,
.review-card p {
  position: relative;
  z-index: 2;

  color: rgba(79,96,118,0.96);

  font-size: 0.88rem;
  line-height: 1.68;

  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;

  overflow: hidden;
}

.review-card__bottom {
  position: relative;
  z-index: 2;

  margin-top: auto;
  padding-top: 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-top: 1px solid rgba(6,26,47,0.07);
}

.review-card__date {
  color: rgba(100,116,135,0.72);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: capitalize;
}

.review-card__link {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(18,183,166,0.08);
  color: var(--jade);
  font-size: 0.72rem;
  font-weight: 900;
}

.review-card__link:hover {
  background: var(--jade);
  color: #ffffff;
}

/* ===================================================
   SERVICES
=================================================== */

.services {
  position: relative;
  padding: 96px 0;
  overflow: hidden;

  background:
    radial-gradient(circle at 88% 10%, rgba(18,183,166,0.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(238,247,244,0.62));
}

.services-bento {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: 34px;

  overflow: hidden;

  border-radius: 38px;
  border: 1px solid rgba(255,255,255,0.74);

  background: linear-gradient(145deg, rgba(255,255,255,0.84), rgba(251,247,238,0.54));

  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255,255,255,0.96);

  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.service-card-large {
  grid-row: span 2;
}

.service-card:hover {
  transform: translateY(-8px);
  background:
    radial-gradient(circle at 92% 10%, rgba(18,183,166,0.18), transparent 36%),
    linear-gradient(145deg, var(--navy), var(--navy-soft));
  color: #ffffff;
  box-shadow:
    var(--shadow-dark),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.service-number {
  position: absolute;
  top: 24px;
  right: 30px;

  color: rgba(6,26,47,0.065);

  font-size: 4.8rem;
  line-height: 1;
  letter-spacing: -0.08em;
  font-weight: 900;
}

.service-card:hover .service-number {
  color: rgba(255,255,255,0.08);
}

.service-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 56px;

  display: grid;
  place-items: center;

  border-radius: 20px;
  border: 1px solid rgba(199,157,99,0.26);

  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(223,238,233,0.62));
  color: var(--jade);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.96),
    0 12px 28px rgba(6,26,47,0.06);

  font-size: 1.35rem;
  font-weight: 900;
}

.service-card h3 {
  position: relative;
  z-index: 1;

  margin-bottom: 18px;

  color: var(--navy);

  font-size: 1.45rem;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.service-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.78;
}

.service-card:hover h3,
.service-card:hover p {
  color: #ffffff;
}

.service-card:hover p {
  opacity: 0.72;
}

/* ===================================================
   PROMESSE
=================================================== */

.promise {
  position: relative;
  padding: 125px 0;
  overflow: hidden;

  background:
    radial-gradient(circle at 15% 18%, rgba(18,183,166,0.18), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(199,157,99,0.16), transparent 30%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 52%, var(--navy-soft));
}

.promise::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 44px;
  pointer-events: none;
}

.promise-grid {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.promise-heading h2 {
  margin-top: 24px;
  color: #ffffff;
}

.promise-heading p {
  margin-left: 0;
  margin-right: 0;
  color: rgba(255,255,255,0.70);
}

.promise-list {
  display: grid;
  gap: 18px;
}

.promise-list article {
  padding: 28px;

  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 20px;
  row-gap: 8px;

  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.14);

  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.055));

  box-shadow:
    0 26px 70px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.12);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.promise-list span {
  width: 50px;
  height: 50px;
  grid-row: span 2;

  display: grid;
  place-items: center;

  border-radius: 17px;

  background: linear-gradient(135deg, #ffffff, var(--cream));
  color: var(--jade);

  font-size: 0.86rem;
  font-weight: 900;
}

.promise-list h3 {
  color: #ffffff;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.promise-list p {
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

/* ===================================================
   UNIVERS SANTÉ
=================================================== */

.products-direct {
  position: relative;
  padding: 96px 0;
  overflow: hidden;

  background:
    radial-gradient(circle at 12% 20%, rgba(18,183,166,0.13), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(199,157,99,0.12), transparent 32%),
    linear-gradient(135deg, #eaf6f2, #ffffff 50%, #f7fbf9);
}

.products-direct::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6,26,47,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,26,47,0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.products-direct .container {
  position: relative;
  z-index: 1;
}

.products-direct-heading {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

.products-direct-heading .section-label {
  margin-bottom: 22px;
}

.products-direct-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}

.product-feature {
  min-height: 680px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border-radius: 42px;
  border: 1px solid rgba(255,255,255,0.78);

  background:
    radial-gradient(circle at 90% 10%, rgba(18,183,166,0.16), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(251,247,238,0.68));

  box-shadow:
    0 34px 100px rgba(6,26,47,0.14),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.product-feature-image {
  position: relative;
  height: 370px;
  overflow: hidden;
}

.product-feature-image img,
.product-mini-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-feature-image span {
  position: absolute;
  left: 28px;
  top: 28px;

  padding: 12px 18px;

  border-radius: 999px;

  background: rgba(255,255,255,0.92);
  color: var(--jade);

  font-size: 0.86rem;
  font-weight: 900;

  box-shadow: 0 14px 34px rgba(6,26,47,0.12);
}

.product-feature-content {
  padding: 34px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-chip,
.product-mini-card span {
  width: fit-content;

  display: inline-flex;

  border-radius: 999px;

  background: rgba(18,183,166,0.08);
  color: var(--jade);

  font-weight: 900;
}

.product-chip {
  padding: 9px 13px;
  font-size: 0.76rem;
}

.product-feature h3 {
  margin-top: 22px;

  color: var(--navy);

  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  font-weight: 900;
}

.product-feature p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.product-feature-points {
  margin-top: auto;
  padding-top: 28px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.product-feature-points div {
  padding: 16px;

  border-radius: 20px;
  border: 1px solid rgba(6,26,47,0.07);

  background: linear-gradient(145deg, rgba(255,255,255,0.78), rgba(234,246,242,0.48));
}

.product-feature-points strong {
  display: block;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
}

.product-feature-points small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.products-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-mini-card {
  min-height: 250px;

  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: stretch;

  overflow: hidden;

  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.78);

  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(251,247,238,0.62));

  box-shadow:
    0 22px 65px rgba(6,26,47,0.09),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.product-mini-card > div {
  padding: 22px 22px 22px 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-mini-card span {
  margin-bottom: 14px;
  padding: 8px 12px;
  font-size: 0.72rem;
}

.product-mini-card h3 {
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.product-mini-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.62;
}

.product-mini-wide {
  grid-column: 1 / -1;
}

.products-direct-note {
  margin-top: 24px;
  padding: 22px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;

  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.78);

  background: linear-gradient(145deg, rgba(255,255,255,0.90), rgba(251,247,238,0.66));

  box-shadow:
    0 22px 65px rgba(6,26,47,0.09),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.products-direct-note strong {
  display: block;
  color: var(--navy);
  font-weight: 900;
}

.products-direct-note span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.products-direct-button {
  min-height: 56px;
  padding: 8px 8px 8px 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  flex: 0 0 auto;

  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #ffffff;

  box-shadow:
    0 18px 44px rgba(6,26,47,0.24),
    inset 0 1px 0 rgba(255,255,255,0.15);

  font-size: 0.9rem;
  font-weight: 900;
}

/* ===================================================
   À PROPOS
=================================================== */

.about {
  position: relative;
  padding: 104px 0;
  overflow: hidden;

  background:
    radial-gradient(circle at 82% 12%, rgba(199,157,99,0.12), transparent 28%),
    linear-gradient(135deg, var(--cream), #ffffff 56%, #f8faf9);
}

.about::after {
  content: "care";
  position: absolute;
  right: 6vw;
  top: 90px;

  color: rgba(199,157,99,0.12);

  font-family: Georgia, serif;
  font-size: clamp(6rem, 14vw, 15rem);
  font-style: italic;
  line-height: 1;

  pointer-events: none;
}

.about-grid {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.hero-image-card picture {
  display: block;
  height: 100%;
}

.about-photo-card {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 42px;
  background: var(--navy);
  box-shadow:
    0 34px 100px rgba(6, 26, 47, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.about-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 26, 47, 0.02) 24%, rgba(6, 26, 47, 0.88) 100%),
    radial-gradient(circle at 82% 14%, rgba(18, 183, 166, 0.18), transparent 34%);
  pointer-events: none;
}

.about-photo-card > img {
  width: 100%;
  height: 610px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.03);
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}

.about-photo-caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 28px;
  background: rgba(6, 26, 47, 0.68);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.about-photo-caption span {
  color: var(--jade-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-photo-caption strong {
  max-width: 15ch;
  display: block;
  margin-top: 10px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.about-photo-caption small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 750;
}

@media (hover: hover) {
  .about-photo-card:hover > img {
    transform: scale(1.035);
    filter: saturate(1) contrast(1.04);
  }
}

.about-trust-card {
  position: relative;
  min-height: 560px;
  padding: 38px;
  border-radius: 42px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background:
    radial-gradient(circle at 82% 12%, rgba(18,183,166,0.22), transparent 34%),
    radial-gradient(circle at 18% 88%, rgba(199,157,99,0.16), transparent 32%),
    linear-gradient(145deg, #061a2f, #0b2f55 58%, #073c4b);

  color: #ffffff;

  box-shadow:
    0 34px 100px rgba(6,26,47,0.24),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.about-trust-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 32px;
  pointer-events: none;
}

.about-trust-card-glow {
  position: absolute;
  right: -80px;
  top: -80px;

  width: 240px;
  height: 240px;

  border-radius: 50%;
  background: rgba(18,183,166,0.28);
  filter: blur(50px);
  pointer-events: none;
}

.about-trust-logo,
.about-trust-label,
.about-trust-card h3,
.about-trust-card p,
.about-trust-items,
.about-trust-address {
  position: relative;
  z-index: 2;
}

.about-trust-logo {
  width: 82px;
  height: 82px;

  display: grid;
  place-items: center;

  border-radius: 28px;

  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(234,246,242,0.82));

  box-shadow:
    0 18px 46px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.about-trust-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.about-trust-label {
  width: fit-content;
  margin-top: 34px;
  padding: 10px 14px;

  display: inline-flex;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);

  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.86);

  font-size: 0.76rem;
  font-weight: 900;
}

.about-trust-card h3 {
  margin-top: 24px;
  color: #ffffff;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.about-trust-card p {
  max-width: 480px;
  margin-top: 22px;
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.about-trust-items {
  margin-top: 34px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.about-trust-items div {
  padding: 15px;

  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);

  background: rgba(255,255,255,0.08);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-trust-items strong {
  display: block;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
}

.about-trust-items span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,0.62);
  font-size: 0.72rem;
  line-height: 1.4;
}

.about-trust-address {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.about-trust-address span {
  display: block;
  color: rgba(255,255,255,0.62);
  font-size: 0.82rem;
  font-weight: 800;
}

.about-trust-address strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
}

.about-quote {
  position: absolute;
  right: -26px;
  bottom: 56px;
  z-index: 3;

  padding: 18px 20px;

  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.82);

  background: linear-gradient(145deg, rgba(255,255,255,0.90), rgba(251,247,238,0.62));

  box-shadow:
    0 22px 54px rgba(6,26,47,0.16),
    inset 0 1px 0 rgba(255,255,255,0.96);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.about-quote span {
  color: var(--jade);
  font-size: 0.72rem;
  font-weight: 900;
}

.about-quote strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-weight: 900;
}

.about-quote small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
}

.about-content p {
  margin-left: 0;
  margin-right: 0;
}

.about-points {
  margin-top: 36px;
  display: grid;
  gap: 14px;
}

.about-points article {
  padding: 18px 20px;

  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.74);

  background: linear-gradient(145deg, rgba(255,255,255,0.82), rgba(251,247,238,0.54));

  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.about-points strong {
  display: block;
  color: var(--navy);
  font-weight: 900;
}

.about-points span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ===================================================
   HORAIRES
=================================================== */

.hours {
  position: relative;
  padding: 125px 0;
  overflow: hidden;

  background:
    radial-gradient(circle at 12% 20%, rgba(18,183,166,0.16), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(199,157,99,0.14), transparent 32%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 54%, var(--navy-soft));
}

.hours-card {
  position: relative;
  padding: 52px;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;

  overflow: hidden;

  border-radius: 52px;
  border: 1px solid rgba(255,255,255,0.14);

  background: linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055));

  box-shadow:
    0 34px 90px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.14);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hours-intro h2 {
  margin-top: 24px;
  color: #ffffff;
}

.hours-intro p {
  margin-left: 0;
  margin-right: 0;
  color: rgba(255,255,255,0.70);
}

.hours-status {
  width: fit-content;
  margin-top: 30px;
  padding: 12px 16px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);

  background: rgba(255,255,255,0.12);
  color: #ffffff;

  font-size: 0.82rem;
  font-weight: 900;
}

.hours-status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(239,68,68,0.16);
}

.hours-status.is-open::before {
  background: var(--jade-light);
  box-shadow: 0 0 0 6px rgba(18,183,166,0.18);
}

.hours-list {
  display: grid;
  gap: 14px;
}

.hours-list div {
  padding: 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  border-radius: 26px;
  border: 1px solid rgba(199,157,99,0.18);

  background: rgba(255,255,255,0.10);
}

.hours-list strong {
  color: #ffffff;
  font-weight: 900;
}

.hours-list span {
  color: rgba(255,255,255,0.75);
  font-weight: 750;
}

/* ===================================================
   CONTACT
=================================================== */

.contact {
  position: relative;
  padding: 104px 0;
  overflow: hidden;

  background:
    radial-gradient(circle at 12% 16%, rgba(18,183,166,0.10), transparent 30%),
    radial-gradient(circle at 88% 84%, rgba(199,157,99,0.10), transparent 32%),
    linear-gradient(135deg, #ffffff, var(--cream) 52%, #f7fbf9);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: start;
}

.contact-content > p {
  margin-left: 0;
  margin-right: 0;
}

.contact-details {
  margin-top: 36px;
  display: grid;
  gap: 14px;
}

.contact-details a,
.contact-details > div {
  padding: 18px;

  display: flex;
  align-items: center;
  gap: 16px;

  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.76);

  background: linear-gradient(145deg, rgba(255,255,255,0.84), rgba(251,247,238,0.54));

  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.contact-details span {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;

  display: grid;
  place-items: center;

  border-radius: 16px;
  border: 1px solid rgba(199,157,99,0.26);

  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(223,238,233,0.62));
  color: var(--jade);

  font-weight: 900;
}

.contact-details strong {
  display: block;
  color: var(--navy);
  font-weight: 900;
}

.contact-details small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-form {
  padding: 36px;

  border-radius: 38px;
  border: 1px solid rgba(255,255,255,0.76);

  background: linear-gradient(145deg, rgba(255,255,255,0.86), rgba(251,247,238,0.58));

  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.contact-form label {
  display: block;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-form label + label {
  margin-top: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 9px;
  padding: 16px 17px;

  border-radius: 18px;
  border: 1px solid rgba(199,157,99,0.22);

  outline: none;
  resize: vertical;

  background: linear-gradient(145deg, rgba(255,255,255,0.90), rgba(251,247,238,0.64));
  color: var(--navy);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(0,111,102,0.48);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0,111,102,0.10);
}

.contact-form-notice {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(0, 111, 102, 0.14);
  border-radius: 16px;
  background: rgba(0, 111, 102, 0.055);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.55;
}

.contact-form button {
  width: 100%;
  margin-top: 22px;
  padding: 9px 9px 9px 22px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  font-weight: 900;
}

.map-card {
  margin-top: 50px;
  padding: 18px;

  overflow: hidden;

  border-radius: 38px;
  border: 1px solid rgba(255,255,255,0.76);

  background: linear-gradient(145deg, rgba(255,255,255,0.84), rgba(251,247,238,0.54));

  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.map-card iframe {
  width: 100%;
  height: 410px;
  display: block;
  border: 0;
  border-radius: 28px;
}

/* ===================================================
   FOOTER
=================================================== */

.footer-premium-dark {
  position: relative;
  padding: 88px 0 32px;
  overflow: hidden;

  background:
    radial-gradient(circle at 10% 20%, rgba(0,171,163,0.18), transparent 28%),
    radial-gradient(circle at 88% 15%, rgba(18,40,79,0.55), transparent 32%),
    linear-gradient(135deg, #03070d, #07111c 45%, #05080e);

  color: rgba(255,255,255,0.92);
}

.footer-premium-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.18;
  pointer-events: none;
}

.footer-dark-container {
  position: relative;
  z-index: 2;
}

.footer-dark-grid {
  display: grid;
  grid-template-columns: 220px minmax(320px, 1fr) 430px;
  gap: 54px;
  align-items: start;
}

.footer-dark-logo {
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-dark-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-dark-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-dark-logo-text span {
  color: var(--jade-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-dark-logo-text strong {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.footer-dark-brand p {
  max-width: 175px;
  color: rgba(255,255,255,0.64);
  font-size: 1.02rem;
  line-height: 1.9;
}

.footer-dark-brand strong {
  color: #ffffff;
}

.footer-dark-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: #ff825c;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-dark-main h2 {
  color: #f6f7fb;
  font-size: clamp(3rem, 6.3vw, 6.1rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.footer-dark-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-dark-btn {
  min-height: 60px;
  min-width: 220px;
  padding: 0 20px 0 24px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  font-weight: 900;
}

.footer-dark-btn::after {
  content: "↗";
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 50%;
}

.footer-dark-btn-light {
  background: linear-gradient(135deg, #ffffff, #eef7f4);
  color: var(--navy);
}

.footer-dark-btn-light::after {
  background: linear-gradient(135deg, var(--jade), var(--jade-light));
  color: #ffffff;
}

.footer-dark-btn-outline {
  border: 1px solid rgba(255,255,255,0.22);
  background: linear-gradient(135deg, #12a9ed, var(--doctolib));
  color: #ffffff;
}

.footer-dark-btn-outline::after {
  background: rgba(255,255,255,0.16);
}

.footer-dark-links {
  
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.footer-dark-column h4 {
  margin-bottom: 18px;
  color: rgba(255,255,255,0.42);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-dark-column a,
.footer-dark-column p {
  display: block;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.86);
  font-size: 1.04rem;
  line-height: 1.65;
}

.footer-dark-column p {
  color: rgba(255,255,255,0.62);
}

.footer-dark-column a:hover {
  color: var(--jade-light);
}

.footer-dark-bottom {
  margin-top: 60px;
  padding-top: 26px;

  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;

  border-top: 1px solid rgba(255,255,255,0.10);
}

.footer-dark-bottom p {
  color: rgba(255,255,255,0.42);
  font-size: 0.95rem;
}

/* ===================================================
   FLOATING CALL
=================================================== */

.call-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 950;

  min-height: 54px;
  padding: 8px 8px 8px 18px;

  display: none;
  align-items: center;
  gap: 12px;

  border: 1px solid rgba(255,255,255,0.28);

  background: linear-gradient(135deg, rgba(6,26,47,0.96), rgba(11,44,74,0.96));
  color: #ffffff;

  box-shadow:
    0 20px 52px rgba(6,26,47,0.32),
    inset 0 1px 0 rgba(255,255,255,0.16);

  font-size: 0.82rem;
  font-weight: 900;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* ===================================================
   ANIMATIONS — SAFE MODE
=================================================== */

/* Par défaut, tout reste visible même si le JS plante */
.reveal {
  opacity: 1;
  transform: none;
}

/* Les animations ne s'activent que quand le JS confirme qu'il est lancé */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(26px);

  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation plus douce pour les cartes */
.js-ready .service-card.reveal,
.js-ready .review-card.reveal,
.js-ready .product-mini-card.reveal,
.js-ready .product-feature.reveal,
.js-ready .emergency-panel.reveal {
  transform: translateY(34px) scale(0.985);
}

.js-ready .service-card.reveal.visible,
.js-ready .review-card.reveal.visible,
.js-ready .product-mini-card.reveal.visible,
.js-ready .product-feature.reveal.visible,
.js-ready .emergency-panel.reveal.visible {
  transform: translateY(0) scale(1);
}

/* ===================================================
   RESPONSIVE
=================================================== */

@media (max-width: 1360px) {
  .nav-showcase {
    width: min(1320px, calc(100% - 42px));
    gap: 10px;
  }

  .brand-showcase {
    min-width: 230px;
  }

  .nav-showcase .nav-links a {
    padding: 0 8px;
    font-size: 0.74rem;
  }

  .nav-showcase .nav-appointment {
    padding: 0 18px;
  }

  .nav-showcase .nav-phone {
    min-width: 140px;
  }

  .emergency-panel {
    width: calc(100% - 40px);
  }
}

@media (max-width: 1180px) {
  .site-header-premium {
    top: 14px;
  }

  .nav-showcase {
    width: calc(100% - 28px);
    min-height: 76px;
    justify-content: space-between;
  }

  .nav-showcase .nav-links,
  .nav-showcase .nav-actions {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .brand-showcase {
    min-width: 0;
  }

  .emergency-section {
    padding-top: 32px;
  }

  .emergency-panel {
    width: calc(100% - 32px);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .emergency-left {
    width: 100%;
    justify-content: space-between;
  }

  .emergency-right {
    width: 100%;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .emergency-card {
    width: 100%;
    justify-content: center;
  }

  .emergency-card-main,
  .emergency-card-light,
  .emergency-card-search {
    min-width: 0;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-grid,
  .promise-grid,
  .products-direct-grid,
  .about-grid,
  .hours-card,
  .contact-grid,
  .footer-dark-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-card {
    min-height: auto;
  }

  .hero-image-card img {
    min-height: 520px;
  }

  .services-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card-large {
    grid-row: auto;
  }

  .reviews-shell {
    grid-template-columns: 1fr;
  }

  .reviews-summary {
    min-height: auto;
    gap: 26px;
  }

  .footer-dark-links {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  section {
    scroll-margin-top: 95px;
  }

  .site-header-premium {
    top: 12px;
  }

  .nav-showcase {
    width: calc(100% - 24px);
    min-height: 68px;
    padding: 8px 10px;
    border-radius: 24px;
  }

  .brand-showcase {
    padding: 0 10px 0 4px;
    gap: 10px;
  }

  .brand-showcase .brand-symbol {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 18px;
  }

  .brand-showcase .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-showcase .brand-name small {
    font-size: 0.54rem;
    letter-spacing: 0.18em;
  }

  .brand-showcase .brand-name strong {
    font-size: 1rem;
  }

  .menu-button {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .mobile-menu {
    padding-top: 92px;
  }

  .emergency-section {
    padding: 28px 0;
  }

  .emergency-panel {
    width: calc(100% - 24px);
    margin-top: 8px;
    padding: 12px;
    border-radius: 24px;
  }

  .emergency-left {
    display: grid;
    gap: 8px;
  }

  .emergency-left h2 {
    white-space: normal;
    font-size: 0.95rem;
  }

  .emergency-right {
    grid-template-columns: 1fr 1fr;
  }

  .emergency-card-main,
  .emergency-card-search {
    grid-column: 1 / -1;
  }

  .emergency-card {
    min-height: 48px;
    padding: 0 12px;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 82px;
  }

  .hero-content h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn,
  .btn-doctolib {
    width: 100%;
  }

  .hero-practical {
    grid-template-columns: 1fr;
  }

  .hero-image-card {
    border-radius: 36px;
  }

  .hero-image-card img {
    min-height: 380px;
    border-radius: 26px;
  }

  .hero-floating-hours {
    left: 12px;
    bottom: 18px;
  }

  .hero-floating-care {
    right: 12px;
    top: 18px;
  }

  .google-reviews,
  .services,
  .promise,
  .products-direct,
  .about,
  .hours,
  .contact {
    padding: 68px 0;
  }

  .section-heading h2,
  .reviews-heading h2,
  .products-direct-heading h2,
  .promise-heading h2,
  .about-content h2,
  .hours-intro h2,
  .contact-content h2 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  .reviews-list .reviews-grid,
  .services-bento,
  .products-mini-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: auto;
  }

  .review-card__text,
  .review-card p {
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }

  .product-feature {
    min-height: auto;
    border-radius: 32px;
  }

  .product-feature-image {
    height: 300px;
  }

  .product-feature-content {
    padding: 26px;
  }

  .product-feature-points {
    grid-template-columns: 1fr;
  }

  .product-mini-card,
  .product-mini-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .product-mini-card img {
    height: 210px;
  }

  .product-mini-card > div {
    padding: 20px;
  }

  .products-direct-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .products-direct-button {
    width: 100%;
  }

  .about-trust-card {
    min-height: auto;
    padding: 28px;
    border-radius: 32px;
  }

  .about-photo-card {
    min-height: 520px;
    border-radius: 32px;
  }

  .about-photo-card > img {
    height: 520px;
  }

  .about-photo-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 22px;
    border-radius: 24px;
  }

  .about-trust-items {
    grid-template-columns: 1fr;
  }

  .about-quote {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 16px;
  }

  .hours-card,
  .contact-form {
    padding: 28px;
    border-radius: 34px;
  }

  .hours-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-card iframe {
    height: 320px;
  }

  .footer-premium-dark {
    padding: 72px 0 30px;
  }

  .footer-dark-main h2 {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
  }

  .footer-dark-links {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-dark-btn {
    width: 100%;
  }

  .call-float {
    display: inline-flex;
  }
}

@media (max-width: 430px) {
  .brand-showcase .brand-name small {
    display: none;
  }

  .brand-showcase .brand-name strong {
    font-size: 0.95rem;
  }

  .emergency-badge {
    font-size: 0.68rem;
  }

  .emergency-right {
    grid-template-columns: 1fr;
  }

  .emergency-card-main,
  .emergency-card-search {
    grid-column: auto;
  }
}
/* ===================================================
   MOTION — FLUIDITÉ GLOBALE CORRIGÉE
=================================================== */

/* On force une vraie fluidité sur les éléments interactifs */
.nav-showcase,
.brand-showcase,
.brand-symbol,
.nav-links a,
.nav-status-orb,
.nav-appointment,
.nav-phone,
.nav-emergency,
.theme-toggle,

.emergency-panel,
.emergency-card,
.emergency-icon,
.emergency-number,

.hero-practical article,
.hero-image-card,
.hero-image-card img,
.hero-floating-card,

.service-card,
.promise-list article,
.review-card,
.reviews-summary,

.product-feature,
.product-feature-image img,
.product-mini-card,
.product-mini-card img,
.product-feature-points div,

.about-trust-card,
.about-points article,
.contact-details a,
.contact-details > div,
.contact-details span,
.contact-form,
.products-direct-note,
.products-direct-button,
.hours-list div,
.footer-dark-btn,
.footer-dark-column a {
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.45s ease,
    filter 0.55s ease,
    opacity 0.55s ease !important;

  will-change: transform;
}

/* Survol plus progressif */
@media (hover: hover) {
  .service-card:hover,
  .review-card:hover,
  .product-feature:hover,
  .product-mini-card:hover,
  .promise-list article:hover,
  .about-points article:hover,
  .contact-details a:hover,
  .contact-details > div:hover,
  .products-direct-note:hover,
  .hours-list div:hover,
  .emergency-panel:hover {
    transform: translateY(-7px) scale(1.01) !important;
  }

  .btn:hover,
  .nav-appointment:hover,
  .nav-phone:hover,
  .nav-emergency:hover,
  .emergency-card:hover,
  .products-direct-button:hover,
  .contact-form button:hover,
  .footer-dark-btn:hover {
    transform: translateY(-4px) scale(1.025) !important;
  }

  .hero-image-card:hover img,
  .product-feature:hover .product-feature-image img,
  .product-mini-card:hover img {
    transform: scale(1.045) !important;
  }
}

/* Respect accessibilité, mais sans casser tout le site */
@media (prefers-reduced-motion: reduce) {
  .nav-status-dot {
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
/* ===================================================
   RESPONSIVE — FIX MOBILE FINAL
=================================================== */

@media (max-width: 1180px) {
  .nav-showcase .nav-links,
  .nav-showcase .nav-actions {
    display: none !important;
  }

  .menu-button {
    position: relative;
    display: grid !important;
  }

  .mobile-menu {
    display: flex !important;
  }
}

@media (max-width: 760px) {
  .hero-grid,
  .promise-grid,
  .products-direct-grid,
  .about-grid,
  .hours-card,
  .contact-grid,
  .footer-dark-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .services-bento,
  .reviews-list .reviews-grid,
  .products-mini-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .hero-content,
  .hero-visual,
  .emergency-panel,
  .reviews-heading,
  .reviews-summary,
  .section-heading,
  .service-card,
  .promise-heading,
  .promise-list article,
  .products-direct-heading,
  .product-feature,
  .product-mini-card,
  .products-direct-note,
  .about-visual,
  .about-content,
  .about-trust-card,
  .hours-card,
  .contact-content,
  .contact-form,
  .map-card {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu.open {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(0) !important;
  }

  .mobile-menu-inner {
    display: flex !important;
    flex-direction: column !important;
  }

  .mobile-menu-links,
  .mobile-menu-actions {
    display: grid !important;
  }
}
/* ===================================================
   MOTION PREMIUM — BOUTONS & SECTIONS VIVANTES
=================================================== */

/* Base interactive */
a,
button,
.service-card,
.review-card,
.product-feature,
.product-mini-card,
.about-points article,
.contact-details a,
.contact-details > div,
.promise-list article,
.hero-practical article,
.products-direct-note,
.hours-list div,
.footer-dark-column a {
  -webkit-tap-highlight-color: transparent;
}

/* Transitions générales */
.btn,
.nav-appointment,
.nav-phone,
.nav-emergency,
.mobile-appointment,
.mobile-emergency,
.mobile-phone,
.contact-form button,
.call-float,
.footer-dark-btn,
.products-direct-button,
.emergency-card,
.reviews-google-link,
.review-card__link,
.contact-details a,
.contact-details > div,
.service-card,
.review-card,
.product-feature,
.product-mini-card,
.promise-list article,
.about-points article,
.hero-practical article,
.products-direct-note,
.hours-list div,
.footer-dark-column a {
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s ease,
    border-color 0.34s ease,
    background 0.34s ease,
    color 0.34s ease,
    filter 0.34s ease;
}

/* Hover boutons */
@media (hover: hover) {
  .btn:hover,
  .nav-appointment:hover,
  .nav-phone:hover,
  .nav-emergency:hover,
  .contact-form button:hover,
  .call-float:hover,
  .footer-dark-btn:hover,
  .products-direct-button:hover,
  .reviews-google-link:hover,
  .mobile-appointment:hover,
  .mobile-emergency:hover,
  .mobile-phone:hover {
    transform: translateY(-4px) scale(1.018);
  }

  .btn:active,
  .nav-appointment:active,
  .nav-phone:active,
  .nav-emergency:active,
  .contact-form button:active,
  .call-float:active,
  .footer-dark-btn:active,
  .products-direct-button:active,
  .reviews-google-link:active,
  .mobile-appointment:active,
  .mobile-emergency:active,
  .mobile-phone:active {
    transform: translateY(-1px) scale(0.985);
  }
}

/* Doctolib plus vivant */
@media (hover: hover) {
  .nav-appointment:hover,
  .btn-doctolib:hover,
  .mobile-appointment:hover {
    box-shadow:
      0 28px 70px rgba(5, 150, 222, 0.40),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }

  .nav-appointment:hover .doctolib-logo,
  .btn-doctolib:hover .doctolib-logo {
    transform: rotate(-6deg) scale(1.12);
    filter: drop-shadow(0 8px 14px rgba(255,255,255,0.18));
  }
}

/* Téléphone sombre */
@media (hover: hover) {
  .nav-phone:hover,
  .btn-primary:hover,
  .contact-form button:hover,
  .products-direct-button:hover,
  .footer-dark-btn-light:hover {
    box-shadow:
      0 30px 72px rgba(6, 26, 47, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
}

/* Garde / urgence */
@media (hover: hover) {
  .nav-emergency:hover,
  .mobile-emergency:hover {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #ffffff;
    border-color: rgba(255,255,255,0.22);
    box-shadow:
      0 26px 58px rgba(239, 68, 68, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.20);
  }

  .nav-emergency:hover strong {
    color: #ffffff;
  }
}

/* ===================================================
   HEADER — MICRO INTERACTIONS
=================================================== */

@media (hover: hover) {
  .brand-showcase:hover {
    transform: translateY(-2px);
    background:
      radial-gradient(circle at 18% 18%, rgba(18, 183, 166, 0.16), transparent 42%),
      linear-gradient(145deg, rgba(255,255,255,0.94), rgba(234,246,242,0.72));
    box-shadow:
      0 16px 38px rgba(6, 26, 47, 0.08),
      inset 0 1px 0 rgba(255,255,255,0.96);
  }

  .brand-showcase:hover .brand-symbol {
    transform: rotate(-3deg) scale(1.05);
  }

  .nav-showcase .nav-links a:hover {
    transform: translateY(-2px);
  }

  .nav-status-orb:hover {
    transform: scale(1.06);
    box-shadow:
      0 18px 44px rgba(18, 183, 166, 0.16),
      inset 0 1px 0 rgba(255,255,255,0.96);
  }
}

/* ===================================================
   BARRE URGENCE — PLUS VIVANTE
=================================================== */

@media (hover: hover) {
  .emergency-panel:hover {
    transform: translateY(-3px);
    box-shadow:
      0 26px 76px rgba(6, 26, 47, 0.14),
      inset 0 1px 0 rgba(255,255,255,0.96);
  }

  .emergency-card:hover {
    transform: translateY(-3px) scale(1.015);
  }

  .emergency-card-main:hover {
    box-shadow:
      0 24px 58px rgba(6, 26, 47, 0.30),
      inset 0 1px 0 rgba(255,255,255,0.16);
  }

  .emergency-card-light:hover {
    background: #ffffff;
    border-color: rgba(239, 68, 68, 0.16);
    box-shadow:
      0 20px 46px rgba(6, 26, 47, 0.12),
      inset 0 1px 0 rgba(255,255,255,0.96);
  }

  .emergency-card-search:hover {
    background:
      linear-gradient(
        135deg,
        rgba(18, 183, 166, 0.18),
        rgba(255,255,255,0.88)
      );
    border-color: rgba(18, 183, 166, 0.32);
    box-shadow:
      0 20px 46px rgba(18, 183, 166, 0.14),
      inset 0 1px 0 rgba(255,255,255,0.96);
  }

  .emergency-card:hover .emergency-icon {
    transform: rotate(8deg) scale(1.08);
  }

  .emergency-number {
    transition:
      transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.3s ease;
  }

  .emergency-card:hover .emergency-number {
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(239, 68, 68, 0.22);
  }
}

/* ===================================================
   CARTES SECTIONS — EFFET PREMIUM
=================================================== */

@media (hover: hover) {
  .hero-practical article:hover,
  .service-card:hover,
  .review-card:hover,
  .product-feature:hover,
  .product-mini-card:hover,
  .promise-list article:hover,
  .about-points article:hover,
  .contact-details a:hover,
  .contact-details > div:hover,
  .products-direct-note:hover,
  .hours-list div:hover {
    transform: translateY(-8px);
  }

  .service-card:hover,
  .review-card:hover,
  .product-mini-card:hover,
  .product-feature:hover,
  .about-points article:hover,
  .contact-details a:hover,
  .contact-details > div:hover,
  .products-direct-note:hover {
    border-color: rgba(18, 183, 166, 0.24);
    box-shadow:
      0 34px 86px rgba(6, 26, 47, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }

  .promise-list article:hover {
    transform: translateX(8px);
    background:
      linear-gradient(
        145deg,
        rgba(255,255,255,0.18),
        rgba(255,255,255,0.08)
      );
    box-shadow:
      0 34px 90px rgba(0,0,0,0.24),
      inset 0 1px 0 rgba(255,255,255,0.16);
  }
}

/* ===================================================
   IMAGES — ZOOM DISCRET AU SURVOL
=================================================== */

.hero-image-card,
.product-feature-image,
.product-mini-card,
.map-card,
.about-trust-card {
  overflow: hidden;
}

.hero-image-card img,
.product-feature-image img,
.product-mini-card img,
.map-card iframe {
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease;
}

@media (hover: hover) {
  .hero-image-card:hover img,
  .product-feature:hover .product-feature-image img,
  .product-mini-card:hover img {
    transform: scale(1.055);
    filter:
      saturate(1.04)
      contrast(1.04)
      brightness(1.02);
  }
}

/* ===================================================
   UNIVERS SANTÉ — CARTES PLUS VIVANTES
=================================================== */

@media (hover: hover) {
  .product-feature:hover {
    transform: translateY(-8px) rotate(-0.4deg);
  }

  .product-mini-card:hover {
    transform: translateY(-7px);
    background:
      radial-gradient(circle at 92% 10%, rgba(18, 183, 166, 0.12), transparent 34%),
      linear-gradient(145deg, rgba(255,255,255,0.96), rgba(251,247,238,0.74));
  }

  .product-feature:hover .product-chip,
  .product-mini-card:hover span {
    background: var(--jade);
    color: #ffffff;
  }

  .product-feature-points div {
    transition:
      transform 0.3s ease,
      background 0.3s ease,
      box-shadow 0.3s ease;
  }

  .product-feature:hover .product-feature-points div {
    background: rgba(255,255,255,0.86);
    box-shadow: 0 16px 34px rgba(6, 26, 47, 0.08);
  }

  .product-feature-points div:hover {
    transform: translateY(-3px);
  }
}

/* ===================================================
   AVIS GOOGLE — PLUS PREMIUM
=================================================== */

@media (hover: hover) {
  .reviews-summary:hover {
    transform: translateY(-5px);
    box-shadow:
      0 34px 92px rgba(6, 26, 47, 0.30),
      inset 0 1px 0 rgba(255,255,255,0.15);
  }

  .review-card:hover .review-card__avatar,
  .review-card:hover .review-avatar {
    transform: scale(1.08);
  }

  .review-card:hover .review-card__link {
    background: var(--jade);
    color: #ffffff;
  }
}

.reviews-summary,
.review-card__avatar,
.review-avatar {
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s ease;
}

/* ===================================================
   CONTACT — PLUS INTERACTIF
=================================================== */

@media (hover: hover) {
  .contact-details a:hover,
  .contact-details > div:hover {
    background:
      linear-gradient(
        145deg,
        var(--navy),
        var(--navy-soft)
      );
    color: #ffffff;
  }

  .contact-details a:hover strong,
  .contact-details > div:hover strong,
  .contact-details a:hover small,
  .contact-details > div:hover small {
    color: #ffffff;
  }

  .contact-details a:hover span,
  .contact-details > div:hover span {
    background: linear-gradient(135deg, var(--jade), var(--jade-light));
    color: #ffffff;
    border-color: rgba(255,255,255,0.22);
    transform: rotate(-4deg) scale(1.06);
  }

  .contact-form {
    transition:
      transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.34s ease,
      border-color 0.34s ease;
  }

  .contact-form:hover {
    transform: translateY(-5px);
    border-color: rgba(18, 183, 166, 0.24);
    box-shadow:
      0 34px 90px rgba(6, 26, 47, 0.15),
      inset 0 1px 0 rgba(255,255,255,0.98);
  }
}

/* ===================================================
   FOOTER — LIENS PLUS VIVANTS
=================================================== */

@media (hover: hover) {
  .footer-dark-column a:hover {
    transform: translateX(6px);
    color: var(--jade-light);
  }

  .footer-dark-btn:hover::after {
    transform: rotate(8deg) scale(1.08);
  }
}

/* ===================================================
   PETITE RESPIRATION AUTOMATIQUE
=================================================== */

.nav-status-dot {
  animation: statusBreath 1.9s ease-in-out infinite;
}

@keyframes statusBreath {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-status-dot {
    animation: none;
  }
}
/* ===================================================
   FIX ALIGNEMENT BARRE URGENCE
=================================================== */

.emergency-panel {
  justify-content: center !important;
  gap: 18px !important;
}

.emergency-left {
  flex: 0 0 auto !important;
}

.emergency-right {
  margin-left: 0 !important;
  flex: 0 0 auto !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  gap: 10px !important;
}

/* On garde le bouton recherche dans le même groupe visuel */
.emergency-card-search {
  min-width: 180px !important;
  margin-left: 0 !important;
}

/* Boutons légèrement plus équilibrés */
.emergency-card-main {
  min-width: 240px !important;
}

.emergency-card-light {
  min-width: 122px !important;
}

/* Responsive tablette */
@media (max-width: 1180px) {
  .emergency-right {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .emergency-card-main,
  .emergency-card-light,
  .emergency-card-search {
    min-width: 0 !important;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .emergency-right {
    grid-template-columns: 1fr 1fr !important;
  }

  .emergency-card-main,
  .emergency-card-search {
    grid-column: 1 / -1 !important;
  }
}
/* ===================================================
   FIX FINAL ALIGNEMENT BARRE URGENCE
=================================================== */

.emergency-panel {
  width: min(1420px, calc(100% - 72px)) !important;
  min-height: 78px !important;

  display: grid !important;
  grid-template-columns: auto 1fr !important;
  align-items: center !important;
  gap: 22px !important;

  padding: 13px 18px !important;
  margin-top: 18px !important;

  overflow: visible !important;
}

.emergency-left {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;

  min-width: 0 !important;
  flex: none !important;
}

.emergency-badge {
  flex: 0 0 auto !important;
  margin: 0 !important;
}

.emergency-left h2 {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
  font-size: 0.96rem !important;
}

.emergency-right {
  width: 100% !important;
  margin-left: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 9px !important;

  flex-wrap: nowrap !important;
}

.emergency-card-main {
  min-width: 230px !important;
}

.emergency-card-light {
  min-width: 118px !important;
}

.emergency-card-search {
  min-width: 178px !important;
}

/* Évite que les boutons forcent le débordement */
.emergency-card {
  flex: 0 0 auto !important;
}

/* Responsive tablette : on passe proprement sur 2 lignes */
@media (max-width: 1220px) {
  .emergency-panel {
    width: calc(100% - 40px) !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .emergency-left {
    width: 100% !important;
    justify-content: space-between !important;
  }

  .emergency-right {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .emergency-card-main,
  .emergency-card-light,
  .emergency-card-search {
    min-width: 0 !important;
    width: 100% !important;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .emergency-panel {
    width: calc(100% - 24px) !important;
  }

  .emergency-left {
    display: grid !important;
    gap: 8px !important;
    justify-content: initial !important;
  }

  .emergency-left h2 {
    white-space: normal !important;
  }

  .emergency-right {
    grid-template-columns: 1fr 1fr !important;
  }

  .emergency-card-main,
  .emergency-card-search {
    grid-column: 1 / -1 !important;
  }
}
/* ===================================================
   FIX PHRASE URGENCE CACHÉE SOUS LES BOUTONS
=================================================== */

.emergency-panel {
  grid-template-columns: minmax(0, 1fr) auto !important;
  overflow: hidden !important;
}

.emergency-left {
  min-width: 0 !important;
  overflow: hidden !important;
}

.emergency-left h2 {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: 360px !important;

  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.emergency-right {
  width: auto !important;
  min-width: max-content !important;
  flex-shrink: 0 !important;
}

/* Boutons un peu plus compacts pour éviter le chevauchement */
.emergency-card-main {
  min-width: 215px !important;
}

.emergency-card-light {
  min-width: 110px !important;
}

.emergency-card-search {
  min-width: 165px !important;
}

/* Écran moyen : on passe sur 2 lignes propres avant que ça chevauche */
@media (max-width: 1320px) {
  .emergency-panel {
    grid-template-columns: 1fr !important;
  }

  .emergency-left h2 {
    max-width: none !important;
  }

  .emergency-right {
    width: 100% !important;
    min-width: 0 !important;

    display: grid !important;
    grid-template-columns: 1.3fr 0.7fr 0.8fr 1fr !important;
    gap: 8px !important;
  }

  .emergency-card-main,
  .emergency-card-light,
  .emergency-card-search {
    min-width: 0 !important;
    width: 100% !important;
  }
}
/* ===================================================
   FIX DÉFINITIF BARRE URGENCE — 2 LIGNES PROPRES
=================================================== */

.emergency-panel {
  width: min(1120px, calc(100% - 72px)) !important;
  min-height: auto !important;

  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto auto !important;
  gap: 12px !important;

  padding: 14px 18px !important;
  overflow: visible !important;
}

/* Ligne 1 : badge + phrase */
.emergency-left {
  width: 100% !important;
  min-width: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;

  overflow: visible !important;
}

.emergency-badge {
  flex: 0 0 auto !important;
}

.emergency-left h2 {
  display: block !important;

  flex: 0 1 auto !important;
  max-width: none !important;
  min-width: 0 !important;

  overflow: visible !important;
  text-overflow: clip !important;
  white-space: nowrap !important;

  font-size: 0.98rem !important;
  line-height: 1.15 !important;
}

/* Ligne 2 : boutons bien centrés */
.emergency-right {
  width: 100% !important;
  min-width: 0 !important;
  margin-left: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
}

.emergency-card {
  flex: 0 0 auto !important;
}

.emergency-card-main {
  min-width: 230px !important;
}

.emergency-card-light {
  min-width: 118px !important;
}

.emergency-card-search {
  min-width: 178px !important;
}

/* Tablette */
@media (max-width: 1180px) {
  .emergency-panel {
    width: calc(100% - 40px) !important;
  }

  .emergency-left {
    justify-content: flex-start !important;
  }

  .emergency-right {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .emergency-card,
  .emergency-card-main,
  .emergency-card-light,
  .emergency-card-search {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: center !important;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .emergency-panel {
    width: calc(100% - 24px) !important;
    padding: 12px !important;
  }

  .emergency-left {
    display: grid !important;
    gap: 8px !important;
  }

  .emergency-left h2 {
    white-space: normal !important;
    font-size: 0.95rem !important;
  }

  .emergency-right {
    grid-template-columns: 1fr 1fr !important;
  }

  .emergency-card-main,
  .emergency-card-search {
    grid-column: 1 / -1 !important;
  }
}

/* ===================================================
   TRÈS PETITS ÉCRANS
=================================================== */

@media (max-width: 430px) {
  .nav-showcase {
    width: calc(100% - 24px) !important;
  }

  .brand-showcase {
    max-width: calc(100% - 118px) !important;
    padding-right: 10px !important;
  }

  .brand-name strong::after {
    font-size: 0.86rem !important;
  }

  .menu-button.sm-toggle {
    right: 22px !important;
    min-width: 104px !important;
    height: 54px !important;
    padding: 0 14px !important;
  }

  .menu-button.sm-toggle .sm-toggle-textWrap {
    width: 44px !important;
    min-width: 44px !important;
    font-size: 0.78rem !important;
  }

  .staggered-menu-panel {
    padding: 98px 20px 18px !important;
    gap: 12px !important;
  }

  .sm-menu-brand img {
    width: 42px !important;
    height: 42px !important;
  }

  .sm-menu-brand-text strong {
    font-size: 0.9rem !important;
  }

  .sm-menu-brand-text small {
    font-size: 0.66rem !important;
  }

  .sm-panel-itemLabel {
    font-size: clamp(1.82rem, 10.2vw, 2.95rem) !important;
    line-height: 0.92 !important;
  }

  .sm-panel-item::after {
    font-size: 0.74rem !important;
  }

  .sm-quick-actions {
    gap: 6px !important;
  }

  .sm-quick-action {
    min-height: 44px !important;
    padding: 0 6px !important;
    font-size: 0.68rem !important;
    gap: 5px !important;
  }

  .sm-quick-logo {
    width: 19px !important;
    height: 19px !important;
  }

  .sm-quick-icon {
    width: 21px !important;
    height: 21px !important;
    min-width: 21px !important;
  }

  .emergency-panel {
    width: calc(100% - 48px) !important;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 14.5vw, 4.3rem) !important;
    line-height: 0.92 !important;
    letter-spacing: -0.08em !important;
  }

  .hero-content p {
    font-size: 1rem !important;
    line-height: 1.68 !important;
  }
}

/* ===================================================
   ÉCRANS PAS TRÈS HAUTS — MENU SANS SCROLL
=================================================== */

@media (max-height: 760px) and (max-width: 1180px) {
  .staggered-menu-panel {
    padding-top: 86px !important;
    gap: 8px !important;
  }

  .sm-menu-brand img {
    width: 38px !important;
    height: 38px !important;
  }

  .sm-menu-brand-text strong {
    font-size: 0.84rem !important;
  }

  .sm-menu-brand-text small {
    display: none !important;
  }

  .sm-panel-list {
    margin-top: 2px !important;
  }

  .sm-panel-itemLabel {
    font-size: clamp(1.55rem, 6.2vh, 2.35rem) !important;
    line-height: 0.9 !important;
  }

  .sm-socials {
    padding-top: 9px !important;
    gap: 7px !important;
  }

  .sm-socials-title {
    font-size: 0.66rem !important;
  }

  .sm-quick-action {
    min-height: 38px !important;
    font-size: 0.65rem !important;
  }

  .sm-quick-logo {
    width: 17px !important;
    height: 17px !important;
  }

  .sm-quick-icon {
    width: 19px !important;
    height: 19px !important;
    min-width: 19px !important;
  }
}
/* ===================================================
   MENU REACTBITS — CAPSULE ANIMÉE
=================================================== */

@media (min-width: 1181px) {
  .nav-showcase .reactbits-menu {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;

    display: flex !important;
    align-items: center !important;
    gap: 4px !important;

    padding: 6px !important;
    border-radius: 999px !important;

    background:
      linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.78),
        rgba(234, 246, 242, 0.54)
      ) !important;

    border: 1px solid rgba(255, 255, 255, 0.78) !important;

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.96),
      0 14px 34px rgba(6, 26, 47, 0.06) !important;

    backdrop-filter: blur(18px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(160%) !important;

    --rb-x: 6px;
    --rb-y: 6px;
    --rb-w: 84px;
    --rb-h: 42px;
    --rb-mx: 50%;
    --rb-my: 50%;
  }

  /* Capsule qui glisse */
  .nav-showcase .reactbits-menu::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;

    width: var(--rb-w);
    height: var(--rb-h);

    border-radius: 999px;

    background:
      radial-gradient(circle at 30% 20%, rgba(255,255,255,0.42), transparent 34%),
      linear-gradient(135deg, var(--jade), #0f9f92);

    box-shadow:
      0 16px 34px rgba(18, 183, 166, 0.28),
      inset 0 1px 0 rgba(255,255,255,0.36);

    transform: translate3d(var(--rb-x), var(--rb-y), 0);
    opacity: 0;

    transition:
      transform 0.58s cubic-bezier(0.22, 1, 0.36, 1),
      width 0.58s cubic-bezier(0.22, 1, 0.36, 1),
      height 0.58s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.28s ease;

    pointer-events: none;
  }

  .nav-showcase .reactbits-menu.is-ready::before {
    opacity: 1;
  }

  /* Lumière douce qui suit le curseur */
  .nav-showcase .reactbits-menu::after {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;

    border-radius: inherit;

    background:
      radial-gradient(
        circle at var(--rb-mx) var(--rb-my),
        rgba(18, 183, 166, 0.20),
        transparent 34%
      );

    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
  }

  .nav-showcase .reactbits-menu:hover::after {
    opacity: 1;
  }

  /* Liens */
  .nav-showcase .reactbits-menu a {
    position: relative !important;
    z-index: 1 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 42px !important;
    padding: 0 14px !important;

    border-radius: 999px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;

    color: rgba(6, 26, 47, 0.72) !important;
    font-size: 0.82rem !important;
    font-weight: 850 !important;
    letter-spacing: -0.02em !important;
    white-space: nowrap !important;

    transform: translateY(0) !important;

    transition:
      color 0.34s ease,
      transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.34s ease !important;
  }

  .nav-showcase .reactbits-menu a:hover {
    transform: translateY(-1px) !important;
  }

  .nav-showcase .reactbits-menu a.is-active,
  .nav-showcase .reactbits-menu a.active {
    color: #ffffff !important;
  }

  /*
   * Pendant le survol, la capsule prévisualise un autre lien.
   * Le texte blanc suit donc la capsule au lieu de rester sur l'ancien lien.
   */
  .nav-showcase .reactbits-menu.is-previewing a.is-active:not(.is-preview),
  .nav-showcase .reactbits-menu.is-previewing a.active:not(.is-preview) {
    color: rgba(6, 26, 47, 0.72) !important;
  }

  .nav-showcase .reactbits-menu a.is-preview {
    color: #ffffff !important;
  }

  .nav-showcase .reactbits-menu a.active::after {
    display: none !important;
  }

  /* Petit effet premium sur les autres liens */
  .nav-showcase .reactbits-menu:hover a:not(.is-preview):not(.is-active):not(.active) {
    opacity: 0.72;
  }
}

/* Header compact : conserve les huit rubriques sur une seule ligne. */
@media (min-width: 1181px) and (max-width: 1660px) {
  .nav-showcase {
    width: calc(100% - 40px) !important;
    padding-inline: 12px !important;
    gap: 8px !important;
  }

  .brand-showcase {
    min-width: 230px !important;
    padding-right: 14px !important;
    gap: 11px !important;
  }

  .nav-showcase .reactbits-menu {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    justify-content: space-between !important;
    gap: 2px !important;
    padding: 5px !important;
  }

  .nav-showcase .reactbits-menu a {
    flex: 0 0 auto !important;
    padding-inline: 7px !important;
    font-size: 0.76rem !important;
  }

  .nav-showcase .nav-actions {
    gap: 6px !important;
  }

  .nav-showcase .nav-appointment {
    padding-inline: 17px !important;
  }

  .nav-showcase .nav-phone {
    min-width: 150px !important;
    padding-inline: 15px !important;
  }
}

@media (min-width: 1181px) and (max-width: 1360px) {
  .brand-showcase {
    min-width: 210px !important;
  }

  .brand-showcase .brand-symbol {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
  }

  .brand-showcase .brand-mark {
    width: 37px !important;
    height: 37px !important;
  }

  .brand-showcase .brand-name strong {
    font-size: 1.14rem !important;
  }

  .nav-showcase .reactbits-menu a {
    padding-inline: 7px !important;
    font-size: 0.72rem !important;
  }

  .nav-status-orb {
    display: none !important;
  }

  .nav-showcase .nav-appointment {
    padding-inline: 12px !important;
  }

  .nav-showcase .nav-emergency {
    width: 70px !important;
  }

  .nav-showcase .nav-phone {
    min-width: 136px !important;
    padding-inline: 10px !important;
  }
}
/* ===================================================
   MENU MOBILE FINAL — STAGGERED PROPRE
=================================================== */

body.menu-open {
  overflow: hidden !important;
}

/* ================= HEADER MOBILE ================= */

@media (max-width: 1180px) {
  .site-header-premium {
    top: 14px !important;
    z-index: 4500 !important;
  }

  .nav-showcase {
    width: calc(100% - 24px) !important;
    min-height: 72px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    gap: 10px !important;
    padding: 9px 10px !important;
    border-radius: 34px !important;
  }

  .brand-showcase {
    min-width: 0 !important;
    max-width: calc(100% - 132px) !important;

    height: 56px !important;
    padding: 6px 13px 6px 7px !important;

    gap: 10px !important;
    border-radius: 28px !important;
  }

  .brand-symbol {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    border-radius: 18px !important;
  }

  .brand-mark {
    width: 32px !important;
    height: 32px !important;
  }

  .brand-name small {
    display: none !important;
  }

  .brand-name strong {
    font-size: 0 !important;
    line-height: 1 !important;
  }

  .brand-name strong::after {
    content: "Pharmacie de Oinville" !important;

    display: block !important;

    color: var(--navy) !important;
    font-size: 0.98rem !important;
    font-weight: 950 !important;
    letter-spacing: -0.04em !important;
    line-height: 1 !important;

    white-space: nowrap !important;
  }
}

/* ================= BOUTON MENU ================= */

@media (max-width: 1180px) {
  .menu-button.sm-toggle {
    position: fixed !important;
    top: 23px !important;
    right: 24px !important;
    z-index: 5005 !important;

    width: auto !important;
    min-width: 112px !important;
    height: 56px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;

    padding: 0 17px !important;

    border-radius: 999px !important;
    border: 1px solid rgba(255, 255, 255, 0.82) !important;

    background:
      linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.94),
        rgba(234, 246, 242, 0.74)
      ) !important;

    color: var(--navy) !important;

    box-shadow:
      0 18px 42px rgba(6, 26, 47, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;

    cursor: pointer !important;
    overflow: hidden !important;
  }

  .menu-button.sm-toggle > span {
    background: transparent !important;
  }

  .menu-button.sm-toggle .sm-toggle-textWrap {
    display: block !important;

    width: 48px !important;
    min-width: 48px !important;
    height: 16px !important;
    max-height: 16px !important;

    overflow: hidden !important;

    font-size: 0.82rem !important;
    font-weight: 950 !important;
    line-height: 16px !important;
    letter-spacing: -0.02em !important;
  }

  .menu-button.sm-toggle .sm-toggle-textInner {
    display: flex !important;
    flex-direction: column !important;

    height: 32px !important;

    transform: translateY(0) !important;

    transition:
      transform 0.58s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }

  .menu-button.sm-toggle .sm-toggle-line {
    display: block !important;

    height: 16px !important;
    min-height: 16px !important;
    line-height: 16px !important;

    white-space: nowrap !important;
  }

  .menu-button.sm-toggle .sm-icon {
    position: relative !important;

    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    transition:
      transform 0.68s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }

  .menu-button.sm-toggle .sm-icon-line {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;

    width: 18px !important;
    height: 2px !important;

    border-radius: 999px !important;
    background: currentColor !important;

    transform: translate(-50%, -50%) !important;
  }

  .menu-button.sm-toggle .sm-icon-line-v {
    transform: translate(-50%, -50%) rotate(90deg) !important;
  }

  body.menu-open .menu-button.sm-toggle,
  .menu-button.sm-toggle.open {
    background:
      linear-gradient(
        145deg,
        #061a2f,
        #0b2b42
      ) !important;

    color: #ffffff !important;

    box-shadow:
      0 24px 64px rgba(6, 26, 47, 0.38),
      inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
  }

  body.menu-open .menu-button.sm-toggle .sm-toggle-textInner,
  .menu-button.sm-toggle.open .sm-toggle-textInner {
    transform: translateY(-16px) !important;
  }

  body.menu-open .menu-button.sm-toggle .sm-icon,
  .menu-button.sm-toggle.open .sm-icon {
    transform: rotate(225deg) !important;
  }
}

/* ================= CALQUES ANIMÉS ================= */

.mobile-menu-layer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;

  width: 100vw !important;
  height: 100dvh !important;

  transform: translateX(105%) !important;

  pointer-events: none !important;

  transition:
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.mobile-layer-one {
  z-index: 3998 !important;

  background:
    linear-gradient(
      145deg,
      #12b7a6,
      #0f766e
    ) !important;
}

.mobile-layer-two {
  z-index: 3999 !important;

  background:
    linear-gradient(
      145deg,
      #061a2f,
      #102f4a
    ) !important;

  transition-delay: 0.07s !important;
}

.mobile-menu-layer.open {
  transform: translateX(0) !important;
}

/* ================= OVERLAY ================= */

.mobile-menu.staggered-menu {
  position: fixed !important;
  inset: 0 !important;
  z-index: 4000 !important;

  width: 100vw !important;
  height: 100dvh !important;

  display: block !important;

  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;

  background: rgba(6, 26, 47, 0.18) !important;

  overflow: hidden !important;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease !important;
}

.mobile-menu.staggered-menu.open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* ================= PANNEAU ================= */

.staggered-menu-panel {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;

  width: 100vw !important;
  height: 100dvh !important;
  min-height: 100dvh !important;

  padding: 104px 24px 22px !important;

  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;

  border-radius: 0 !important;
  overflow: hidden !important;

  background:
    radial-gradient(circle at 18% 10%, rgba(18, 183, 166, 0.14), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(199, 157, 99, 0.16), transparent 35%),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(246, 241, 229, 0.97)
    ) !important;

  box-shadow:
    -34px 0 90px rgba(6, 26, 47, 0.24),
    inset 1px 0 0 rgba(255, 255, 255, 0.86) !important;

  transform: translateX(105%) !important;

  transition:
    transform 0.74s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.mobile-menu.staggered-menu.open .staggered-menu-panel {
  transform: translateX(0) !important;
  transition-delay: 0.12s !important;
}

/* ================= HAUT DU MENU ================= */

.sm-menu-top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
}

.sm-menu-brand {
  max-width: 100% !important;
  min-width: 0 !important;

  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;

  color: var(--navy) !important;
  text-decoration: none !important;
}

.sm-menu-brand img {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;

  object-fit: contain !important;
  border-radius: 17px !important;

  background: #ffffff !important;

  box-shadow:
    0 14px 34px rgba(6, 26, 47, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
}

.sm-menu-brand-text {
  display: grid !important;
  gap: 2px !important;
  min-width: 0 !important;
}

.sm-menu-brand-text strong {
  color: var(--navy) !important;

  font-size: 0.95rem !important;
  font-weight: 950 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.035em !important;

  white-space: nowrap !important;
}

.sm-menu-brand-text small {
  color: var(--muted) !important;

  font-size: 0.72rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;

  white-space: nowrap !important;
}

.sm-menu-status {
  display: none !important;
}

/* ================= LIENS ================= */

.sm-panel-list {
  counter-reset: smItem !important;

  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;

  margin: 8px 0 0 !important;
  padding: 0 !important;
}

.sm-panel-item {
  counter-increment: smItem !important;

  position: relative !important;

  display: block !important;
  overflow: hidden !important;

  padding: 0 42px 2px 0 !important;

  color: var(--navy) !important;
  background: transparent !important;
  box-shadow: none !important;
  text-decoration: none !important;
  line-height: 1 !important;
}

.sm-panel-itemLabel {
  display: inline-block !important;

  color: var(--navy) !important;

  font-size: clamp(1.9rem, 8.7vw, 3.12rem) !important;
  font-weight: 950 !important;
  letter-spacing: -0.078em !important;
  line-height: 0.93 !important;
  text-transform: uppercase !important;

  transform: translateY(135%) rotate(10deg) !important;
  transform-origin: 50% 100% !important;
  opacity: 0 !important;

  transition:
    transform 0.88s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    color 0.3s ease !important;
}

.sm-panel-item::after {
  content: counter(smItem, decimal-leading-zero) !important;

  position: absolute !important;
  top: 4px !important;
  right: 0 !important;

  color: var(--jade) !important;

  font-size: 0.78rem !important;
  font-weight: 900 !important;

  opacity: 0 !important;
  transform: translateY(12px) !important;

  transition:
    opacity 0.45s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.mobile-menu.staggered-menu.open .sm-panel-itemLabel {
  opacity: 1 !important;
  transform: translateY(0) rotate(0) !important;
  transition-delay: calc(0.24s + var(--i) * 0.06s) !important;
}

.mobile-menu.staggered-menu.open .sm-panel-item::after {
  opacity: 0.72 !important;
  transform: translateY(0) !important;
  transition-delay: calc(0.36s + var(--i) * 0.06s) !important;
}

/* ================= ACCÈS RAPIDE ================= */

.sm-socials {
  margin-top: auto !important;
  padding-top: 14px !important;

  display: grid !important;
  gap: 10px !important;

  border-top: 1px solid rgba(6, 26, 47, 0.08) !important;

  opacity: 0 !important;
  transform: translateY(18px) !important;

  transition:
    opacity 0.58s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.mobile-menu.staggered-menu.open .sm-socials {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition-delay: 0.72s !important;
}

.sm-socials-title {
  margin: 0 !important;

  color: var(--jade) !important;

  font-size: 0.72rem !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
}

.sm-quick-actions {
  width: 100% !important;

  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 8px !important;
}

.sm-quick-action {
  min-width: 0 !important;
  width: 100% !important;
  min-height: 48px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;

  padding: 0 8px !important;

  border-radius: 999px !important;
  text-decoration: none !important;

  font-size: 0.76rem !important;
  font-weight: 950 !important;
  letter-spacing: -0.02em !important;
  white-space: nowrap !important;
}

.sm-quick-logo {
  width: 22px !important;
  height: 22px !important;
  object-fit: contain !important;
}

.sm-quick-icon {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;

  display: inline-grid !important;
  place-items: center !important;

  border-radius: 50% !important;

  font-weight: 950 !important;
  line-height: 1 !important;
}

.sm-quick-doctolib {
  background: linear-gradient(135deg, #23b9ff, #079be3) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;

  box-shadow:
    0 18px 42px rgba(5, 150, 222, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
}

.sm-quick-phone {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft)) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;

  box-shadow:
    0 18px 42px rgba(6, 26, 47, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
}

.sm-quick-phone .sm-quick-icon {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
}

.sm-quick-garde {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 244, 244, 0.88)
    ) !important;

  color: #ef4444 !important;
  border: 1px solid rgba(239, 68, 68, 0.22) !important;

  box-shadow:
    0 18px 42px rgba(239, 68, 68, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
}

.sm-quick-garde .sm-quick-icon {
  background: rgba(239, 68, 68, 0.10) !important;
  color: #ef4444 !important;
}

/* ================= DESKTOP ================= */

@media (min-width: 1181px) {
  .menu-button.sm-toggle,
  .mobile-menu-layer,
  .mobile-menu.staggered-menu {
    display: none !important;
  }
}

/* ================= PETITS ÉCRANS ================= */

@media (max-width: 430px) {
  .brand-showcase {
    max-width: calc(100% - 118px) !important;
  }

  .brand-name strong::after {
    font-size: 0.86rem !important;
  }

  .menu-button.sm-toggle {
    right: 22px !important;
    min-width: 104px !important;
    height: 54px !important;
    padding: 0 14px !important;
  }

  .menu-button.sm-toggle .sm-toggle-textWrap {
    width: 44px !important;
    min-width: 44px !important;
    font-size: 0.78rem !important;
  }

  .staggered-menu-panel {
    padding: 96px 20px 18px !important;
    gap: 10px !important;
  }

  .sm-menu-brand img {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
  }

  .sm-menu-brand-text strong {
    font-size: 0.9rem !important;
  }

  .sm-menu-brand-text small {
    font-size: 0.66rem !important;
  }

  .sm-panel-itemLabel {
    font-size: clamp(1.74rem, 9.7vw, 2.8rem) !important;
    line-height: 0.91 !important;
  }

  .sm-quick-actions {
    gap: 6px !important;
  }

  .sm-quick-action {
    min-height: 44px !important;
    padding: 0 6px !important;
    font-size: 0.68rem !important;
    gap: 5px !important;
  }

  .sm-quick-logo {
    width: 19px !important;
    height: 19px !important;
  }

  .sm-quick-icon {
    width: 21px !important;
    height: 21px !important;
    min-width: 21px !important;
  }
}

/* Écrans bas */
@media (max-height: 760px) and (max-width: 1180px) {
  .staggered-menu-panel {
    padding-top: 84px !important;
    gap: 7px !important;
  }

  .sm-menu-brand img {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
  }

  .sm-menu-brand-text strong {
    font-size: 0.84rem !important;
  }

  .sm-menu-brand-text small {
    display: none !important;
  }

  .sm-panel-list {
    margin-top: 0 !important;
  }

  .sm-panel-itemLabel {
    font-size: clamp(1.45rem, 5.9vh, 2.2rem) !important;
    line-height: 0.9 !important;
  }

  .sm-socials {
    padding-top: 8px !important;
    gap: 7px !important;
  }

  .sm-socials-title {
    font-size: 0.66rem !important;
  }

  .sm-quick-action {
    min-height: 38px !important;
    font-size: 0.65rem !important;
  }

  .sm-quick-logo {
    width: 17px !important;
    height: 17px !important;
  }

  .sm-quick-icon {
    width: 19px !important;
    height: 19px !important;
    min-width: 19px !important;
  }
}
/* ===================================================
   FIX BOUTON MENU — MENU / FERMER STABLE
=================================================== */

@media (max-width: 1180px) {
  /* On cache complètement l'ancien système qui affiche Menu + Fermer */
  .menu-button.sm-toggle .sm-toggle-textWrap,
  .menu-button.sm-toggle .sm-toggle-textInner,
  .menu-button.sm-toggle .sm-toggle-line {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  /* Le bouton garde une largeur propre */
  .menu-button.sm-toggle {
    min-width: 112px !important;
    gap: 10px !important;
  }

  /* Texte affiché quand le menu est fermé */
  .menu-button.sm-toggle::before {
    content: "Menu" !important;

    display: inline-block !important;

    color: currentColor !important;

    font-size: 0.82rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;

    white-space: nowrap !important;
  }

  /* Texte affiché quand le menu est ouvert */
  body.menu-open .menu-button.sm-toggle::before,
  .menu-button.sm-toggle.open::before {
    content: "Fermer" !important;
  }

  /* Icône + bien centrée */
  .menu-button.sm-toggle .sm-icon {
    position: relative !important;

    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .menu-button.sm-toggle .sm-icon-line {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;

    width: 18px !important;
    height: 2px !important;

    background: currentColor !important;
    border-radius: 999px !important;

    transform: translate(-50%, -50%) !important;
  }

  .menu-button.sm-toggle .sm-icon-line-v {
    transform: translate(-50%, -50%) rotate(90deg) !important;
  }

  body.menu-open .menu-button.sm-toggle .sm-icon,
  .menu-button.sm-toggle.open .sm-icon {
    transform: rotate(225deg) !important;
  }
}
/* ===================================================
   FIX DEFINITIF — BOUTON MENU AU-DESSUS DU PANNEAU
=================================================== */

@media (max-width: 1180px) {
  /* Le header doit rester au-dessus du menu mobile */
  .site-header,
  .site-header-premium {
    z-index: 9000 !important;
  }

  .nav-showcase {
    z-index: 9001 !important;
  }

  /* Les calques et le panneau passent dessous le header */
  .mobile-menu-layer {
    z-index: 7000 !important;
  }

  .mobile-layer-one {
    z-index: 7000 !important;
  }

  .mobile-layer-two {
    z-index: 7001 !important;
  }

  .mobile-menu.staggered-menu {
    z-index: 7002 !important;
  }

  .staggered-menu-panel {
    z-index: 7003 !important;
  }

  /* Le bouton reste toujours visible au-dessus de tout */
  .menu-button.sm-toggle {
    position: fixed !important;
    top: 23px !important;
    right: 24px !important;
    z-index: 9500 !important;

    isolation: isolate !important;
    pointer-events: auto !important;
  }

  /* On cache l'ancien texte HTML Menu/Fermer */
  .menu-button.sm-toggle .sm-toggle-textWrap,
  .menu-button.sm-toggle .sm-toggle-textInner,
  .menu-button.sm-toggle .sm-toggle-line {
    display: none !important;
  }

  /* Texte fermé */
  .menu-button.sm-toggle::before {
    content: "Menu" !important;

    display: inline-block !important;

    color: currentColor !important;
    font-size: 0.82rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    white-space: nowrap !important;
  }

  /* Texte ouvert : on utilise aria-expanded, plus fiable */
  .menu-button.sm-toggle[aria-expanded="true"]::before,
  body.menu-open .menu-button.sm-toggle::before,
  .menu-button.sm-toggle.open::before {
    content: "Fermer" !important;
  }

  /* Style du bouton ouvert */
  .menu-button.sm-toggle[aria-expanded="true"],
  body.menu-open .menu-button.sm-toggle,
  .menu-button.sm-toggle.open {
    background:
      linear-gradient(
        145deg,
        #061a2f,
        #0b2b42
      ) !important;

    color: #ffffff !important;

    box-shadow:
      0 24px 64px rgba(6, 26, 47, 0.38),
      inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
  }

  /* Icône + visible */
  .menu-button.sm-toggle .sm-icon {
    position: relative !important;

    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: currentColor !important;
  }

  .menu-button.sm-toggle .sm-icon-line {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;

    width: 18px !important;
    height: 2px !important;

    background: currentColor !important;
    border-radius: 999px !important;

    transform: translate(-50%, -50%) !important;
  }

  .menu-button.sm-toggle .sm-icon-line-v {
    transform: translate(-50%, -50%) rotate(90deg) !important;
  }

  .menu-button.sm-toggle[aria-expanded="true"] .sm-icon,
  body.menu-open .menu-button.sm-toggle .sm-icon,
  .menu-button.sm-toggle.open .sm-icon {
    transform: rotate(225deg) !important;
  }
}
/* ===================================================
   FIX FINAL BOUTON MOBILE — MENU / FERMER
   Compatible .menu-button simple et .menu-button.sm-toggle
=================================================== */

@media (max-width: 1180px) {
  /* Le header mobile reste au-dessus du panneau */
  .site-header,
  .site-header-premium {
    z-index: 2147483000 !important;
    pointer-events: none !important;
  }

  .nav,
  .nav-showcase {
    position: fixed !important;
    top: 14px !important;
    left: 12px !important;
    right: 12px !important;

    width: auto !important;
    z-index: 2147483100 !important;

    pointer-events: auto !important;
  }

  /* Le menu/panneau reste dessous le header */
  .mobile-menu-layer {
    z-index: 2147481000 !important;
  }

  .mobile-menu,
  .mobile-menu.staggered-menu {
    z-index: 2147481500 !important;
  }

  .mobile-menu-inner,
  .staggered-menu-panel {
    z-index: 2147481600 !important;
  }

  /* Bouton au-dessus de tout */
  .menu-button,
  .menu-button.sm-toggle {
    position: fixed !important;
    top: 23px !important;
    right: 24px !important;
    z-index: 2147483600 !important;

    width: auto !important;
    min-width: 112px !important;
    height: 56px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;

    padding: 0 17px !important;

    border-radius: 999px !important;
    border: 1px solid rgba(255, 255, 255, 0.82) !important;

    background:
      linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.94),
        rgba(234, 246, 242, 0.74)
      ) !important;

    color: var(--navy) !important;

    box-shadow:
      0 18px 42px rgba(6, 26, 47, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;

    overflow: hidden !important;
    cursor: pointer !important;
    pointer-events: auto !important;

    transform: none !important;

    transition:
      background 0.35s ease,
      color 0.35s ease,
      box-shadow 0.35s ease,
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }

  /* On neutralise TOUS les anciens textes/icônes internes */
  .menu-button > span,
  .menu-button.sm-toggle > span,
  .menu-button .sm-toggle-textWrap,
  .menu-button .sm-toggle-textInner,
  .menu-button .sm-toggle-line,
  .menu-button .sm-icon,
  .menu-button .sm-icon-line {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  /* Texte fermé */
  .menu-button::before,
  .menu-button.sm-toggle::before {
    content: "Menu" !important;

    display: inline-block !important;

    color: currentColor !important;

    font-size: 0.82rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;

    white-space: nowrap !important;
  }

  /* Icône + recréée proprement en CSS */
  .menu-button::after,
  .menu-button.sm-toggle::after {
    content: "" !important;

    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;

    display: block !important;

    background:
      linear-gradient(currentColor, currentColor) center / 18px 2px no-repeat,
      linear-gradient(currentColor, currentColor) center / 2px 18px no-repeat !important;

    border-radius: 0 !important;

    transition:
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }

  /* État ouvert */
  body.menu-open .menu-button,
  .menu-button.open,
  .menu-button[aria-expanded="true"] {
    background:
      linear-gradient(
        145deg,
        #061a2f,
        #0b2b42
      ) !important;

    color: #ffffff !important;

    box-shadow:
      0 24px 64px rgba(6, 26, 47, 0.40),
      inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
  }

  body.menu-open .menu-button::before,
  .menu-button.open::before,
  .menu-button[aria-expanded="true"]::before {
    content: "Fermer" !important;
  }

  body.menu-open .menu-button::after,
  .menu-button.open::after,
  .menu-button[aria-expanded="true"]::after {
    transform: rotate(225deg) !important;
  }

  /* Le menu ouvert commence sous le header visuellement */
  body.menu-open .mobile-menu-inner,
  body.menu-open .staggered-menu-panel {
    padding-top: 122px !important;
  }
}
/* ===================================================
   MENU MOBILE — FINITION APRÈS FIX BOUTON
=================================================== */

@media (max-width: 1180px) {
  /* Comme le header reste visible, on cache le logo répété dans le panneau */
  .mobile-menu.staggered-menu .sm-menu-top {
    display: none !important;
  }

  /* Le contenu commence proprement sous le header */
  .mobile-menu.staggered-menu .staggered-menu-panel,
  body.menu-open .mobile-menu-inner,
  body.menu-open .staggered-menu-panel {
    padding-top: 128px !important;
  }

  /* On remonte légèrement les liens après suppression du logo interne */
  .mobile-menu.staggered-menu .sm-panel-list {
    margin-top: 0 !important;
  }

  /* Le menu respire mieux */
  .mobile-menu.staggered-menu .sm-panel-itemLabel {
    font-size: clamp(2rem, 9.2vw, 3.25rem) !important;
    line-height: 0.92 !important;
  }

  /* Le bouton Fermer reste parfaitement lisible */
  body.menu-open .menu-button,
  .menu-button.open,
  .menu-button[aria-expanded="true"] {
    min-width: 118px !important;
  }
}

/* Écran bas : menu encore plus compact */
@media (max-height: 760px) and (max-width: 1180px) {
  .mobile-menu.staggered-menu .staggered-menu-panel,
  body.menu-open .mobile-menu-inner,
  body.menu-open .staggered-menu-panel {
    padding-top: 118px !important;
  }

  .mobile-menu.staggered-menu .sm-panel-itemLabel {
    font-size: clamp(1.55rem, 6.2vh, 2.25rem) !important;
    line-height: 0.9 !important;
  }
}
/* ===================================================
   MOBILE — BOUTON MENU À DROITE DANS LE HEADER
=================================================== */

@media (max-width: 1180px) {
  .nav-showcase {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 10px !important;

    width: calc(100% - 24px) !important;
    min-height: 72px !important;

    padding: 9px 10px !important;
  }

  /* Logo à gauche */
  .brand-showcase {
    order: 1 !important;
    justify-self: stretch !important;

    min-width: 0 !important;
    max-width: none !important;
    width: 100% !important;

    height: 54px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    padding: 6px 12px 6px 7px !important;
    gap: 9px !important;

    border-radius: 999px !important;
  }

  /* Bouton à droite, dans le header */
  .menu-button,
  .menu-button.sm-toggle {
    order: 2 !important;
    justify-self: end !important;

    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;

    z-index: 50 !important;

    width: auto !important;
    min-width: 112px !important;
    height: 54px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;

    padding: 0 15px !important;
    margin: 0 !important;

    border-radius: 999px !important;
  }

  .brand-symbol {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 18px !important;
  }

  .brand-mark {
    width: 31px !important;
    height: 31px !important;
  }

  .brand-name {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .brand-name small {
    display: none !important;
  }

  .brand-name strong {
    font-size: 0 !important;
    line-height: 1 !important;
  }

  .brand-name strong::after {
    content: "Pharmacie de Oinville" !important;

    display: block !important;

    color: var(--navy) !important;
    font-size: 0.92rem !important;
    font-weight: 950 !important;
    letter-spacing: -0.04em !important;
    line-height: 1 !important;

    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  body.menu-open .site-header,
  body.menu-open .site-header-premium,
  body.menu-open .nav-showcase {
    z-index: 2147483100 !important;
  }

  body.menu-open .menu-button,
  body.menu-open .menu-button.sm-toggle {
    z-index: 2147483200 !important;
  }

  body.menu-open .mobile-menu-inner,
  body.menu-open .staggered-menu-panel {
    padding-top: 126px !important;
  }
}

@media (max-width: 430px) {
  .menu-button,
  .menu-button.sm-toggle {
    min-width: 104px !important;
    height: 52px !important;
    padding: 0 13px !important;
  }

  .menu-button::before,
  .menu-button.sm-toggle::before {
    font-size: 0.78rem !important;
  }

  .brand-showcase {
    height: 52px !important;
  }

  .brand-symbol {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
  }

  .brand-name strong::after {
    font-size: 0.82rem !important;
  }
}
/* ===================================================
   FIX MENU MOBILE — LETTRES + CHIFFRES NON COUPÉS
=================================================== */

@media (max-width: 1180px) {
  /* On donne un peu d'air à l'intérieur du panneau */
  .mobile-menu.staggered-menu .staggered-menu-panel {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  /* La liste garde l'animation mais ne colle plus aux bords */
  .mobile-menu.staggered-menu .sm-panel-list {
    width: 100% !important;
    box-sizing: border-box !important;

    padding-left: 8px !important;
    padding-right: 18px !important;

    overflow: visible !important;
  }

  /* Chaque ligne garde son masque vertical pour l'animation */
  .mobile-menu.staggered-menu .sm-panel-item {
    width: 100% !important;
    box-sizing: border-box !important;

    padding-left: 4px !important;
    padding-right: 58px !important;

    overflow: hidden !important;
  }

  /* Le texte n'est plus collé au bord gauche */
  .mobile-menu.staggered-menu .sm-panel-itemLabel {
    padding-left: 3px !important;
  }

  /* Les numéros rentrent dans la ligne au lieu d'être collés au bord */
  .mobile-menu.staggered-menu .sm-panel-item::after {
    right: 14px !important;
    min-width: 26px !important;
    text-align: right !important;
  }
}

/* Très petits téléphones */
@media (max-width: 430px) {
  .mobile-menu.staggered-menu .staggered-menu-panel {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .mobile-menu.staggered-menu .sm-panel-list {
    padding-left: 8px !important;
    padding-right: 16px !important;
  }

  .mobile-menu.staggered-menu .sm-panel-item {
    padding-left: 4px !important;
    padding-right: 52px !important;
  }

  .mobile-menu.staggered-menu .sm-panel-item::after {
    right: 10px !important;
  }
}
/* ===================================================
   SECTION HORAIRES — SIGNATURE PREMIUM
=================================================== */

.hours-signature {
  position: relative;
  overflow: hidden;

  padding: 130px 0;

  background:
    radial-gradient(circle at 14% 18%, rgba(18, 183, 166, 0.22), transparent 34%),
    radial-gradient(circle at 86% 78%, rgba(199, 157, 99, 0.18), transparent 34%),
    radial-gradient(circle at 52% 0%, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(135deg, #04111f 0%, #061a2f 46%, #08263a 100%);
}

.hours-signature::before {
  content: "HORAIRES";

  position: absolute;
  right: -5vw;
  top: 36px;

  color: rgba(255, 255, 255, 0.045);

  font-size: clamp(5rem, 15vw, 16rem);
  font-weight: 950;
  letter-spacing: -0.1em;
  line-height: 1;

  pointer-events: none;
}

.hours-signature::after {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);

  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 72%);

  opacity: 0.55;
  pointer-events: none;
}

.hours-signature-shell {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;

  padding: 28px;

  border-radius: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.13),
      rgba(255, 255, 255, 0.055)
    );

  box-shadow:
    0 44px 130px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);

  backdrop-filter: blur(28px) saturate(165%);
  -webkit-backdrop-filter: blur(28px) saturate(165%);
}

.hours-signature-shell::before {
  content: "";

  position: absolute;
  inset: 1px;

  border-radius: inherit;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.12),
      transparent 38%,
      rgba(18,183,166,0.06)
    );

  pointer-events: none;
}

.hours-signature-intro,
.hours-signature-board {
  position: relative;
  z-index: 1;
}

/* Colonne gauche */

.hours-signature-intro {
  min-height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 38px;

  border-radius: 38px;

  background:
    radial-gradient(circle at 18% 12%, rgba(18, 183, 166, 0.18), transparent 34%),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.045)
    );

  border: 1px solid rgba(255,255,255,0.12);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 22px 70px rgba(0, 0, 0, 0.18);
}

.hours-signature-kicker {
  color: #dffdf8 !important;
  background: rgba(18, 183, 166, 0.12) !important;
  border-color: rgba(18, 183, 166, 0.26) !important;
}

.hours-signature-kicker span {
  background: var(--jade-light) !important;
}

.hours-signature-intro h2 {
  margin: 28px 0 20px;

  color: #ffffff;

  font-size: clamp(2.55rem, 5vw, 5.6rem);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.88;
}

.hours-signature-intro p {
  max-width: 540px;

  color: rgba(255, 255, 255, 0.70);

  font-size: 1.08rem;
  line-height: 1.85;
}

/* Statut */

.hours-signature-status {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  gap: 15px;

  margin-top: 34px;
  padding: 13px 17px;

  border-radius: 999px;
  border: 1px solid rgba(18, 183, 166, 0.26);

  background:
    linear-gradient(
      145deg,
      rgba(18, 183, 166, 0.18),
      rgba(255, 255, 255, 0.07)
    );

  box-shadow:
    0 22px 54px rgba(18, 183, 166, 0.13),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.hours-signature-pulse {
  width: 15px;
  height: 15px;

  border-radius: 50%;

  background: var(--jade-light);

  box-shadow:
    0 0 0 8px rgba(18, 183, 166, 0.13),
    0 0 28px rgba(18, 183, 166, 0.62);

  animation: statusBreath 1.9s ease-in-out infinite;
}

.hours-signature-status small {
  display: block;

  color: rgba(255,255,255,0.52);

  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
}

.hours-signature-status strong {
  display: block;

  margin-top: 4px;

  color: #ffffff;

  font-size: 0.96rem;
  font-weight: 950;
  line-height: 1;
}

/* Actions */

.hours-signature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 30px;
}

.hours-signature-call,
.hours-signature-guard {
  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 0 18px;

  border-radius: 999px;

  font-size: 0.88rem;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;

  transition:
    transform 0.44s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.44s ease,
    background 0.44s ease,
    color 0.44s ease;
}

.hours-signature-call {
  color: var(--navy);

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #eaf6f2
    );

  box-shadow:
    0 20px 54px rgba(255, 255, 255, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.hours-signature-call span,
.hours-signature-guard span {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  font-weight: 950;
}

.hours-signature-call span {
  background: rgba(6, 26, 47, 0.08);
  color: var(--navy);
}

.hours-signature-guard {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #ef4444,
      #f97316
    );

  box-shadow:
    0 20px 54px rgba(239, 68, 68, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.20);
}

.hours-signature-guard span {
  background: rgba(255,255,255,0.16);
  color: #ffffff;
}

/* Colonne droite */

.hours-signature-board {
  padding: 24px;

  border-radius: 38px;
  border: 1px solid rgba(255,255,255,0.13);

  background:
    radial-gradient(circle at 12% 12%, rgba(18, 183, 166, 0.14), transparent 34%),
    linear-gradient(
      145deg,
      rgba(255,255,255,0.14),
      rgba(255,255,255,0.055)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 24px 74px rgba(0, 0, 0, 0.20);
}

.hours-signature-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 4px 4px 20px;
}

.hours-signature-board-head span {
  color: var(--jade-light);

  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hours-signature-board-head strong {
  color: #ffffff;

  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: -0.03em;
}

/* Liste jours */

.hours-signature-list {
  display: grid;
  gap: 10px;
}

.hours-signature-day {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: 145px 1fr;
  align-items: center;
  gap: 18px;

  min-height: 62px;
  padding: 0 18px;

  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.09);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.10),
      rgba(255,255,255,0.045)
    );

  transition:
    transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.46s ease,
    background 0.46s ease,
    box-shadow 0.46s ease;
}

.hours-signature-day::before {
  content: "";

  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;

  width: 4px;

  border-radius: 999px;

  background: transparent;

  transition:
    background 0.38s ease,
    box-shadow 0.38s ease;
}

.hours-signature-day::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 0% 50%, rgba(18,183,166,0.22), transparent 38%);

  opacity: 0;

  transition: opacity 0.42s ease;
  pointer-events: none;
}

.hours-signature-day-name,
.hours-signature-slots {
  position: relative;
  z-index: 1;
}

.hours-signature-day-name {
  color: rgba(255,255,255,0.76);

  font-size: 0.95rem;
  font-weight: 920;
}

.hours-signature-slots {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.hours-signature-slots strong {
  min-width: 112px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 12px;

  border-radius: 999px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.13),
      rgba(255,255,255,0.07)
    );

  border: 1px solid rgba(255,255,255,0.07);

  font-size: 0.82rem;
  font-weight: 920;
  white-space: nowrap;
}

/* Jour actuel */

.hours-signature-day.is-today {
  border-color: rgba(18,183,166,0.36);

  background:
    linear-gradient(
      145deg,
      rgba(18,183,166,0.22),
      rgba(255,255,255,0.075)
    );

  box-shadow:
    0 22px 62px rgba(18, 183, 166, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.hours-signature-day.is-today::before {
  background: var(--jade-light);
  box-shadow: 0 0 22px rgba(18,183,166,0.54);
}

.hours-signature-day.is-today::after {
  opacity: 1;
}

.hours-signature-day.is-today .hours-signature-day-name {
  color: #dffdf8;
}

.hours-signature-day.is-today .hours-signature-slots strong {
  background: rgba(18,183,166,0.20);
  border-color: rgba(18,183,166,0.26);
}

/* Fermé */

.hours-signature-closed .hours-signature-slots strong {
  color: #ffd0d0;
  background: rgba(239, 68, 68, 0.11);
  border-color: rgba(239, 68, 68, 0.16);
}

/* Note */

.hours-signature-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  margin-top: 18px;
  padding: 16px;

  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.10);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.095),
      rgba(255,255,255,0.045)
    );
}

.hours-signature-note span {
  width: 28px;
  height: 28px;
  min-width: 28px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: rgba(18,183,166,0.16);
  color: var(--jade-light);

  font-size: 0.82rem;
  font-weight: 950;
}

.hours-signature-note p {
  margin: 0;

  color: rgba(255,255,255,0.68);

  font-size: 0.86rem;
  line-height: 1.6;
}

.hours-signature-note strong {
  color: #ffffff;
}

/* Hover */

@media (hover: hover) {
  .hours-signature-shell:hover {
    box-shadow:
      0 54px 150px rgba(0, 0, 0, 0.40),
      inset 0 1px 0 rgba(255,255,255,0.18);
  }

  .hours-signature-day:hover {
    transform: translateY(-4px);
    border-color: rgba(18,183,166,0.28);
    background:
      linear-gradient(
        145deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.065)
      );
  }

  .hours-signature-day:hover::after {
    opacity: 1;
  }

  .hours-signature-call:hover,
  .hours-signature-guard:hover {
    transform: translateY(-4px);
  }

  .hours-signature-call:hover {
    box-shadow:
      0 26px 64px rgba(255,255,255,0.14),
      inset 0 1px 0 rgba(255,255,255,0.96);
  }

  .hours-signature-guard:hover {
    box-shadow:
      0 28px 70px rgba(239, 68, 68, 0.32),
      inset 0 1px 0 rgba(255,255,255,0.20);
  }
}

/* Responsive */

@media (max-width: 1080px) {
  .hours-signature-shell {
    grid-template-columns: 1fr;
  }

  .hours-signature-intro,
  .hours-signature-board {
    border-radius: 34px;
  }
}

@media (max-width: 760px) {
  .hours-signature {
    padding: 76px 0;
  }

  .hours-signature-shell {
    width: calc(100% - 24px);
    margin: 0 auto;

    padding: 14px;
    border-radius: 36px;
  }

  .hours-signature-intro {
    padding: 26px;
    border-radius: 28px;
  }

  .hours-signature-intro h2 {
    font-size: clamp(2.65rem, 12vw, 4.15rem);
    letter-spacing: -0.085em;
  }

  .hours-signature-intro p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hours-signature-status {
    width: 100%;
  }

  .hours-signature-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hours-signature-call,
  .hours-signature-guard {
    width: 100%;
  }

  .hours-signature-board {
    padding: 16px;
    border-radius: 28px;
  }

  .hours-signature-day {
    grid-template-columns: 1fr;
    gap: 10px;

    min-height: auto;
    padding: 15px;

    border-radius: 22px;
  }

  .hours-signature-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
    width: 100%;
  }

  .hours-signature-slots strong {
    min-width: 0;
    width: 100%;
  }

  .hours-signature-closed .hours-signature-slots {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .hours-signature-shell {
    width: calc(100% - 20px);
  }

  .hours-signature-intro {
    padding: 22px;
  }

  .hours-signature-intro h2 {
    font-size: clamp(2.35rem, 11vw, 3.45rem);
  }

  .hours-signature-board {
    padding: 14px;
  }

  .hours-signature-slots {
    grid-template-columns: 1fr;
  }
}
/* ===================================================
   SECTION HORAIRES — STYLE FOOTER PREMIUM
=================================================== */

.hours-footerstyle {
  position: relative;
  overflow: hidden;

  padding: 135px 0;

  background:
    radial-gradient(circle at 12% 18%, rgba(18, 183, 166, 0.15), transparent 32%),
    radial-gradient(circle at 78% 20%, rgba(18, 183, 166, 0.08), transparent 30%),
    radial-gradient(circle at 86% 84%, rgba(199, 157, 99, 0.10), transparent 34%),
    linear-gradient(135deg, #03101d 0%, #061a2f 44%, #020812 100%);
}

.hours-footerstyle::before {
  content: "HORAIRES";

  position: absolute;
  right: -5vw;
  top: 44px;

  color: rgba(255, 255, 255, 0.045);

  font-size: clamp(5.5rem, 15vw, 16rem);
  font-weight: 950;
  letter-spacing: -0.1em;
  line-height: 1;

  pointer-events: none;
}

.hours-footerstyle::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(18, 183, 166, 0.28),
      rgba(255, 255, 255, 0.10),
      transparent
    );

  pointer-events: none;
}

.hours-footerstyle-inner {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 0.72fr 1.12fr 1.18fr;
  gap: 58px;
  align-items: start;

  max-width: 1220px;
  margin: 0 auto;
}

/* Colonne logo */

.hours-footerstyle-brand {
  padding-top: 8px;
}

.hours-footerstyle-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: #ffffff;
  text-decoration: none;
}

.hours-footerstyle-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;

  filter: drop-shadow(0 12px 26px rgba(18, 183, 166, 0.16));
}

.hours-footerstyle-logo span {
  display: grid;
  gap: 2px;
}

.hours-footerstyle-logo small {
  color: var(--jade-light);

  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}

.hours-footerstyle-logo strong {
  color: #ffffff;

  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hours-footerstyle-brand p {
  max-width: 210px;
  margin: 30px 0 0;

  color: rgba(255, 255, 255, 0.62);

  font-size: 0.94rem;
  line-height: 1.8;
}

/* Colonne titre */

.hours-footerstyle-title > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #ff7a45;

  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hours-footerstyle-title > span::before {
  content: "";

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--jade-light);

  box-shadow:
    0 0 0 6px rgba(18, 183, 166, 0.10),
    0 0 28px rgba(18, 183, 166, 0.42);
}

.hours-footerstyle-title h2 {
  max-width: 560px;

  margin: 22px 0 0;

  color: #ffffff;

  font-size: clamp(3.2rem, 6vw, 6.8rem);
  font-weight: 950;
  letter-spacing: -0.095em;
  line-height: 0.86;
}

/* Statut */

.hours-footerstyle-status {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  gap: 13px;

  margin-top: 34px;
  padding: 12px 15px;

  border-radius: 999px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.085),
      rgba(255,255,255,0.035)
    );

  border: 1px solid rgba(255,255,255,0.10);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 18px 44px rgba(0,0,0,0.18);
}

.hours-footerstyle-dot {
  width: 13px;
  height: 13px;

  border-radius: 50%;

  background: var(--jade-light);

  box-shadow:
    0 0 0 7px rgba(18, 183, 166, 0.13),
    0 0 28px rgba(18, 183, 166, 0.62);

  animation: statusBreath 1.9s ease-in-out infinite;
}

.hours-footerstyle-status small {
  display: block;

  color: rgba(255,255,255,0.50);

  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
}

.hours-footerstyle-status strong {
  display: block;

  margin-top: 4px;

  color: #ffffff;

  font-size: 0.94rem;
  font-weight: 950;
  line-height: 1;
}

/* Actions */

.hours-footerstyle-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 28px;
}

.hours-footerstyle-call,
.hours-footerstyle-garde {
  min-height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 18px;

  border-radius: 999px;

  font-size: 0.86rem;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;

  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s ease,
    background 0.42s ease,
    color 0.42s ease;
}

.hours-footerstyle-call {
  color: var(--navy);

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #eaf6f2
    );

  box-shadow:
    0 20px 50px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.hours-footerstyle-garde {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #ef4444,
      #f97316
    );

  box-shadow:
    0 20px 54px rgba(239, 68, 68, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.20);
}

/* Board droite */

.hours-footerstyle-board {
  position: relative;

  padding-top: 2px;
}

.hours-footerstyle-board::before {
  content: "";

  position: absolute;
  left: -28px;
  top: 4px;
  bottom: 4px;

  width: 1px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(255,255,255,0.12),
      rgba(18,183,166,0.22),
      transparent
    );
}

.hours-footerstyle-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding-bottom: 18px;

  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.hours-footerstyle-board-head span {
  color: var(--jade-light);

  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hours-footerstyle-board-head strong {
  color: #ffffff;

  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.hours-footerstyle-list {
  display: grid;
  gap: 0;
}

.hours-footerstyle-day {
  position: relative;

  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  align-items: center;
  gap: 14px;

  min-height: 58px;

  border-bottom: 1px solid rgba(255,255,255,0.075);

  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.42s ease,
    background 0.42s ease;
}

.hours-footerstyle-day::before {
  content: "";

  position: absolute;
  left: -14px;
  top: 50%;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: rgba(255,255,255,0.16);

  transform: translateY(-50%);
  transition:
    background 0.36s ease,
    box-shadow 0.36s ease,
    transform 0.36s ease;
}

.hours-footerstyle-day span {
  color: rgba(255,255,255,0.70);

  font-size: 0.9rem;
  font-weight: 900;
}

.hours-footerstyle-day strong {
  color: rgba(255,255,255,0.88);

  font-size: 0.86rem;
  font-weight: 850;
  text-align: right;
  white-space: nowrap;
}

/* Jour actuel */

.hours-footerstyle-day.is-today {
  background:
    linear-gradient(
      90deg,
      rgba(18,183,166,0.12),
      rgba(18,183,166,0.035),
      transparent
    );

  border-color: rgba(18,183,166,0.18);
}

.hours-footerstyle-day.is-today::before {
  background: var(--jade-light);

  transform: translateY(-50%) scale(1.25);

  box-shadow:
    0 0 0 7px rgba(18,183,166,0.12),
    0 0 26px rgba(18,183,166,0.50);
}

.hours-footerstyle-day.is-today span {
  color: var(--jade-light);
}

.hours-footerstyle-day.is-today strong {
  color: #ffffff;
}

.hours-footerstyle-closed strong {
  color: #ffb4b4;
}

/* Note */

.hours-footerstyle-note {
  margin-top: 22px;
  padding-top: 18px;

  border-top: 1px solid rgba(255,255,255,0.10);

  color: rgba(255,255,255,0.58);

  font-size: 0.86rem;
  line-height: 1.65;
}

.hours-footerstyle-note strong {
  color: #ffffff;
}

/* Animations premium */

.hours-footerstyle-title h2 {
  background:
    linear-gradient(
      120deg,
      #ffffff 0%,
      #ffffff 40%,
      rgba(18,183,166,0.95) 52%,
      #ffffff 64%,
      #ffffff 100%
    );

  background-size: 240% 100%;

  -webkit-background-clip: text;
  background-clip: text;

  animation: hoursFooterTitleLight 7s ease-in-out infinite;
}

@keyframes hoursFooterTitleLight {
  0%,
  58% {
    background-position: 0% 50%;
  }

  78%,
  100% {
    background-position: 100% 50%;
  }
}

@media (hover: hover) {
  .hours-footerstyle-day:hover {
    transform: translateX(8px);
    background:
      linear-gradient(
        90deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.025),
        transparent
      );
  }

  .hours-footerstyle-day:hover::before {
    background: var(--jade-light);
    transform: translateY(-50%) scale(1.18);
  }

  .hours-footerstyle-call:hover,
  .hours-footerstyle-garde:hover {
    transform: translateY(-4px);
  }

  .hours-footerstyle-call:hover {
    box-shadow:
      0 28px 66px rgba(255,255,255,0.14),
      inset 0 1px 0 rgba(255,255,255,0.96);
  }

  .hours-footerstyle-garde:hover {
    box-shadow:
      0 28px 70px rgba(239, 68, 68, 0.34),
      inset 0 1px 0 rgba(255,255,255,0.20);
  }
}

/* Responsive */

@media (max-width: 1080px) {
  .hours-footerstyle-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hours-footerstyle-brand p {
    max-width: 520px;
  }

  .hours-footerstyle-board::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .hours-footerstyle {
    padding: 90px 0;
  }

  .hours-footerstyle-inner {
    width: calc(100% - 28px);
    margin: 0 auto;

    gap: 34px;
  }

  .hours-footerstyle-title h2 {
    font-size: clamp(3.05rem, 16vw, 5rem);
    line-height: 0.88;
  }

  .hours-footerstyle-status {
    width: 100%;
  }

  .hours-footerstyle-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hours-footerstyle-call,
  .hours-footerstyle-garde {
    width: 100%;
  }

  .hours-footerstyle-board-head {
    align-items: flex-start;
  }

  .hours-footerstyle-day {
    grid-template-columns: 1fr;
    gap: 6px;

    padding: 15px 0;
  }

  .hours-footerstyle-day strong {
    text-align: left;
  }

  .hours-footerstyle-day::before {
    left: -16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hours-footerstyle-title h2 {
    animation: none !important;
  }
}
/* =========================================================
   HORAIRES PREMIUM V2
   Nouveau bloc complet — évite les conflits avec les anciens
========================================================= */

.hours-premium-v2 {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(13, 155, 147, 0.18), transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(13, 88, 155, 0.12), transparent 30%),
    linear-gradient(90deg, #02111d 0%, #031a31 48%, #02101d 100%);
}

.hours-premium-v2::before {
  content: "HORAIRES";
  position: absolute;
  top: 105px;
  right: -30px;
  font-size: clamp(120px, 18vw, 270px);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.045);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hours-premium-v2 .container {
  position: relative;
  z-index: 1;
}

.hours-premium-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
}

/* -------- Colonne gauche -------- */

.hours-premium-intro {
  position: relative;
  padding: 10px 0;
  animation: hoursFadeUp 0.85s ease both;
}

.hours-premium-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(212, 183, 133, 0.32);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 14px 34px rgba(0,0,0,0.18);
  color: #f2f5f7;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 26px;
}

.hours-premium-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9a05f;
  box-shadow: 0 0 0 6px rgba(201, 160, 95, 0.12);
  flex: 0 0 auto;
}

.hours-premium-title {
  margin: 0;
  max-width: 520px;
  color: #f7f8fa;
  font-size: clamp(3.35rem, 6vw, 5.9rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
  font-weight: 800;
  text-wrap: balance;
}

.hours-premium-text {
  margin: 32px 0 0;
  max-width: 470px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  line-height: 1.72;
}

/* -------- Tableau droite -------- */

.hours-premium-board {
  position: relative;
  padding: 26px 28px 28px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 28px 70px rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: hoursFadeUp 1s ease both;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hours-premium-board:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 34px 82px rgba(0,0,0,0.28);
}

.hours-premium-board-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  margin-bottom: 6px;
}

.hours-premium-board-head span {
  color: #19b9b0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hours-premium-board-head strong {
  color: #f7f8fa;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
}

.hours-premium-table {
  display: flex;
  flex-direction: column;
}

.hours-premium-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.hours-premium-row:hover {
  transform: translateX(4px);
}

.hours-premium-day {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 1.02rem;
}

.hours-premium-day::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  flex: 0 0 auto;
}

.hours-premium-times {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: flex-end;
  text-align: right;
}

.hours-premium-times strong {
  color: rgba(255,255,255,0.94);
  font-size: 0.98rem;
  font-weight: 700;
  white-space: nowrap;
}

.hours-premium-row.is-today {
  margin: 8px 0;
  padding: 16px 18px;
  border-radius: 18px;
  border-bottom-color: transparent;
  background:
    linear-gradient(90deg, rgba(17, 167, 158, 0.20), rgba(17, 167, 158, 0.06));
  box-shadow:
    inset 0 0 0 1px rgba(17, 167, 158, 0.24),
    0 10px 24px rgba(0,0,0,0.18);
}

.hours-premium-row.is-today .hours-premium-day {
  color: #18c6bc;
}

.hours-premium-row.is-today .hours-premium-day::before {
  background: #18c6bc;
  box-shadow: 0 0 0 7px rgba(24, 198, 188, 0.10);
}

.hours-premium-row.is-closed .hours-premium-times strong:first-child {
  color: #f1b2b4;
}

.hours-premium-row.is-closed .hours-premium-times strong:last-child {
  color: #ff9d85;
}

.hours-premium-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hours-premium-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(17, 167, 158, 0.14);
  color: #19b9b0;
  font-size: 0.8rem;
  font-weight: 700;
}

.hours-premium-note p {
  margin: 0;
  color: rgba(255,255,255,0.70);
  line-height: 1.6;
  font-size: 0.96rem;
}

.hours-premium-note strong {
  color: #ffffff;
}

/* -------- Animations -------- */

@keyframes hoursFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------- Responsive -------- */

@media (max-width: 1180px) {
  .hours-premium-shell {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hours-premium-title {
    max-width: 760px;
  }

  .hours-premium-text {
    max-width: 650px;
  }

  .hours-premium-v2::before {
    font-size: 150px;
    top: 40px;
    right: -10px;
  }
}

@media (max-width: 760px) {
  .hours-premium-v2 {
    padding: 72px 0;
  }

  .hours-premium-v2::before {
    font-size: 88px;
    top: 34px;
    right: -8px;
  }

  .hours-premium-title {
    font-size: clamp(2.6rem, 12vw, 4.4rem);
    line-height: 0.95;
  }

  .hours-premium-text {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hours-premium-board {
    padding: 22px 18px 22px;
    border-radius: 28px;
  }

  .hours-premium-board-head strong {
    font-size: 1.35rem;
  }

  .hours-premium-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0;
  }

  .hours-premium-times {
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
  }

  .hours-premium-times strong {
    font-size: 0.92rem;
  }

  .hours-premium-row.is-today {
    padding: 15px 14px;
  }
}

@media (max-width: 540px) {
  .hours-premium-kicker {
    font-size: 0.84rem;
    padding: 10px 16px;
  }

  .hours-premium-title {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .hours-premium-day {
    font-size: 0.96rem;
  }

  .hours-premium-note p {
    font-size: 0.9rem;
  }
}
/* ===================================================
   HORAIRES — BOUTON GARDE SI FERMÉ
=================================================== */

.hours-premium-garde-now {
  display: none;

  width: fit-content;
  min-height: 54px;

  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-top: 28px;
  padding: 0 20px;

  border-radius: 999px;

  color: #ffffff;
  text-decoration: none;

  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: -0.02em;

  background:
    linear-gradient(
      135deg,
      #ef4444,
      #f97316
    );

  box-shadow:
    0 22px 58px rgba(239, 68, 68, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);

  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s ease;
}

.hours-premium-garde-now.is-visible {
  display: inline-flex;
}

.hours-premium-garde-now span {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;

  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
}

@media (hover: hover) {
  .hours-premium-garde-now:hover {
    transform: translateY(-4px);

    box-shadow:
      0 30px 74px rgba(239, 68, 68, 0.36),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
  }
}

@media (max-width: 760px) {
  .hours-premium-garde-now {
    width: 100%;
  }
}
/* ===================================================
   GARDE 3237 — STYLE UNIFIÉ + REFLET PREMIUM
=================================================== */

/* Bouton garde dans la section horaires */
.hours-premium-garde-now {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;

  background:
    linear-gradient(
      135deg,
      #ef4444 0%,
      #f97316 100%
    ) !important;

  color: #ffffff !important;

  box-shadow:
    0 22px 58px rgba(239, 68, 68, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

/* Bouton pharmacie de garde juste sous le header */
.emergency-card-main {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;

  background:
    linear-gradient(
      135deg,
      #ef4444 0%,
      #f97316 100%
    ) !important;

  color: #ffffff !important;

  border-color: rgba(255, 255, 255, 0.24) !important;

  box-shadow:
    0 22px 58px rgba(239, 68, 68, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

.emergency-card-main .emergency-card-text,
.emergency-card-main .emergency-card-text strong,
.emergency-card-main .emergency-card-text span {
  color: #ffffff !important;
}

.emergency-card-main .emergency-number {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 10px 24px rgba(255, 255, 255, 0.08) !important;
}

.emergency-card-main .emergency-icon {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
}

/* Hover vivant comme les autres boutons */
@media (hover: hover) {
  .hours-premium-garde-now:hover,
  .emergency-card-main:hover {
    transform: translateY(-4px) scale(1.018) !important;

    box-shadow:
      0 30px 74px rgba(239, 68, 68, 0.36),
      inset 0 1px 0 rgba(255, 255, 255, 0.24) !important;
  }

  .emergency-card-main:hover .emergency-icon,
  .hours-premium-garde-now:hover span {
    transform: rotate(8deg) scale(1.08) !important;
  }
}

/* On garde le contenu au-dessus du reflet */
.hours-premium-garde-now span,
.emergency-card-main .emergency-icon,
.emergency-card-main .emergency-card-text,
.emergency-card-main .emergency-number {
  position: relative !important;
  z-index: 2 !important;
}

/* ===================================================
   ACTUALITÉS — ÉDITORIAL SANTÉ PREMIUM
=================================================== */

.news-premium {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 8vw, 120px) 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(18, 183, 166, 0.12), transparent 30%),
    radial-gradient(circle at 92% 86%, rgba(201, 166, 107, 0.13), transparent 32%),
    linear-gradient(180deg, #f6faf8 0%, #edf5f2 100%);
}

.news-premium::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(18, 183, 166, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 44px rgba(255, 255, 255, 0.32),
    0 0 0 88px rgba(18, 183, 166, 0.035);
  pointer-events: none;
}

.news-premium-container {
  position: relative;
  z-index: 1;
}

.news-premium-heading {
  margin-bottom: clamp(34px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
}

.news-premium-heading > div:first-child {
  max-width: 790px;
}

.news-premium-heading h2 {
  max-width: 760px;
  margin: 18px 0 20px;
  color: var(--navy);
  font-size: clamp(2.35rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.news-premium-heading > div:first-child > p {
  max-width: 680px;
  margin: 0;
  color: rgba(6, 26, 47, 0.66);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.78;
}

.news-instagram-link {
  position: relative;
  min-width: min(100%, 330px);
  padding: 13px 15px 13px 13px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.96), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(237, 247, 244, 0.62));
  color: var(--navy);
  box-shadow:
    0 24px 64px rgba(6, 26, 47, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(155%);
  -webkit-backdrop-filter: blur(20px) saturate(155%);
  text-decoration: none;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.news-instagram-link::after {
  content: "";
  position: absolute;
  inset: auto -50px -80px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.12), rgba(253, 29, 29, 0.1));
  filter: blur(12px);
  pointer-events: none;
}

.news-instagram-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  background:
    radial-gradient(circle at 72% 72%, #ffd86f 0 16%, transparent 17%),
    linear-gradient(135deg, #833ab4 0%, #fd1d1d 52%, #fcb045 100%);
  color: #ffffff;
  box-shadow:
    0 14px 34px rgba(131, 58, 180, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.news-instagram-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.news-instagram-link > span:nth-child(2) {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.news-instagram-link small {
  color: rgba(6, 26, 47, 0.52);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-instagram-link strong {
  overflow: hidden;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-instagram-arrow {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(6, 26, 47, 0.075);
  color: var(--jade);
  font-size: 1rem;
  font-weight: 900;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    color 0.35s ease;
}

@media (hover: hover) {
  .news-instagram-link:hover {
    transform: translateY(-6px);
    border-color: rgba(18, 183, 166, 0.28);
    box-shadow:
      0 34px 78px rgba(6, 26, 47, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }

  .news-instagram-link:hover .news-instagram-arrow {
    transform: rotate(8deg) scale(1.08);
    background: var(--jade);
    color: #ffffff;
  }
}

.news-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.news-archive-cta {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.news-archive-link {
  min-height: 58px;
  padding: 0 18px 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(6, 26, 47, 0.09);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), #0b3653);
  color: #ffffff;
  box-shadow:
    0 22px 54px rgba(6, 26, 47, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.36s ease;
}

.news-archive-link span:last-child {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--jade-light);
  transition:
    transform 0.32s ease,
    background 0.32s ease,
    color 0.32s ease;
}

@media (hover: hover) {
  .news-archive-link:hover {
    transform: translateY(-4px);
    box-shadow:
      0 30px 68px rgba(6, 26, 47, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }

  .news-archive-link:hover span:last-child {
    transform: rotate(8deg);
    background: var(--jade);
    color: #ffffff;
  }
}

.news-card,
.news-loading-card,
.news-empty-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: clamp(27px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 26px 70px rgba(6, 26, 47, 0.095),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}

.news-card {
  display: flex;
  flex-direction: column;
  animation: newsCardArrival 0.7s both cubic-bezier(0.22, 1, 0.36, 1);
  animation-delay: calc(var(--news-index, 0) * 90ms);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

@keyframes newsCardArrival {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (hover: hover) {
  .news-card:hover {
    transform: translateY(-9px);
    border-color: rgba(18, 183, 166, 0.24);
    box-shadow:
      0 38px 90px rgba(6, 26, 47, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 1);
  }

  .news-card:hover .news-card-media img {
    transform: scale(1.055);
  }
}

.news-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #0a2c43, #0d5c62);
}

.news-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(4, 19, 35, 0.46) 100%),
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.18), transparent 34%);
  pointer-events: none;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card-media-placeholder {
  display: grid;
  place-items: center;
  isolation: isolate;
  background:
    linear-gradient(115deg, transparent 0 62%, rgba(255, 255, 255, 0.06) 62% 63%, transparent 63%),
    radial-gradient(circle at 28% 22%, rgba(18, 183, 166, 0.5), transparent 33%),
    linear-gradient(145deg, #061a2f 0%, #0a4052 58%, #08756f 100%);
}

.news-card-media-placeholder::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 30px rgba(255, 255, 255, 0.035),
    0 0 0 60px rgba(255, 255, 255, 0.018);
}

.news-card-media-placeholder > span {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 2.7rem;
  font-weight: 300;
  line-height: 1;
}

.news-card-media-placeholder > small {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-card-category {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 3;
  max-width: calc(100% - 40px);
  padding: 8px 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(6, 26, 47, 0.52);
  color: #ffffff;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.news-card-content {
  min-height: 270px;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex: 1;
  flex-direction: column;
}

.news-card-content h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 900;
  letter-spacing: -0.052em;
  line-height: 1.12;
}

.news-card-content > p {
  margin: 0;
  color: rgba(6, 26, 47, 0.62);
  font-size: 0.94rem;
  line-height: 1.72;
}

.news-card-footer {
  min-height: 32px;
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.news-card-footer time {
  color: rgba(6, 26, 47, 0.46);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: capitalize;
}

.news-card-footer a,
.news-empty-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--jade);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.news-card-footer a::after {
  content: "↗";
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  .news-card-footer a:hover::after {
    transform: translate(2px, -2px);
  }
}

.news-loading-card {
  min-height: 460px;
  padding: 36px;
}

.news-loading-card::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 34px;
  border-radius: 25px;
  background: linear-gradient(90deg, #e8f0ed 25%, #f7faf9 50%, #e8f0ed 75%);
  background-size: 200% 100%;
  animation: newsLoading 1.4s linear infinite;
}

.news-loading-line {
  display: block;
  width: 100%;
  height: 13px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e8f0ed 25%, #f7faf9 50%, #e8f0ed 75%);
  background-size: 200% 100%;
  animation: newsLoading 1.4s linear infinite;
}

.news-loading-line-short {
  width: 55%;
  height: 20px;
}

@keyframes newsLoading {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

.news-empty-card {
  grid-column: 1 / -1;
  padding: clamp(34px, 6vw, 70px);
  text-align: center;
}

.news-empty-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.news-empty-card p {
  margin: 0 auto 22px;
  color: rgba(6, 26, 47, 0.62);
}

.news-noscript {
  margin: 24px 0 0;
  color: rgba(6, 26, 47, 0.62);
  text-align: center;
}

.news-noscript a {
  color: var(--jade);
  font-weight: 900;
}

.sm-quick-instagram {
  border-color: rgba(193, 53, 132, 0.16) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(250, 239, 246, 0.7)) !important;
  color: #9b2c72 !important;
}

.sm-quick-instagram .sm-quick-icon {
  background: linear-gradient(135deg, #833ab4, #fd1d1d 58%, #fcb045) !important;
  color: #ffffff !important;
}

@media (max-width: 1080px) {
  .news-premium-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .news-instagram-link {
    width: min(100%, 390px);
  }

  .news-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .news-premium {
    padding: 72px 0;
  }

  .news-premium::before {
    top: -160px;
    right: -230px;
    width: 430px;
    height: 430px;
  }

  .news-premium-heading {
    margin-bottom: 30px;
    gap: 24px;
  }

  .news-premium-heading h2 {
    font-size: clamp(2.35rem, 13vw, 3.65rem);
  }

  .news-premium-grid {
    grid-template-columns: 1fr;
  }

  .news-card-content {
    min-height: 235px;
  }

  .news-loading-card {
    min-height: 420px;
  }
}

@media (max-width: 480px) {
  .news-instagram-link {
    grid-template-columns: 48px minmax(0, 1fr) 34px;
    gap: 9px;
    padding: 10px;
    border-radius: 22px;
  }

  .news-instagram-icon {
    width: 48px;
    height: 48px;
    border-radius: 17px;
  }

  .news-instagram-link strong {
    font-size: 0.78rem;
  }

  .news-instagram-arrow {
    width: 34px;
    height: 34px;
  }

  .news-card,
  .news-loading-card,
  .news-empty-card {
    border-radius: 28px;
  }

  .news-card-content {
    padding: 24px;
  }

  .news-card-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-card,
  .news-loading-card::before,
  .news-loading-line {
    animation: none !important;
  }
}

/* ===================================================
   HEADER DESKTOP — FONDATIONS DE MISE EN PAGE
=================================================== */

@media (min-width: 1181px) {
  .nav-showcase {
    width: fit-content !important;
    max-width: calc(100% - 32px) !important;
  }

  .nav-showcase > .brand-showcase,
  .nav-showcase .reactbits-menu,
  .nav-showcase .reactbits-menu a,
  .nav-showcase .nav-phone {
    box-sizing: border-box !important;
  }

  .nav-showcase > .brand-showcase,
  .nav-showcase .reactbits-menu,
  .nav-showcase .nav-actions {
    flex: 0 0 auto !important;
  }

  .nav-showcase .reactbits-menu {
    width: max-content !important;
    min-width: max-content !important;
    justify-content: flex-start !important;
  }

  .nav-showcase .reactbits-menu a {
    width: auto !important;
    min-width: max-content !important;
    white-space: nowrap !important;
  }

  .nav-showcase .nav-actions {
    margin-left: 0 !important;
  }
}

/* ===================================================
   HEADER DESKTOP — GRAND AU SOMMET, COMPACT AU SCROLL
=================================================== */

@media (min-width: 1181px) {
  .site-header-premium {
    top: 18px !important;
    transition: top 0.46s var(--ease) !important;
  }

  .site-header-premium.scrolled {
    top: 10px !important;
  }

  .nav-showcase,
  .nav-showcase > .brand-showcase,
  .brand-showcase .brand-symbol,
  .brand-showcase .brand-mark,
  .brand-showcase .brand-name small,
  .brand-showcase .brand-name strong,
  .nav-showcase .reactbits-menu,
  .nav-showcase .reactbits-menu a,
  .nav-showcase .nav-actions,
  .nav-status-orb,
  .nav-showcase .nav-appointment,
  .nav-showcase .nav-emergency,
  .nav-showcase .nav-phone {
    transition-duration: 0.46s !important;
    transition-timing-function: var(--ease) !important;
  }

  .nav-showcase {
    transition-property:
      min-height,
      padding,
      gap,
      border-radius,
      border-color,
      background,
      box-shadow,
      transform !important;
    min-height: 92px !important;
    padding: 12px 14px !important;
    gap: 7px !important;
    border-radius: 38px !important;
    border-color: rgba(255, 255, 255, 0.96) !important;
    background:
      radial-gradient(circle at 18% 0%, rgba(18, 183, 166, 0.10), transparent 34%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(246, 252, 250, 0.88)) !important;
    box-shadow:
      0 28px 76px rgba(6, 26, 47, 0.15),
      0 7px 22px rgba(18, 183, 166, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 1) !important;
    transform: translateY(0) scale(1) !important;
  }

  .nav-showcase > .brand-showcase {
    transition-property:
      flex-basis,
      width,
      min-width,
      max-width,
      padding,
      gap,
      border-radius !important;
    flex-basis: 230px !important;
    width: 230px !important;
    min-width: 230px !important;
    max-width: 230px !important;
    padding: 6px 12px 6px 7px !important;
    gap: 11px !important;
    border-radius: 28px !important;
  }

  .brand-showcase .brand-symbol {
    transition-property: width, height, min-width, border-radius !important;
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    border-radius: 21px !important;
  }

  .brand-showcase .brand-mark {
    transition-property: width, height !important;
    width: 43px !important;
    height: 43px !important;
  }

  .brand-showcase .brand-name small {
    transition-property: font-size !important;
    font-size: 0.68rem !important;
  }

  .brand-showcase .brand-name strong {
    transition-property: font-size !important;
    font-size: 1.22rem !important;
  }

  .nav-showcase .reactbits-menu {
    transition-property: padding, gap !important;
    padding: 6px !important;
    gap: 1px !important;
  }

  .nav-showcase .reactbits-menu a {
    transition-property:
      min-height,
      padding,
      font-size,
      color,
      transform,
      opacity !important;
    min-height: 48px !important;
    padding: 0 7px !important;
    font-size: 0.74rem !important;
    letter-spacing: -0.03em !important;
  }

  .nav-showcase .nav-actions {
    transition-property: gap !important;
    gap: 4px !important;
  }

  .nav-status-orb {
    transition-property: width, height, min-width !important;
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
  }

  .nav-showcase .nav-appointment {
    transition-property: min-height, padding, gap, font-size !important;
    min-height: 60px !important;
    padding: 0 14px !important;
    gap: 8px !important;
    font-size: 0.86rem !important;
  }

  .nav-showcase .nav-emergency {
    transition-property:
      width,
      min-width,
      min-height,
      border-radius,
      color,
      background !important;
    width: 68px !important;
    min-width: 68px !important;
    min-height: 60px !important;
    border-radius: 25px !important;
  }

  .nav-showcase .nav-phone {
    transition-property: width, min-width, min-height, padding !important;
    width: 142px !important;
    min-width: 142px !important;
    min-height: 60px !important;
    padding: 0 10px !important;
  }

  .site-header-premium.scrolled .nav-showcase {
    min-height: 72px !important;
    padding: 8px 10px !important;
    gap: 6px !important;
    border-radius: 31px !important;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 251, 249, 0.84)) !important;
    box-shadow:
      0 18px 52px rgba(6, 26, 47, 0.17),
      0 4px 14px rgba(18, 183, 166, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.98) !important;
    transform: translateY(0) scale(0.992) !important;
  }

  .site-header-premium.scrolled .nav-showcase > .brand-showcase {
    flex-basis: 210px !important;
    width: 210px !important;
    min-width: 210px !important;
    max-width: 210px !important;
    padding: 4px 10px 4px 6px !important;
    gap: 9px !important;
    border-radius: 24px !important;
  }

  .site-header-premium.scrolled .brand-showcase .brand-symbol {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    border-radius: 18px !important;
  }

  .site-header-premium.scrolled .brand-showcase .brand-mark {
    width: 36px !important;
    height: 36px !important;
  }

  .site-header-premium.scrolled .brand-showcase .brand-name small {
    font-size: 0.64rem !important;
  }

  .site-header-premium.scrolled .brand-showcase .brand-name strong {
    font-size: 1.12rem !important;
  }

  .site-header-premium.scrolled .nav-showcase .reactbits-menu {
    padding: 5px !important;
  }

  .site-header-premium.scrolled .nav-showcase .reactbits-menu a {
    min-height: 42px !important;
    padding: 0 6px !important;
    font-size: 0.70rem !important;
  }

  .site-header-premium.scrolled .nav-status-orb {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
  }

  .site-header-premium.scrolled .nav-showcase .nav-appointment {
    min-height: 54px !important;
    padding: 0 12px !important;
    gap: 7px !important;
    font-size: 0.82rem !important;
  }

  .site-header-premium.scrolled .nav-showcase .nav-emergency {
    width: 66px !important;
    min-width: 66px !important;
    min-height: 54px !important;
    border-radius: 22px !important;
  }

  .site-header-premium.scrolled .nav-showcase .nav-phone {
    width: 136px !important;
    min-width: 136px !important;
    min-height: 54px !important;
    padding: 0 8px !important;
  }
}

@media (min-width: 1181px) and (max-width: 1360px) {
  .nav-showcase {
    max-width: calc(100% - 20px) !important;
    padding-inline: 10px !important;
  }

  .nav-showcase > .brand-showcase {
    flex-basis: 210px !important;
    width: 210px !important;
    min-width: 210px !important;
    max-width: 210px !important;
  }

  .nav-showcase .reactbits-menu a {
    padding-inline: 5px !important;
    font-size: 0.69rem !important;
  }

  .site-header-premium.scrolled .nav-showcase > .brand-showcase {
    flex-basis: 200px !important;
    width: 200px !important;
    min-width: 200px !important;
    max-width: 200px !important;
  }
}

@media (min-width: 1361px) {
  .site-header-premium:not(.scrolled) .nav-showcase {
    min-height: 96px !important;
    padding: 13px 16px !important;
    gap: 8px !important;
    border-radius: 40px !important;
    box-shadow:
      0 34px 86px rgba(6, 26, 47, 0.17),
      0 9px 26px rgba(18, 183, 166, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  }

  .site-header-premium:not(.scrolled)
    .nav-showcase
    > .brand-showcase {
    flex-basis: 238px !important;
    width: 238px !important;
    min-width: 238px !important;
    max-width: 238px !important;
    padding: 6px 13px 6px 8px !important;
    gap: 12px !important;
    border-radius: 29px !important;
  }

  .site-header-premium:not(.scrolled) .brand-showcase .brand-symbol {
    width: 62px !important;
    height: 62px !important;
    min-width: 62px !important;
    border-radius: 22px !important;
  }

  .site-header-premium:not(.scrolled) .brand-showcase .brand-mark {
    width: 45px !important;
    height: 45px !important;
  }

  .site-header-premium:not(.scrolled) .brand-showcase .brand-name small {
    font-size: 0.70rem !important;
  }

  .site-header-premium:not(.scrolled) .brand-showcase .brand-name strong {
    font-size: 1.26rem !important;
  }

  .site-header-premium:not(.scrolled) .nav-showcase .reactbits-menu {
    padding: 7px !important;
  }

  .site-header-premium:not(.scrolled) .nav-showcase .reactbits-menu a {
    min-height: 50px !important;
    padding: 0 8px !important;
    font-size: 0.76rem !important;
  }

  .site-header-premium:not(.scrolled) .nav-status-orb {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
  }

  .site-header-premium:not(.scrolled) .nav-showcase .nav-appointment {
    min-height: 62px !important;
    padding: 0 16px !important;
    gap: 8px !important;
    font-size: 0.88rem !important;
  }

  .site-header-premium:not(.scrolled) .nav-showcase .nav-emergency {
    width: 72px !important;
    min-width: 72px !important;
    min-height: 62px !important;
    border-radius: 26px !important;
  }

  .site-header-premium:not(.scrolled) .nav-showcase .nav-phone {
    width: 146px !important;
    min-width: 146px !important;
    min-height: 62px !important;
    padding: 0 11px !important;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 1181px) {
  .site-header-premium,
  .nav-showcase,
  .nav-showcase * {
    transition-duration: 0.01ms !important;
  }
}

/* ===================================================
   ACCESSIBILITÉ — CLAVIER ET MOUVEMENTS RÉDUITS
=================================================== */

:where(
  a,
  button,
  input,
  textarea,
  select,
  [tabindex]:not([tabindex="-1"])
):focus-visible {
  outline: 3px solid #00a995 !important;
  outline-offset: 3px !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===================================================
   BANNIÈRE D’INFORMATION ADMINISTRABLE
=================================================== */

.site-announcement {
  --announcement-accent: #0a9689;
  --announcement-soft: rgba(10, 150, 137, 0.13);
  position: relative;
  z-index: 12;
  padding: 18px 24px 0;
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.site-header-premium + .site-announcement {
  padding-top: 132px;
}

.site-announcement.is-important {
  --announcement-accent: #a97922;
  --announcement-soft: rgba(217, 189, 136, 0.2);
}

.site-announcement.is-urgence {
  --announcement-accent: #d94b45;
  --announcement-soft: rgba(255, 101, 93, 0.14);
}

.site-announcement.is-succes {
  --announcement-accent: #278b58;
  --announcement-soft: rgba(72, 184, 119, 0.14);
}

.site-announcement.is-closing {
  opacity: 0;
  transform: translateY(-8px);
}

.site-announcement-inner {
  width: min(1120px, 100%);
  min-height: 66px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  margin: 0 auto;
  border: 1px solid color-mix(in srgb, var(--announcement-accent) 24%, white);
  border-radius: 22px;
  padding: 11px 12px 11px 14px;
  background:
    radial-gradient(circle at 8% 0%, var(--announcement-soft), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 250, 0.88));
  box-shadow:
    0 18px 54px rgba(6, 26, 47, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
}

.site-announcement-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--announcement-soft);
  color: var(--announcement-accent);
  font-size: 0.95rem;
  font-weight: 900;
}

.site-announcement-copy {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 11px;
}

.site-announcement-copy strong {
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 0.83rem;
  letter-spacing: -0.02em;
}

.site-announcement-copy p {
  overflow: hidden;
  margin: 0;
  color: rgba(6, 26, 47, 0.66);
  font-size: 0.76rem;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-announcement-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  padding: 0 15px;
  background: var(--announcement-accent);
  color: white;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.site-announcement-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--announcement-accent) 25%, transparent);
}

.site-announcement-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 13px;
  background: rgba(6, 26, 47, 0.055);
  color: rgba(6, 26, 47, 0.6);
  font-size: 1.25rem;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-announcement-close:hover {
  background: rgba(6, 26, 47, 0.1);
  color: var(--navy);
  transform: rotate(4deg);
}

@media (max-width: 1180px) {
  .site-header-premium + .site-announcement {
    padding-top: 104px;
  }
}

@media (max-width: 760px) {
  .site-announcement {
    padding: 14px 12px 0;
  }

  .site-header-premium + .site-announcement {
    padding-top: 94px;
  }

  .site-announcement-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    gap: 10px;
    border-radius: 19px;
    padding: 12px;
  }

  .site-announcement-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .site-announcement-copy {
    display: grid;
    gap: 3px;
    padding-top: 1px;
  }

  .site-announcement-copy strong {
    font-size: 0.78rem;
  }

  .site-announcement-copy p {
    overflow: visible;
    display: -webkit-box;
    font-size: 0.7rem;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .site-announcement-link {
    grid-column: 2 / -1;
    width: fit-content;
    min-height: 36px;
    padding-inline: 13px;
  }

  .site-announcement-close {
    width: 36px;
    height: 36px;
  }
}

/* ===================================================
   HEADER — ANGLES PLUS STRUCTURÉS
   Ajustement visuel uniquement : dimensions, logique et
   animations du header d'origine restent inchangées.
=================================================== */

@media (min-width: 1181px) {
  .site-header-premium .nav-showcase {
    border-radius: 24px !important;
  }

  .site-header-premium .nav-showcase > .brand-showcase {
    border-radius: 18px !important;
  }

  .site-header-premium .brand-showcase .brand-symbol {
    border-radius: 15px !important;
  }

  .site-header-premium .nav-showcase .reactbits-menu {
    border-radius: 17px !important;
  }

  .site-header-premium .nav-showcase .reactbits-menu::before,
  .site-header-premium .nav-showcase .reactbits-menu a {
    border-radius: 13px !important;
  }

  .site-header-premium .nav-showcase .nav-appointment,
  .site-header-premium .nav-showcase .nav-emergency,
  .site-header-premium .nav-showcase .nav-phone {
    border-radius: 16px !important;
  }

  .site-header-premium.scrolled .nav-showcase {
    border-radius: 20px !important;
  }

  .site-header-premium.scrolled .nav-showcase > .brand-showcase {
    border-radius: 15px !important;
  }

  .site-header-premium.scrolled .brand-showcase .brand-symbol {
    border-radius: 13px !important;
  }

  .site-header-premium.scrolled .nav-showcase .reactbits-menu {
    border-radius: 15px !important;
  }

  .site-header-premium.scrolled .nav-showcase .reactbits-menu::before,
  .site-header-premium.scrolled .nav-showcase .reactbits-menu a,
  .site-header-premium.scrolled .nav-showcase .nav-appointment,
  .site-header-premium.scrolled .nav-showcase .nav-emergency,
  .site-header-premium.scrolled .nav-showcase .nav-phone {
    border-radius: 12px !important;
  }
}
.footer-creator {
  display: inline-block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.42);
}

.footer-creator a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-decoration: none;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.footer-creator a:hover,
.footer-creator a:focus-visible {
  color: var(--jade-light);
}