/** Shopify CDN: Minification failed

Line 27:0 All "@import" rules must come first

**/
/* ============================================================
   MR CROUSTY — CSS Final v4
   One rule per selector. No accumulation. No overrides.
   ============================================================ */

:root {
  --V: #6B35D9;
  --O: #E8622A;
  --R: #E8622A;
  --RD: #221F26;
  --CR: #F7EFE0;
  --N: #221F26;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Archivo', sans-serif; font-weight: 400; background: var(--CR); color: var(--N); }
a { text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Typography ── */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .1s, box-shadow .1s;
}
.btn:active { transform: translateY(2px); }
.btn-r {
  background: #E8622A;
  color: #fff;
  box-shadow: 0 4px 0 #221F26;
}
.btn-r:hover { background: #b52424; box-shadow: 0 2px 0 #221F26; transform: translateY(2px); }
.btn-o {
  background: #E8622A;
  color: #fff;
  box-shadow: 0 4px 0 #8B3100;
}
.btn-o:hover { background: #d45524; box-shadow: 0 2px 0 #8B3100; transform: translateY(2px); }
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  box-shadow: none;
}
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-w-o {
  background: #fff;
  color: #E8622A;
  box-shadow: 0 4px 0 rgba(0,0,0,.2);
}

/* ── Hero ── */
.hero { position: relative; overflow: hidden; }
.hero-img {
  width: 100%;
  height: clamp(420px, 70vh, 600px);
  object-fit: cover;
  display: block;
}
.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, rgba(34,31,38,0.9) 100%);
}
.hero-ct {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 40px 52px;
  max-width: 760px;
}
.hero h1 {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 7vw, 72px);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.06;
  margin-bottom: 16px;
}
.hero h1 mark {
  background: var(--O);
  color: #fff;
  padding: 0 10px 4px;
  border-radius: 3px;
}
.hero-sub {
  font-family: 'Archivo', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Orange Band ── */
.band {
  background: #E8622A;
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  text-align: center;
  padding: 12px 16px;
}

/* ── Pills ── */
.pills {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 14px 20px;
  scrollbar-width: none;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  background: var(--CR);
}
.pills::-webkit-scrollbar { display: none; }
.pill {
  flex-shrink: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  border: 2px solid #221F26;
  background: transparent;
  cursor: pointer;
  letter-spacing: .05em;
  color: #221F26;
  transition: all .15s;
}
.pill.active {
  background: #E8622A;
  color: #fff;
  border-color: #E8622A;
}
.pill:hover:not(.active) { border-color: #E8622A; color: #E8622A; }

/* ── Grid ── */
.mc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 0 16px 20px;
}
@media (min-width: 640px) {
  .mc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .mc-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Cards ── */
.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}
.card-img-wrap { position: relative; }
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #E8622A;
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 8px;
  border-radius: 3px;
  z-index: 2;
}
.card-badge-red {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #E8622A;
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 8px;
  border-radius: 3px;
  z-index: 2;
}
.card-body {
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--N);
}
.card-desc {
  font-family: 'Archivo', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 11px;
  color: #6F6874;
  margin-bottom: 8px;
  flex: 1;
}
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.card-price {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: #6B35D9;
}
.card-add {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: #E8622A;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 2px 0 #221F26;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform .1s;
}
.card-add:active { transform: translateY(1px); box-shadow: 0 1px 0 #221F26; }

/* ── Sections ── */
.sec { padding: 52px 20px; }
.inner { max-width: 1100px; margin: 0 auto; }
.sec-title {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 5vw, 42px);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 10px;
  color: var(--N);
}
.sec-title mark {
  background: #E8622A;
  color: #fff;
  padding: 0 10px 4px;
  border-radius: 3px;
}
.sec-title mark.v {
  background: #6B35D9;
  color: #fff;
}
.sec-sub {
  font-family: 'Archivo', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: #6F6874;
  margin-bottom: 28px;
}

/* ── Section Signature ── */
.sec-signature {
  background: #221F26;
  padding: 60px 20px;
}
.sec-signature .inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 760px) {
  .sec-signature .inner { grid-template-columns: 1fr 1fr; }
}
.sig-img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.sig-text {}
.sig-text .sec-title { color: #fff; }
.sig-text .sec-sub { color: rgba(255,255,255,.65); }
.sig-desc {
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ── Commandez section ── */
.sec-order { background: #221F26; padding: 60px 20px; }
.sec-order .sec-title { color: #fff; }
.order-sub {
  font-family: 'Archivo', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: rgba(255,255,255,.65);
  margin-bottom: 36px;
}
.order-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 680px;
  margin: 0 auto 32px;
}
@media (min-width: 600px) {
  .order-cards { grid-template-columns: 1fr 1fr; }
}
.order-card {
  border-radius: 10px;
  padding: 28px 24px;
}
.order-card-uber { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); }
.order-card-direct { background: #E8622A; position: relative; }
.order-card h4 {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.order-card-uber .order-price {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #ff6b6b;
  line-height: 1;
  margin-bottom: 6px;
}
.order-card-direct .order-price {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.order-card-uber .order-label {
  font-family: 'Archivo', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.order-card-direct .order-label {
  font-family: 'Archivo', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 12px;
  color: rgba(255,255,255,.8);
}
.order-badge {
  display: inline-block;
  background: #6B35D9;
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.sec-order .inner { text-align: center; }

/* ── Franchise Section ── */
.sec-franchise {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
}
.franchise-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.franchise-ov {
  position: absolute;
  inset: 0;
  background: rgba(232, 98, 42, 0.85);
  z-index: 1;
}
.franchise-ct {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.franchise-ct .sec-title { color: #fff; margin-bottom: 16px; }
.franchise-ct .sec-title mark {
  background: #221F26;
  color: #fff;
  padding: 0 10px 4px;
  border-radius: 3px;
}
.franchise-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px auto;
  max-width: 560px;
}
@media (min-width: 600px) {
  .franchise-icons { grid-template-columns: repeat(4, 1fr); }
}
.franchise-icon {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 10px;
  padding: 20px 12px;
  text-align: center;
}
.franchise-icon-label {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .05em;
  line-height: 1.3;
}

/* ── Photo Corporate ── */
.sec-corporate {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  min-height: 400px;
}
.corporate-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.corporate-ov {
  position: absolute;
  inset: 0;
  background: rgba(34,31,38,.75);
  z-index: 1;
}
.corporate-ct {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.corporate-ct .sec-title { color: #fff; }
.corporate-ct .sec-sub { color: rgba(255,255,255,.75); }

/* ── FAQ ── */
.sec-faq { background: var(--CR); }
.faq-item { border-bottom: 1px solid rgba(34,31,38,.12); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--N);
  letter-spacing: .03em;
}
.faq-q::after {
  content: '+';
  font-size: 22px;
  color: #E8622A;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  font-family: 'Archivo', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: #6F6874;
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 16px; }

/* ── Panier Drawer ── */
#mc-panier {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 100vw;
  height: 100%;
  background: #fff;
  z-index: 9999;
  box-shadow: -4px 0 30px rgba(0,0,0,.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
}
#mc-panier.open { transform: translateX(0); }
#mc-panier-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9998;
  display: none;
}
#mc-panier-overlay.open { display: block; }
.panier-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(34,31,38,.1);
}
.panier-head h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--N);
}
.panier-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--N);
  padding: 4px 8px;
}
.panier-body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.panier-empty {
  text-align: center;
  padding: 48px 0;
  font-family: 'Archivo', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: #6F6874;
}
.panier-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(34,31,38,.08);
  align-items: center;
}
.panier-item-name {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  flex: 1;
  color: var(--N);
}
.panier-item-price {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: #6B35D9;
}
.panier-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Anton', sans-serif;
  font-size: 13px;
}
.panier-item-qty button {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #f0f0f0;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panier-foot {
  padding: 16px 20px;
  border-top: 1px solid rgba(34,31,38,.1);
}
.panier-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.panier-total span:first-child {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--N);
}
.panier-total span:last-child {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #6B35D9;
}

/* ── Header extras ── */
.mc-header-extras {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 12px;
}
@media (max-width: 899px) {
  .mc-header-extras { display: none !important; }
}
.mc-btn-entreprise {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 6px;
  background: #6B35D9;
  color: #fff;
  box-shadow: 0 3px 0 #3D1A8C;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.mc-btn-franchise {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 6px;
  background: #E8622A;
  color: #fff;
  box-shadow: 0 3px 0 #221F26;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.mc-lang-switch {
  display: flex;
  border: 2px solid #6B35D9;
  border-radius: 6px;
  overflow: hidden;
}
.mc-lang-switch button {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 11px;
  border: none;
  cursor: pointer;
  background: #fff;
  color: #6B35D9;
  min-width: 36px;
  min-height: 36px;
  padding: 7px 12px;
}
.mc-lang-switch button.mc-active {
  background: #6B35D9;
  color: #fff;
}

/* ── Header ── */
.shopify-section-group-header-group header,
.shopify-section-group-header-group .header {
  background: #fff !important;
  border-bottom: 3px solid #E8622A !important;
}

/* ── Hide native nav if using custom ── */
.mnav { display: none !important; }

/* ── Footer ── */
.mc-footer {
  background: #221F26;
  color: #fff;
  padding: 52px 20px 28px;
}
.mc-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 700px) {
  .mc-footer-inner { grid-template-columns: repeat(2, 1fr); }
}
.mc-footer-logo {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.mc-footer-tagline {
  font-family: 'Archivo', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.mc-footer-col h4 {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.mc-footer-col a {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color .15s;
}
.mc-footer-col a:hover { color: #E8622A; }
.mc-footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  text-align: center;
}

/* ── Cart trigger ── */
.mc-cart-trigger {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #E8622A;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 22px;
  box-shadow: 0 4px 0 #221F26, 0 6px 20px rgba(198,40,40,.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  font-family: 'Anton', sans-serif;
}
.mc-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #6B35D9;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 10px;
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

/* ── Responsive ── */
@media (max-width: 699px) {
  .hero-ct { padding: 0 20px 36px; }
}
@media (max-width: 599px) {
  .sec { padding: 36px 16px; }
  .sec-signature { padding: 36px 16px; }
  .sec-order { padding: 36px 16px; }
  .sec-franchise { padding: 52px 16px; }
  .sec-faq { padding: 36px 16px; }
}

/* ── Carte section title ── */
.carte-header {
  padding: 40px 20px 8px;
  text-align: center;
}

/* ── hide native Horizon header/cart icons ── */
.header__icon--cart,
.header__icon--account,
.header__icon--search { display: none !important; }


/* ═══════════════════════════════════════
   BLOC 2 — Franchise / Entreprises / Forms
   ═══════════════════════════════════════ */

/* --- Grille cartes avantages --- */
.fr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .fr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .fr-grid { grid-template-columns: repeat(4, 1fr); } }

.fr-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.fr-ico {
  width: 34px;
  height: 34px;
  color: #E8622A;
  margin-bottom: 16px;
  display: block;
}
.fr-card h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #221F26;
  margin-bottom: 10px;
}
.fr-card p {
  font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 13px;
  line-height: 1.55;
  color: #6F6874;
}

/* --- Section sombre --- */
.sec-dark { background: #221F26; padding: 52px 20px; }
.sec-dark .inner { max-width: 1100px; margin: 0 auto; }
.sec-title-light { color: #fff; justify-content: center; text-align: center; }
.sec-sub-light { color: rgba(255,255,255,.7); text-align: center; margin-left: auto; margin-right: auto; }
.mk-v { background: #6B35D9 !important; color: #fff !important; padding: 0 10px 4px; border-radius: 3px; font-style: normal; }

/* --- Formulaires --- */
.mc-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .mc-form { grid-template-columns: 1fr 1fr; } }
.mc-field { display: flex; flex-direction: column; }
.mc-field-full { grid-column: 1 / -1; }
.mc-field label {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #221F26;
  margin-bottom: 7px;
}
.mc-field input,
.mc-field select,
.mc-field textarea {
  width: 100%;
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #221F26;
  background: #fff;
  border: 1px solid rgba(34,31,38,.18);
  border-radius: 6px;
  padding: 13px 14px;
  box-sizing: border-box;
  transition: border-color .15s;
}
.mc-field input:focus,
.mc-field select:focus,
.mc-field textarea:focus {
  outline: none;
  border-color: #E8622A;
}
.mc-field textarea { resize: vertical; min-height: 110px; }
.mc-field input::placeholder,
.mc-field textarea::placeholder {
  font-style: italic;
  color: #A8A2AE;
}
.btn-full { width: 100%; justify-content: center; padding: 17px; }

/* --- Réseaux sociaux footer --- */
.mc-social { display: flex; gap: 10px; margin-top: 18px; }
.mc-social a {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.mc-social a:hover { background: #E8622A; }
.mc-social svg { width: 18px; height: 18px; }

/* --- Footer brand --- */
.mc-footer-brand { display: flex; flex-direction: column; }
@media (max-width: 699px) {
  .mc-footer-brand { align-items: center; text-align: center; }
  .mc-footer-brand .mc-social { justify-content: center; }
  .mc-footer-logo { margin-left: auto; margin-right: auto; }
}

/* --- Masquer icônes Horizon (Search / Account) --- */
.header-actions__action[aria-label*="earch"],
.header-actions__action[aria-label*="ccount"],
.header-actions__action[aria-label*="echerche"],
.header-actions__action[aria-label*="ompte"],
.account-button,
.search-action,
header-actions .account-button { display: none !important; }

/* --- Nav mobile résiduelle --- */
.mnav { display: none !important; }


/* ═══════════════════════════════════════
   NAV DESKTOP — plus gros + Archivo Black
   ═══════════════════════════════════════ */

.header__menu a,
.header-menu a,
.header__inline-menu a,
.list-menu__item {
  font-family: 'Anton', sans-serif !important;
  font-weight: 900 !important;
  font-size: 15px !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
  color: #221F26 !important;
  text-decoration: none !important;
  transition: color .15s !important;
}

.header__menu a:hover,
.header-menu a:hover,
.header__inline-menu a:hover { color: #E8622A !important; }


/* ═══════════════════════════════════════
   MOBILE — titres agrandis
   ═══════════════════════════════════════ */
@media (max-width: 699px) {

  /* Hero : 7vw -> 11vw */
  .hero h1 { font-size: clamp(30px, 8vw, 46px) !important; line-height: 1.06 !important; }
  .hero-sub { font-size: 16px !important; }

  /* Titres de section : 5vw -> 9vw */
  .sec-title { font-size: clamp(26px, 7vw, 38px) !important; line-height: 1.04 !important; }
  .sec-sub { font-size: 16px !important; }

  /* Titres de cartes produit */
  .card-body h3 { font-size: 16px !important; line-height: 1.15 !important; }
  .card-desc { font-size: 12.5px !important; }
  .card-price { font-size: 17px !important; }

  /* FAQ */
  .faq-q { font-size: 17px !important; padding: 20px 0 !important; }
  .faq-q::after { font-size: 26px !important; }
  .faq-a { font-size: 15px !important; }

  /* Cartes franchise / entreprises */
  .fr-card h3 { font-size: 17px !important; }
  .fr-card p { font-size: 14px !important; }
  .fr-ico { width: 40px !important; height: 40px !important; }

  /* Section commande directe */
  .order-card h4 { font-size: 14px !important; }
  .order-price { font-size: 40px !important; }
  .order-sub { font-size: 16px !important; }

  /* Bande orange */
  .band { font-size: 13px !important; padding: 14px 16px !important; }

  /* Boutons */
  .btn { font-size: 14px !important; padding: 16px 26px !important; }

  /* Titres footer */
  .mc-footer-col h4 { font-size: 13px !important; }
  .mc-footer-col a { font-size: 15px !important; }
  .mc-footer-tagline { font-size: 15px !important; }
}

/* ═══════════════════════════════════════
   MENU DRAWER — plein écran sombre
   ═══════════════════════════════════════ */

.menu-drawer,
.menu-drawer__inner-container,
dialog.menu-drawer,
.header__drawer .menu-drawer {
  background: #6B35D9 !important;
}

.menu-drawer__navigation {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 62vh !important;
  padding: 48px 20px 32px !important;
  background: #6B35D9 !important;
}

.menu-drawer__menu {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 2px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.menu-drawer__menu > li,
.menu-drawer__list-item--flat {
  width: 100% !important;
  list-style: none !important;
  position: relative !important;
}

.menu-drawer__menu-item,
.menu-drawer__menu-item--mainlist {
  font-family: 'Anton', sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(26px, 7.5vw, 36px) !important;
  line-height: 1.02 !important;
  text-transform: uppercase !important;
  letter-spacing: -.01em !important;
  color: #F7EFE0 !important;
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  padding: 6px 0 !important;
  text-decoration: none !important;
  background: none !important;
  transition: color .15s !important;
}

.menu-drawer__menu-item:hover,
.menu-drawer__menu-item:active { color: #E8622A !important; }



/* Liens secondaires + copyright */
.menu-drawer__utility-links,
.menu-drawer__footer {
  background: #6B35D9 !important;
  border-top: none !important;
  text-align: center !important;
  padding: 0 20px 32px !important;
}
.menu-drawer__utility-links a,
.menu-drawer__footer a {
  font-family: 'Anton', sans-serif !important;
  font-weight: 900 !important;
  font-size: 13px !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  color: #F7EFE0 !important;
  display: block !important;
  text-align: center !important;
  padding: 12px 0 !important;
  text-decoration: none !important;
}

/* Bouton fermer */
.menu-drawer .header-drawer-icon--close,
.menu-drawer button[aria-label*="lose"],
.menu-drawer button[aria-label*="ermer"] { color: #F7EFE0 !important; }

/* Switch FR/EN */
#mcLangMobile { margin: 8px auto 24px !important; }



/* ═══ DRAWER — override spécificité ═══ */
.menu-drawer__navigation .menu-drawer__menu .menu-drawer__menu-item,
.menu-drawer__navigation a.menu-drawer__menu-item,
nav.menu-drawer__navigation a {
  font-family: 'Anton', sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(26px, 7.5vw, 36px) !important;
  line-height: 1.02 !important;
  text-transform: uppercase !important;
  letter-spacing: -.01em !important;
  color: #F7EFE0 !important;
  text-align: center !important;
  justify-content: center !important;
  padding: 6px 0 !important;
}
nav.menu-drawer__navigation a:hover { color: #E8622A !important; }


/* ═══════════════════════════════════════
   TOUCHES VIOLET
   ═══════════════════════════════════════ */

/* Pastilles filtre : bordure violette au repos */
.pill {
  border-color: #6B35D9 !important;
  color: #6B35D9 !important;
}
.pill.active {
  background: #6B35D9 !important;
  border-color: #6B35D9 !important;
  color: #fff !important;
}
.pill:hover:not(.active) {
  background: rgba(107,53,217,.08) !important;
}

/* Badge MEILLEUR PRIX déjà violet — garder */
/* Prix cartes déjà violets — garder */

/* Bande orange : trait violet en bas */
.band { border-bottom: 3px solid #6B35D9 !important; }

/* FAQ : icône +/- violette */
.faq-q::after { color: #6B35D9 !important; }

/* Icônes cartes franchise/entreprises en violet */
.fr-ico { color: #6B35D9 !important; }

/* Header : bordure basse violette */
.header, #header-component, .shopify-section-group-header-group {
  border-bottom: 3px solid #6B35D9 !important;
}


/* ═══════════════════════════════════════
   DRAWER PLEIN ÉCRAN + ICÔNE CUSTOM
   ═══════════════════════════════════════ */

.menu-drawer,
.header-drawer .menu-drawer,
[ref="menuDrawer"] {
  width: 100vw !important;
  max-width: 100vw !important;
  height: 100dvh !important;
  max-height: 100dvh !important;
  inset: 0 !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.menu-drawer__navigation {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  justify-content: center !important;
}

/* Bouton fermer en haut à droite */
.menu-drawer__close-button,
.menu-drawer .close-button {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  left: auto !important;
  color: #F7EFE0 !important;
  background: none !important;
  border: none !important;
  z-index: 5 !important;
}
.menu-drawer__close-button svg { width: 22px !important; height: 22px !important; }

/* Icône hamburger custom — plus grande */
.header-drawer-icon svg,
.header__icon--menu svg {
  width: 26px !important;
  height: 26px !important;
}
.header__icon--menu { color: #221F26 !important; }





/* ═══ BURGER simple 3 barres ⇄ X ═══ */
.header__icon--menu .mc-burger { display: block; line-height: 0; }
.header__icon--menu .mc-burger svg { width: 26px; height: 26px; color: #221F26; }
.mc-b { transform-origin: 12px 12px; transition: transform .3s ease, opacity .2s ease; }
details[open] .mc-b1 { transform: translateY(5.5px) rotate(45deg); }
details[open] .mc-b2 { opacity: 0; }
details[open] .mc-b3 { transform: translateY(-5.5px) rotate(-45deg); }
details[open] .header__icon--menu .mc-burger svg { color: #F7EFE0; }
.menu-drawer-container > summary { position: relative; z-index: 10; }
details[open] > summary.header__icon--menu { position: fixed !important; top: 14px !important; right: 16px !important; z-index: 120 !important; }
.header-drawer-icon--open, .header-drawer-icon--close { display: none !important; }

/* ═══ Logo footer desktop plus petit ═══ */
@media (min-width: 700px) {
  .mc-footer-logo { height: 38px !important; }
}


/* ═══════════════════════════════════════
   HOME — grilles photo
   ═══════════════════════════════════════ */

/* --- Catégories --- */
.mc-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (min-width: 900px) { .mc-cats { grid-template-columns: repeat(3, 1fr); gap: 16px; } }

.mc-cat {
  position: relative; display: block; overflow: hidden;
  border-radius: 12px; aspect-ratio: 1/1; text-decoration: none;
  box-shadow: 0 3px 14px rgba(0,0,0,.1);
}
.mc-cat-lg { grid-column: span 2; aspect-ratio: 2/1; }
@media (min-width: 900px) { .mc-cat-lg { grid-column: span 1; aspect-ratio: 1/1; } }

.mc-cat img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.mc-cat:hover img { transform: scale(1.06); }
.mc-cat-ov { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(34,31,38,0) 35%, rgba(34,31,38,.82) 100%); }
.mc-cat-ct { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; gap: 6px; }
.mc-cat-ct h3 {
  font-family: 'Anton', sans-serif; font-weight: 900;
  font-size: clamp(17px, 4.2vw, 24px); text-transform: uppercase;
  color: #fff; line-height: 1.05; margin: 0;
}
.mc-cat-tag {
  align-self: flex-start; background: #E8622A; color: #fff;
  font-family: 'Anton', sans-serif; font-weight: 900;
  font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 3px;
}
.mc-cats-cta { text-align: center; margin-top: 28px; }

/* --- Nouveautés --- */
.mc-news { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 700px) { .mc-news { grid-template-columns: repeat(3, 1fr); } }

.mc-news-card {
  display: block; background: #fff; border-radius: 12px; overflow: hidden;
  text-decoration: none; box-shadow: 0 3px 14px rgba(0,0,0,.09);
  transition: transform .25s ease;
}
.mc-news-card:hover { transform: translateY(-4px); }
.mc-news-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.mc-news-body { padding: 16px 18px 20px; }
.mc-news-tag {
  display: inline-block; background: #6B35D9; color: #fff;
  font-family: 'Anton', sans-serif; font-weight: 900;
  font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 3px; margin-bottom: 9px;
}
.mc-news-body h3 {
  font-family: 'Anton', sans-serif; font-weight: 900;
  font-size: clamp(16px, 3.6vw, 20px); text-transform: uppercase;
  color: #221F26; margin: 0; line-height: 1.1;
}

.mc-news-sec { background: #F7EFE0; }
.mc-cats-sec { background: #fff; }


/* ═══ HERO — anti-débordement ═══ */
.hero-ct {
  overflow: hidden !important;
  padding-top: 90px !important;
}
.hero h1 {
  font-size: clamp(30px, 5.2vw, 62px) !important;
  line-height: 1.06 !important;
  overflow-wrap: break-word;
  hyphens: none;
}
@media (min-width: 900px) {
  .hero-img { height: clamp(480px, 72vh, 640px) !important; }
  .hero-ct  { max-width: 860px !important; padding: 100px 48px 56px !important; }
}
@media (max-width: 699px) {
  .hero-img { height: clamp(440px, 76vh, 560px) !important; }
  .hero-ct  { padding: 80px 20px 36px !important; }
  .hero h1  { font-size: clamp(28px, 8.2vw, 44px) !important; }
}


/* ═══ Logo footer — anti-déformation ═══ */
.mc-footer .mc-footer-logo,
img.mc-footer-logo {
  height: 44px !important;
  width: auto !important;
  max-width: 190px !important;
  min-width: 0 !important;
  object-fit: contain !important;
  aspect-ratio: auto !important;
  display: block !important;
  margin-bottom: 16px !important;
}
@media (max-width: 699px) {
  .mc-footer .mc-footer-logo,
  img.mc-footer-logo {
    height: 40px !important;
    max-width: 170px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


/* ═══ Logo footer — ratio strict 500x179 ═══ */
.mc-footer img.mc-footer-logo,
img.mc-footer-logo {
  height: 44px !important;
  width: 123px !important;
  max-width: none !important;
  min-width: 0 !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 0 16px 0 !important;
}
@media (max-width: 699px) {
  .mc-footer img.mc-footer-logo,
  img.mc-footer-logo {
    height: 48px !important;
    width: 134px !important;
    margin: 0 auto 16px !important;
  }
}

/* ── Panier Shopify (ajouts agent) ── */
.dr-item{display:flex;align-items:center;gap:10px;justify-content:space-between;padding:10px 0;border-bottom:1px solid rgba(0,0,0,.08)}
.dr-item b{font-family:'Archivo',sans-serif;font-weight:600;font-size:13px;flex:1}
.dr-rm{background:none;border:0;font-size:20px;line-height:1;cursor:pointer;color:#221F26;padding:0 4px}

.dr-note{font-size:11px;color:#777;margin:6px 0 10px;text-align:center}
.card-add[disabled]{opacity:.4;cursor:not-allowed}

/* ── Footer 5 colonnes (agent) ── */
@media (min-width: 900px){ .mc-footer-inner{ grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 1100px){ .mc-footer-inner{ grid-template-columns: 1.8fr 1fr 1fr 1.2fr 1fr; gap:28px; } }
.mc-footer-col a{display:block;line-height:1.7}
.mc-footer-col h4{margin-bottom:10px}

/* ── Tiroir panier Mr Crousty (agent) ── */
.ov2{position:fixed;inset:0;background:rgba(0,0,0,.45);opacity:0;visibility:hidden;transition:opacity .25s;z-index:9998}
.ov2.on{opacity:1;visibility:visible}
.dr{position:fixed;top:0;right:0;height:100dvh;width:min(400px,92vw);background:#fff;
    box-shadow:-4px 0 24px rgba(0,0,0,.18);display:flex;flex-direction:column;
    transform:translateX(105%);transition:transform .28s cubic-bezier(.4,0,.2,1);z-index:9999}
.dr.on{transform:translateX(0)}
.dr-hd{display:flex;align-items:center;justify-content:space-between;padding:18px 20px;border-bottom:2px solid #1a1a1a}
.dr-hd h3{font-family:'Anton',sans-serif;font-size:16px;text-transform:uppercase;margin:0;color:#1a1a1a}
.dr-cl{background:none;border:0;font-size:28px;line-height:1;cursor:pointer;color:#1a1a1a;padding:0 4px}
.dr-body{flex:1;overflow-y:auto;padding:12px 20px}
.dr-empty{color:#888;text-align:center;padding:40px 0;font-size:14px}
.dr-ft{padding:16px 20px 20px;border-top:1px solid rgba(0,0,0,.1);background:#F5F0E8}
.dr-tot{display:flex;justify-content:space-between;font-family:'Anton',sans-serif;
        font-size:17px;text-transform:uppercase;color:#1a1a1a}
.ck{width:100%;margin-top:10px;background:#e8622a;color:#fff;border:0;border-radius:8px;
    padding:15px;font-family:'Anton',sans-serif;font-size:14px;text-transform:uppercase;
    letter-spacing:.04em;cursor:pointer;box-shadow:0 3px 0 #b4491d;transition:transform .12s}
.ck:hover{transform:translateY(-1px)}
.ck:active{transform:translateY(2px);box-shadow:0 1px 0 #b4491d}


/* ── Sélecteur de langue Mr Crousty (agent) ── */
/* Horizon fournit déjà un chevron SVG (.icon-caret) : ne PAS en ajouter un second. */
.language-selector{ position:relative; display:inline-flex; align-items:center; }
.localization-form__select{
  background:#F5F0E8 !important;
  color:#1a1a1a !important;
  border:2px solid #1a1a1a !important;
  border-radius:6px !important;
  font-family:'Anton',sans-serif !important;
  font-size:10px !important;
  text-transform:uppercase !important;
  letter-spacing:.05em !important;
  padding:6px 26px 6px 10px !important;
  line-height:1 !important;
  cursor:pointer;
  box-shadow:0 2px 0 #1a1a1a;
  transition:transform .12s, box-shadow .12s;
  appearance:none !important; -webkit-appearance:none !important;
  background-image:none !important;
}
.localization-form__select:hover{ transform:translateY(-1px); box-shadow:0 3px 0 #1a1a1a; }
.localization-form__select:active{ transform:translateY(1px); box-shadow:0 1px 0 #1a1a1a; }
.localization-form__select:focus-visible{ outline:2px solid #e8622a; outline-offset:2px; }
.localization-form__select option{ font-family:'Archivo',sans-serif; font-size:14px; background:#fff; color:#1a1a1a; text-transform:none; }
/* le chevron natif : le replacer DANS le cadre, sans décalage */
.language-selector .svg-wrapper.icon-caret{
  position:absolute; right:9px; top:50%; transform:translateY(-60%);
  pointer-events:none; color:#1a1a1a; width:10px; height:10px;
  display:flex; align-items:center; justify-content:center;
}
.language-selector .svg-wrapper.icon-caret svg{ width:10px; height:10px; }

/* ── Sélecteur de langue dans le menu mobile : IDENTIQUE au desktop ── */
.menu-drawer .localization-form__select{
  background:#F5F0E8 !important;
  color:#1a1a1a !important;
  border:2px solid #1a1a1a !important;
  border-radius:6px !important;
  font-size:10px !important;
  padding:6px 26px 6px 10px !important;
  box-shadow:0 2px 0 #1a1a1a !important;
}
.menu-drawer .language-selector .svg-wrapper.icon-caret{ color:#1a1a1a !important; }
/* le bloc qui contient le sélecteur : pas de fond, centré */
.menu-drawer__utility-links .localization-form,
.menu-drawer .localization-form{ background:transparent !important; display:inline-flex; justify-content:center; }

/* ── Label FRANCHISE : style <mark> comme dans les titres ── */
.menu-list__list-item a[href="/pages/franchise"]{
  background:#E8622A !important;
  color:#fff !important;
  border:0 !important;
  border-radius:3px !important;
  padding:4px 10px 6px !important;
  margin:0 2px !important;
  font-family:'Anton',sans-serif !important;
  text-transform:uppercase !important;
  letter-spacing:.04em !important;
  line-height:1 !important;
  height:auto !important; min-height:0 !important;
  align-self:center !important;
  display:inline-flex !important; align-items:center !important;
  transition:background .15s, transform .12s;
}
.menu-list__list-item a[href="/pages/franchise"]:hover{
  background:#C94E1B !important; color:#fff !important; transform:translateY(-1px);
}
.menu-list__list, .menu-list{ align-items:center !important; }

.menu-list__link.button-unstyled{
  font-family:'Anton',sans-serif !important;
  text-transform:uppercase !important;
  font-size:13px !important;
  letter-spacing:.04em !important;
  color:#1a1a1a !important;
}

/* menu mobile (fond violet) */
.menu-drawer__list-item--flat{
  display:flex !important; justify-content:center !important; width:100% !important;
}
.menu-drawer__list-item--flat a[href="/pages/franchise"]{
  background:#E8622A !important;
  color:#fff !important;
  border:0 !important;
  border-radius:4px !important;
  padding:2px 18px 8px !important;
  width:auto !important;
  flex:0 0 auto !important;
  margin:0 auto !important;
  display:inline-block !important;
}
.menu-drawer__list-item--flat a[href="/pages/franchise"]:hover,
.menu-drawer__list-item--flat a[href="/pages/franchise"]:active{
  background:#C94E1B !important; color:#fff !important;
}

/* ── Burger sur desktop : même menu plein écran que le mobile ── */
@media (min-width: 900px){
  /* afficher le burger */
  .header__drawer{ display:flex !important; align-items:center; }
  /* masquer la nav horizontale */
  .menu-list{ display:none !important; }
  /* le menu plein écran garde son style mobile */
  .menu-drawer{ max-width:none !important; width:100vw !important; }
  .menu-drawer__navigation{ min-height:70vh !important; }
  .menu-drawer__menu-item{ font-size:clamp(30px, 4vw, 48px) !important; }
}

/* bandeau du bas dans le menu plein écran : pas de bloc beige */
.menu-drawer__utility-links{ background:transparent !important; }
.menu-drawer__utility-links .localization-form,
.menu-drawer .localization-form{ background:transparent !important; }

/* bandeau bas du menu plein écran : transparent (override Horizon) */
.menu-drawer__utility-links,
.menu-drawer__footer,
.menu-drawer .menu-drawer__utility-links{ background:transparent !important; border:0 !important; }
.menu-drawer__utility-links > *{ background:transparent !important; }

/* ── Blog « Le Journal » aux couleurs Mr Crousty ──
   Horizon n'ajoute pas .template-article : cibler les conteneurs réels du blog. ── */
.blog-post-title h1, .blog-post-content h1{
  font-family:'Anton',sans-serif !important;
  letter-spacing:-.01em; color:#221F26 !important;
}
.blog-post-content h2, .blog-post-content h3,
.template-blog main h2, .template-blog main h3{
  font-family:'Anton',sans-serif !important; color:#221F26 !important;
}
.template-blog .blog-post-card, .template-blog article{
  background:#fff; border-radius:10px; overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,.08);
}
.template-blog .blog-post-card img, .template-blog article img{
  aspect-ratio:16/9; object-fit:cover; width:100%;
}
main p{ font-family:'Archivo',sans-serif; line-height:1.75; }
/* état vide : message clair au lieu d'une page blanche */
.template-blog .empty-state, .template-blog .blog--empty{
  text-align:center; padding:60px 20px; font-family:'Archivo',sans-serif; color:#6c6c6c;
}

/* ── Blog : état vide ── */
.mc-blog-empty{ background:#F7EFE0; padding:20px 20px 90px; }
.mc-blog-empty-inner{ max-width:620px; margin:0 auto; text-align:center; }
.mc-blog-empty-icon{ color:#E8622A; margin:0 auto 20px; width:52px; height:52px; }
.mc-blog-empty-icon svg{ width:52px; height:52px; }
.mc-blog-empty h2{ font-family:'Anton',sans-serif; font-size:clamp(28px,5vw,40px);
  text-transform:uppercase; color:#221F26; margin-bottom:16px; }
.mc-blog-empty h2 mark{ background:#E8622A; color:#fff; padding:0 10px 4px; border-radius:3px; }
.mc-blog-empty p{ font-family:'Archivo',sans-serif; font-size:16px; line-height:1.7;
  color:#5b5761; margin-bottom:28px; }
.mc-blog-empty-btns{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ── Footer : 3 succursales ── */
.mc-footer-col a strong{ display:block; color:#E8622A; font-family:'Anton',sans-serif;
  font-size:11px; letter-spacing:.04em; text-transform:uppercase; margin-bottom:2px; }
.mc-footer-col h4 + a, .mc-footer-col a + a{ margin-bottom:10px; }
.mc-footer-col a{ line-height:1.45; }

/* ── Page contact : succursales en cartes ── */
.page-contact main h1, body:has(.mc-branches) h1{ font-size:clamp(26px,4.2vw,40px) !important; }
.mc-branches{ display:grid; grid-template-columns:1fr; gap:14px;
  margin:26px auto 34px; text-align:left; }
@media (min-width:820px){
  /* le conteneur du thème est bridé en "narrow" : on élargit ce bloc seul */
  .mc-branches{ grid-template-columns:repeat(3,1fr);
    width:min(1040px, calc(100vw - 48px));
    max-width:none !important;   /* le thème impose max-width:341px sur les enfants du RTE */
    position:relative; left:50%; transform:translateX(-50%); }
}
.mc-branch{ background:#fff; border:2px solid #221F26; border-radius:10px; padding:16px 18px;
  box-shadow:0 2px 0 #221F26; }
.mc-branch h2{ font-family:'Anton',sans-serif !important; font-size:15px !important;
  text-transform:uppercase; letter-spacing:.02em; color:#221F26 !important;
  margin:0 0 8px !important; padding:0 !important; }
.mc-branch p{ font-family:'Archivo',sans-serif; font-size:14px; line-height:1.55; margin:0; color:#3a3740; }
.mc-branch a{ color:#E8622A; font-weight:700; text-decoration:none; }
.mc-branch a:hover{ text-decoration:underline; }
.mc-branch .mc-branch-actions{ margin-top:8px; display:flex; gap:14px; flex-wrap:wrap; }

/* ── Articles : images dans le corps du texte ── */
.article .rte, .blog-post .rte img,
.template-article rte-formatter img{
  max-width:none !important;          /* le RTE d'Horizon bride à 341px */
  width:min(860px, calc(100vw - 40px));
  height:auto; display:block;
  position:relative; left:50%; transform:translateX(-50%);
  border-radius:10px; margin:28px 0;
}
.article .rte, .blog-post .rte figure{ margin:28px 0; }
.article .rte, .blog-post .rte figcaption{
  font-family:'Archivo',sans-serif; font-size:13px; color:#6c6c6c;
  text-align:center; margin-top:8px; font-style:italic;
}
.article .rte, .blog-post .rte p{ font-family:'Archivo',sans-serif; line-height:1.75; }
.article .rte, .blog-post .rte h2{
  font-family:'Anton',sans-serif !important;
  font-size:clamp(20px,3vw,28px) !important; margin:34px 0 12px !important; }
.article .rte, .blog-post .rte a{ color:#E8622A; font-weight:700; }

/* ── Article sans photo : masquer le placeholder d'Horizon ──
   Horizon n'ajoute PAS de classe .template-article sur <body> : cibler le placeholder
   directement, il n'apparaît que quand aucune image n'est définie. ── */
.image-block__placeholder,
svg.image-block__placeholder,
.placeholder-image,
.image-block:has(.placeholder-image),
.image-block:has(> .image-block__placeholder){ display:none !important; }

/* ── Article : hiérarchie des titres ── */
.blog-post-content h2{
  font-family:'Anton',sans-serif !important;
  font-size:clamp(19px,2.4vw,26px) !important;
  line-height:1.25 !important;
  margin:36px 0 12px !important;
  color:#221F26 !important;
}
.blog-post-content h3{ font-size:clamp(17px,2vw,20px) !important; margin:26px 0 10px !important; }
.blog-post-content p{ font-family:'Archivo',sans-serif; line-height:1.75; margin:0 0 16px; }
.blog-post-content a{ color:#E8622A; font-weight:700; }


/* ══ BLOG « LE JOURNAL » — liste ══ */
.mcb{ background:#F5F0E8; padding:0 0 70px; }
.mcb-head{ text-align:center; padding:8px 20px 30px; }
.mcb-band{ background:#221F26; color:#F5F0E8; font-family:'Anton',sans-serif;
  font-size:11px; letter-spacing:.08em; padding:9px 12px; margin:0 -20px 30px;
  text-transform:uppercase; }
.mcb-title{ font-family:'Anton',sans-serif !important; font-size:clamp(34px,6vw,58px) !important;
  line-height:1.08 !important; color:#221F26 !important; margin:0 0 12px !important; text-transform:uppercase; }
.mcb-title mark{ background:#E8622A; color:#fff; padding:0 12px 5px; border-radius:4px; }
.mcb-sub{ font-family:'Archivo',sans-serif; font-size:15px; color:#5b5761; margin:0; }

.mcb-grid{ display:grid; grid-template-columns:1fr; gap:18px;
  max-width:1080px; margin:0 auto; padding:0 20px; }
@media (min-width:720px){ .mcb-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:720px){ .mcb-card.mcb-big{ grid-column:1 / -1; } }

.mcb-card{ border:3px solid #221F26; border-radius:14px; overflow:hidden;
  box-shadow:0 5px 0 #221F26; transition:transform .16s ease, box-shadow .16s ease; }
.mcb-card:hover{ transform:translate(-2px,-3px); box-shadow:0 8px 0 #221F26; }
.mcb-link{ display:block; text-decoration:none; height:100%; }

/* visuel : image OU aplat de couleur */
.mcb-visual{ position:relative; width:100%; aspect-ratio:16/9; max-height:210px; display:grid; place-items:center; overflow:hidden; }
.mcb-visual img{ width:100%; height:100%; object-fit:cover; display:block; }
.mcb-emo{ font-size:clamp(48px,9vw,84px); line-height:1; filter:drop-shadow(0 3px 0 rgba(0,0,0,.18)); }
.mcb-big .mcb-visual{ aspect-ratio:auto; height:230px; max-height:none; width:100%; }

.mcb-o .mcb-visual{ background:#E8622A; }
.mcb-v .mcb-visual{ background:#6B35D9; }
.mcb-n .mcb-visual{ background:#FF0055; }
.mcb-c .mcb-visual{ background:#221F26; }

.mcb-body{ background:#fff; padding:18px 20px 22px; }
.mcb-date{ font-family:'Archivo',sans-serif; font-size:11px; text-transform:uppercase;
  letter-spacing:.06em; color:#8a8590; display:block; margin-bottom:7px; }
.mcb-h{ font-family:'Anton',sans-serif !important; color:#221F26 !important;
  font-size:clamp(17px,2.2vw,21px) !important; line-height:1.22 !important; margin:0 0 9px !important; }
.mcb-big .mcb-h{ font-size:clamp(21px,3vw,28px) !important; }
.mcb-x{ font-family:'Archivo',sans-serif; font-size:14px; line-height:1.6; color:#4a4750; margin:0 0 14px; }
.mcb-cta{ font-family:'Anton',sans-serif; font-size:12px; letter-spacing:.03em; color:#E8622A; }
.mcb-card:hover .mcb-cta{ text-decoration:underline; }
.mcb-card:hover .mcb-h{ color:#E8622A !important; }

.mcb-pag{ display:flex; gap:14px; justify-content:center; margin-top:30px; }
.mcb-pag a{ font-family:'Anton',sans-serif; font-size:13px; color:#221F26;
  border:2px solid #221F26; border-radius:8px; padding:9px 16px; text-decoration:none; background:#fff; }

.mcb-foot{ text-align:center; margin-top:48px; }
.mcb-foot p{ font-family:'Anton',sans-serif; font-size:clamp(18px,2.6vw,24px);
  color:#221F26; margin:0 0 14px; text-transform:uppercase; }
.mcb-btn{ display:inline-block; background:#E8622A; color:#fff !important;
  font-family:'Anton',sans-serif; font-size:13px; letter-spacing:.03em;
  padding:13px 26px; border-radius:9px; border:2px solid #221F26;
  box-shadow:0 3px 0 #221F26; text-decoration:none; }
.mcb-btn:hover{ transform:translateY(-2px); box-shadow:0 5px 0 #221F26; }

/* ══════════════════════════════════════════════════════════
   MC ANIMATIONS — 0 Ko de ressources externes, CSS pur.
   Respecte prefers-reduced-motion (voir tout en bas).
   ══════════════════════════════════════════════════════════ */

/* ── 1. BANDEAU DÉFILANT INFINI ───────────────────────────
   Le contenu est dupliqué en JS, on translate de -50% :
   la boucle est invisible. */
.band{
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.band-track{
  display: inline-flex;
  will-change: transform;
  animation: mc-marquee 22s linear infinite;
}
.band-track > span{
  padding-right: 2.5rem;
  flex: 0 0 auto;
}
.band:hover .band-track{ animation-play-state: paused; }

@keyframes mc-marquee{
  from{ transform: translate3d(0,0,0); }
  to  { transform: translate3d(-50%,0,0); }
}

/* ── 2. APPARITION AU SCROLL ──────────────────────────────
   .mc-rise = état initial, .is-in = état visible.
   Posé par IntersectionObserver, donc aucun saut si le JS
   ne se charge pas : sans .is-in, on force la visibilité. */
.mc-rise{
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity .5s cubic-bezier(.22,.61,.36,1),
              transform .5s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.mc-rise.is-in{
  opacity: 1;
  transform: translate3d(0,0,0);
}
/* décalage en cascade dans une grille */
.mc-rise[data-d="1"]{ transition-delay: .06s; }
.mc-rise[data-d="2"]{ transition-delay: .12s; }
.mc-rise[data-d="3"]{ transition-delay: .18s; }
.mc-rise[data-d="4"]{ transition-delay: .24s; }
.mc-rise[data-d="5"]{ transition-delay: .30s; }

/* filet de sécurité : si le JS ne tourne pas, tout reste visible */
.no-js .mc-rise{ opacity: 1; transform: none; }

/* ── 3. PULSE SUR LE BOUTON D'ACHAT ───────────────────────
   Battement lent et discret. S'arrête au survol et au focus
   pour ne pas gêner le clic. */
.card-add{
  animation: mc-pulse 2.6s ease-in-out infinite;
  will-change: transform;
}
.card-add:hover,
.card-add:focus-visible,
.card-add:active{ animation: none; }

@keyframes mc-pulse{
  0%, 88%, 100%{ transform: scale(1); }
  92%          { transform: scale(1.10); }
  96%          { transform: scale(.97); }
}

/* confirmation visuelle après ajout au panier */
.card-add.is-added{
  animation: mc-pop .45s ease-out;
}
@keyframes mc-pop{
  0%  { transform: scale(1); }
  40% { transform: scale(1.35) rotate(-8deg); }
  100%{ transform: scale(1) rotate(0); }
}

/* pastille du panier qui tressaute quand le compte change */
.cart-bubble.is-bump,
[class*="cart"] .is-bump{ animation: mc-bump .4s ease-out; }
@keyframes mc-bump{
  0%{ transform: scale(1); } 45%{ transform: scale(1.3); } 100%{ transform: scale(1); }
}

/* ── ACCESSIBILITÉ — NON NÉGOCIABLE ───────────────────────
   Un visiteur qui a désactivé les animations dans son
   système ne doit rien subir. */
@media (prefers-reduced-motion: reduce){
  .band-track,
  .card-add,
  .card-add.is-added,
  .cart-bubble.is-bump{
    animation: none !important;
  }
  .mc-rise{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  *{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ══════════════════════════════════════════════════════════
   TIROIR PANIER — refonte à la charte Mr Crousty
   Crème #F7EFE0 · Orange #E8622A · Noir #221F26 · Archivo Black
   Bordures franches, ombres portées dures : même langage que
   les cartes produits et les boutons du reste du site.
   ══════════════════════════════════════════════════════════ */

.dr{
  position: fixed; top: 0; right: 0;
  height: 100dvh; width: min(410px, 94vw);
  background: #F7EFE0;                    /* crème, pas blanc */
  border-left: 3px solid #221F26;
  box-shadow: -6px 0 0 rgba(34,31,38,.14);
  display: flex; flex-direction: column;
  transform: translateX(105%);
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
  z-index: 9999;
}
.dr.on{ transform: translateX(0); }

/* ── EN-TÊTE ── */
.dr-hd{
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  background: #221F26;                    /* bandeau noir signature */
  border-bottom: 3px solid #221F26;
}
.dr-hd h3{
  font-family: 'Anton', sans-serif;
  font-size: 16px; letter-spacing: .04em;
  text-transform: uppercase;
  color: #F7EFE0; margin: 0;
}
.dr-cl{
  background: #E8622A; border: 2px solid #F7EFE0;
  color: #fff; width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 19px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding: 0; transition: transform .15s, background .15s;
}
@media (hover: hover) and (pointer: fine){
  .dr-cl:hover{ background: #FF0055; transform: rotate(90deg); }
}

/* ── CORPS ── */
.dr-body{ flex: 1; overflow-y: auto; padding: 14px 16px; }

.dr-item{
  display: flex; align-items: center; gap: 11px;
  background: #fff;
  border: 2px solid #221F26;
  border-radius: 10px;
  padding: 9px 11px;
  margin-bottom: 10px;
  box-shadow: 3px 3px 0 rgba(34,31,38,.9);
  transition: transform .15s, box-shadow .15s;
}
.dr-item:hover{
  transform: translate(-1px,-1px);
  box-shadow: 5px 5px 0 rgba(34,31,38,.9);
}
.dr-item__img{
  width: 52px; height: 52px; flex: 0 0 52px;
  border-radius: 7px; object-fit: cover;
  border: 2px solid #221F26;
  background: #6B35D9;
}
.dr-item__txt{ flex: 1; min-width: 0; }
.dr-item__name{
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 12px; line-height: 1.25;
  text-transform: uppercase; color: #221F26;
  overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.dr-item__qty{
  display: inline-block; margin-top: 3px;
  background: #6B35D9; color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 10px; letter-spacing: .03em;
  padding: 2px 7px; border-radius: 20px;
}
.dr-item__price{
  font-family: 'Anton', sans-serif;
  font-size: 13px; color: #E8622A;
  white-space: nowrap;
}
.dr-rm{
  background: none; border: 0;
  color: #221F26; opacity: 1;
  font-weight: 700; font-size: 22px; line-height: 1; cursor: pointer;
  padding: 0 2px; transition: opacity .15s, color .15s, transform .15s;
}


.dr-empty{
  text-align: center; padding: 50px 16px;
  font-family: 'Anton', sans-serif;
  font-size: 13px; text-transform: uppercase;
  color: #221F26; opacity: .45;
}

/* ── PIED ── */
.dr-ft{
  padding: 15px 18px 18px;
  background: #221F26;                    /* noir : le total tranche */
  border-top: 3px solid #221F26;
}
.dr-tot{
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: 'Anton', sans-serif;
  font-size: 17px; text-transform: uppercase;
  color: #F7EFE0;
}
.dr-tot #tot{ color: #E8622A; font-size: 21px; }
.dr-note{
  font-size: 10.5px; color: rgba(247,239,224,.6);
  margin: 5px 0 11px; text-align: center;
  text-transform: uppercase; letter-spacing: .03em;
}
.ck{
  width: 100%;
  background: #E8622A; color: #fff;
  border: 2px solid #F7EFE0; border-radius: 9px;
  padding: 15px;
  font-family: 'Anton', sans-serif;
  font-size: 14px; text-transform: uppercase; letter-spacing: .04em;
  cursor: pointer;
  box-shadow: 0 3px 0 rgba(247,239,224,.35);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.ck:hover{
  background: #E8622A;
  transform: translateY(-2px);
  box-shadow: 0 5px 0 rgba(247,239,224,.35);
}
.ck:active{ transform: translateY(1px); box-shadow: 0 1px 0 rgba(247,239,224,.35); }

.ov2{
  position: fixed; inset: 0;
  background: rgba(34,31,38,.55);
  opacity: 0; visibility: hidden;
  transition: opacity .25s; z-index: 9998;
}
.ov2.on{ opacity: 1; visibility: visible; }

/* ── CONFIRMATION D'AJOUT — ORANGE, PAS VERT ──
   Le vert #2e9e5b ne figure pas dans la charte. */
.card-add.is-added{
  background: #221F26 !important;
  box-shadow: 0 2px 0 #E8622A !important;
  color: #fff !important;
}

@media (max-width: 480px){
  .dr{ width: 100vw; border-left: 0; }
  .dr-item__img{ width: 46px; height: 46px; flex-basis: 46px; }
}

/* ── TIROIR OUVERT : le fond ne bouge plus ──────────────
   Sans ce verrou, iOS continue de faire défiler la page
   sous le tiroir : l'écran semble flotter. */
body.mc-noscroll{ overflow: hidden; touch-action: none; }
.dr{ overscroll-behavior: contain; }
.dr-body{ overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
.ov2{ touch-action: none; }

/* X de suppression — noir franc, bien visible */
.dr-rm{
  color: #221F26 !important;
  opacity: 1 !important;
  font-weight: 700;
  font-size: 22px;
}
@media (hover: hover) and (pointer: fine){
  .dr-rm:hover{ color: #FF0055 !important; transform: scale(1.2); }
}

/* note du panier : le délai doit sauter aux yeux */
.dr-note{
  font-family:'Anton',sans-serif !important;
  font-size:11px !important;
  color:#E8622A !important;
  letter-spacing:.02em;
  text-transform:uppercase;
  opacity:1 !important;
}

/* ── PAGE COMMANDER — choix de succursale ───────────────── */
.mc-order-sec{ background:#F7EFE0; padding:56px 20px 72px; }
.mc-order-grid{
  display:grid; grid-template-columns:1fr; gap:18px;
  max-width:1100px; margin:34px auto 0;
}
@media (min-width:760px){ .mc-order-grid{ grid-template-columns:repeat(3,1fr); } }

.mc-branch-card{
  background:#fff; border:3px solid #221F26; border-radius:14px;
  padding:22px 20px 24px; display:flex; flex-direction:column;
  box-shadow:5px 5px 0 rgba(34,31,38,.9);
  transition:transform .15s, box-shadow .15s;
}
.mc-branch-card:hover{ transform:translate(-2px,-2px); box-shadow:8px 8px 0 rgba(34,31,38,.9); }

.mc-branch-head{ display:flex; align-items:center; gap:8px; margin-bottom:8px; }
.mc-branch-pin{ font-size:20px; line-height:1; }
.mc-branch-card h2{
  font-family:'Anton',sans-serif; font-size:17px; line-height:1.15;
  text-transform:uppercase; color:#221F26; margin:0;
}
.mc-branch-addr{ font-size:13.5px; line-height:1.45; color:#221F26; opacity:.8; margin:0 0 6px; }
.mc-branch-note{
  font-family:'Anton',sans-serif; font-size:10.5px; letter-spacing:.03em;
  text-transform:uppercase; color:#6B35D9; margin:0 0 10px;
}
.mc-branch-btn{
  margin-top:auto; display:block; text-align:center; text-decoration:none;
  background:#E8622A; color:#fff; border:2px solid #221F26; border-radius:9px;
  padding:14px 12px; font-family:'Anton',sans-serif; font-size:13px;
  text-transform:uppercase; letter-spacing:.03em;
  box-shadow:0 3px 0 #221F26; transition:transform .15s, box-shadow .15s;
}
@media (hover:hover) and (pointer:fine){
  .mc-branch-btn:hover{ transform:translateY(-2px); box-shadow:0 5px 0 #221F26; }
}
.mc-branch-btn.is-soon{
  background:#F7EFE0; color:#221F26; opacity:.55; box-shadow:0 3px 0 rgba(34,31,38,.35);
  cursor:default;
}
.mc-branch-map{
  display:block; text-align:center; margin-top:10px;
  font-size:12px; color:#221F26; opacity:.65; text-decoration:underline;
}

/* WhatsApp */
.mc-wa-block{
  max-width:1100px; margin:40px auto 0; padding:26px 20px;
  background:#221F26; border-radius:14px; text-align:center;
}
.mc-wa-lead{
  font-family:'Anton',sans-serif; font-size:14px; text-transform:uppercase;
  color:#F7EFE0; margin:0 0 14px; letter-spacing:.02em;
}
.mc-wa-btn{
  display:inline-block; text-decoration:none;
  background:#E8622A; color:#fff; border:2px solid #F7EFE0; border-radius:9px;
  padding:14px 26px; font-family:'Anton',sans-serif; font-size:13px;
  text-transform:uppercase; letter-spacing:.03em; box-shadow:0 3px 0 rgba(247,239,224,.35);
}

/* bloc corporatif */
.mc-order-corpo{
  max-width:1100px; margin:40px auto 0; padding:28px 22px;
  background:#6B35D9; border-radius:14px; text-align:center;
}
.mc-order-corpo h3{
  font-family:'Anton',sans-serif; font-size:16px; text-transform:uppercase;
  color:#fff; margin:0 0 8px;
}
.mc-order-corpo p{ color:rgba(255,255,255,.88); font-size:14px; margin:0 0 16px; }

/* ── FICHE PRODUIT (consultation, sans achat) ───────────── */
.mc-prod-sec{ background:#F7EFE0; padding:40px 20px 64px; }
.mc-prod-wrap{ display:grid; grid-template-columns:1fr; gap:26px; max-width:1100px; margin:0 auto; }
@media (min-width:760px){ .mc-prod-wrap{ grid-template-columns:1fr 1fr; align-items:center; gap:40px; } }
.mc-prod-img{ width:100%; height:auto; display:block; border:3px solid #221F26; border-radius:14px;
  box-shadow:6px 6px 0 rgba(34,31,38,.9); background:#fff; aspect-ratio:3/2; object-fit:cover; }
.mc-prod-title{ font-family:'Anton',sans-serif; font-size:clamp(24px,6vw,38px); line-height:1.05;
  text-transform:uppercase; color:#221F26; margin:10px 0 6px; }
.mc-prod-price{ font-family:'Anton',sans-serif; font-size:26px; color:#E8622A; margin:0 0 14px; }
.mc-prod-desc{ font-size:15px; line-height:1.6; color:#221F26; opacity:.85; margin:0 0 22px; }
.mc-prod-cta{ display:inline-block; }
.mc-prod-back{ display:block; margin-top:14px; font-size:13px; color:#221F26; opacity:.65; text-decoration:underline; }

/* ── ANTON : le surlignage <mark> doit suivre la ligne ─────
   Anton a des capitales plus hautes qu'Archivo Black : un <mark>
   inline étirait son fond à 97px pour une ligne de 65px et mordait
   la ligne du dessus. inline-block + padding vertical nul le borne. */
.hero h1 mark,
.sec-title mark,
h1 mark, h2 mark {
  display: inline-block;
  padding-top: 0;
  padding-bottom: 0;
  line-height: inherit;
  vertical-align: baseline;
}

/* ── FILTRES + BANDEAU : centrage, espacement, remplissage ──
   Les pilules étaient collées à gauche avec 8px d'écart ; le bandeau
   avait un texte de 12px dans une bande de 46px, donc beaucoup de vide
   et des trous visibles pendant le défilement. */

/* Filtres centrés, plus d'air entre chaque bulle */
.pills {
  justify-content: center;
  gap: 14px;
  padding: 16px 20px;
}
@media (max-width: 860px) {
  /* sur mobile la barre défile : on repasse à gauche pour ne pas
     masquer la première pilule */
  .pills { justify-content: flex-start; gap: 10px; }
}
.pill { padding: 10px 20px; letter-spacing: .04em; }

/* Bandeau : texte plus gros, il remplit la bande */
.band {
  font-size: 19px !important;
  letter-spacing: .06em;
  padding: 10px 0 !important;
  line-height: 1.35 !important;
}
@media (max-width: 860px) {
  .band { font-size: 15px !important; padding: 9px 0 !important; }
}
/* écart constant entre les segments : plus de trou au raccord */
.band-track > span { padding-right: 2rem; }
