
:root {
  --bg: #0b0d0d;
  --text: #fff;
  --muted: #bfc4c4;
  --dark: #111;
  --red: #8d111d;
  --red2: #b91c2b;
  --gold: #f2bd32;
  --border: rgba(255,255,255,.12);
  --shadow: 0 24px 70px rgba(0,0,0,.38);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(141,17,29,.28), transparent 34rem),
    radial-gradient(circle at top left, rgba(242,189,50,.1), transparent 28rem),
    linear-gradient(135deg,#080909,#151818 52%,#080909);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  z-index: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.site-shell { position: relative; z-index: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(9,10,10,.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.navbar, .hero, .menu-section, .infos, .contact-panel, .footer {
  width: min(1180px, calc(100% - 28px));
  margin-inline: auto;
}
.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand__logo {
  width: 44px;
  height: 68px;
  object-fit: contain;
  border-radius: 0;
  border: 0;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.36));
}
.brand__text { display: grid; line-height: .92; }
.brand__text span, .brand__text strong, .hero h1, .menu-top h2, .contact-panel h2 {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.brand__text span { font-size: .92rem; }
.brand__text strong {
  color: var(--red2);
  font-size: 1.48rem;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}
.navbar__actions { display: flex; align-items: center; gap: 10px; }
.nav-link {
  color: var(--muted);
  font-weight: 850;
  font-size: .92rem;
  padding: 11px 13px;
  border-radius: 999px;
  transition: .22s ease;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.08); }

.call-btn, .btn, .product-modal__bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 950;
  transition: .22s ease;
  cursor: pointer;
}
.call-btn, .btn--primary, .product-modal__bottom a {
  color: #111;
  background: linear-gradient(135deg,#fff,#ffe7a6 48%,var(--gold));
  box-shadow: 0 16px 34px rgba(242,189,50,.18);
}
.call-btn:hover, .btn:hover, .product-modal__bottom a:hover { transform: translateY(-2px); }

.hero {
  padding: 58px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 34px;
  align-items: center;
}
.hero__eyebrow, .section-kicker {
  color: var(--gold);
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .76rem;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  margin-bottom: 18px;
  color: #fff;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border);
  border-radius: 999px;
  animation: fadeUp .55s ease both;
}
.hero__eyebrow .eyebrow-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--gold);
}
.hero__eyebrow .eyebrow-text {
  width: auto;
  height: auto;
  flex: 1 1 auto;
  min-width: 0;
  background: transparent;
  border-radius: 0;
}
.hero h1 {
  font-size: clamp(3.6rem, 9vw, 7.8rem);
  line-height: .86;
  animation: fadeUp .6s ease .08s both;
}
.hero h1 em {
  display: inline-block;
  color: var(--red);
  font-style: normal;
  text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
}
.hero__text {
  max-width: 640px;
  margin-top: 20px;
  color: #dedede;
  line-height: 1.75;
  font-size: 1.04rem;
  animation: fadeUp .6s ease .16s both;
}

.order-notice {
  display: grid;
  gap: 5px;
  max-width: 680px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 2px solid rgba(242,189,50,.72);
  background: linear-gradient(135deg, rgba(242,189,50,.18), rgba(141,17,29,.14));
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
  animation: fadeUp .6s ease .2s both;
}
.order-notice strong {
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .86rem;
}
.order-notice span {
  color: #fff;
  font-weight: 850;
  line-height: 1.45;
}

.opening-hours {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
  animation: fadeUp .6s ease .22s both;
}
.opening-hours span {
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.opening-hours strong {
  font-size: clamp(.96rem, 2.25vw, 1.16rem);
  font-weight: 950;
  letter-spacing: -.02em;
  white-space: pre-line;
  line-height: 1.28;
}
.opening-hours em {
  color: var(--red);
  font-style: normal;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  animation: fadeUp .6s ease .24s both;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  animation: fadeUp .6s ease .32s both;
}
.hero__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: .84rem;
  font-weight: 900;
}
.btn--ghost { border: 1px solid var(--border); background: rgba(255,255,255,.07); color: #fff; }
.btn--delivery {
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, var(--red), var(--red2));
  box-shadow: 0 16px 34px rgba(141,17,29,.26);
}

.hero__visual { animation: floatIn .7s ease .16s both; }
.phone-preview {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  padding: 14px;
}
.phone-preview::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(141,17,29,.34);
  filter: blur(14px);
}
.phone-preview__top, .phone-preview__bottom, .phone-preview__image { position: relative; z-index: 1; }
.phone-preview__top {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 8px 14px;
}
.phone-preview__top img { width: 42px; height: 70px; border-radius: 0; object-fit: contain; filter: drop-shadow(0 10px 18px rgba(0,0,0,.28)); }
.phone-preview__top strong, .phone-preview__bottom strong { display: block; font-size: 1rem; font-weight: 950; }
.phone-preview__top span, .phone-preview__bottom span { display: block; color: var(--muted); font-size: .86rem; margin-top: 3px; }
.phone-preview__image {
  height: 430px;
  border-radius: 26px;
  overflow: hidden;
  background: #111;
}
.phone-preview__image img { width: 100%; height: 100%; object-fit: cover; transition: .45s ease; }
.phone-preview:hover .phone-preview__image img { transform: scale(1.045); }
.phone-preview__popular, .phone-preview__product {
  position: absolute;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 950;
}
.phone-preview__popular {
  top: 18px;
  right: 18px;
  color: #fff;
  background: var(--red);
  border: 2px solid var(--gold);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.phone-preview__product {
  left: 18px;
  bottom: 18px;
  color: #111;
  background: var(--gold);
}
.phone-preview__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px 8px 4px;
}
.phone-preview__bottom b { color: #111; background: #fff; border-radius: 999px; padding: 9px 10px; }

.menu-section { padding: 44px 0 26px; }
.menu-top {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 360px);
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}
.menu-top h2, .contact-panel h2 {
  margin-top: 7px;
  font-size: clamp(2.25rem, 7vw, 4.2rem);
  line-height: .92;
}
.search-box label { display: block; color: var(--muted); font-size: .82rem; font-weight: 850; margin-bottom: 8px; }
.search-box input {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  outline: 0;
  padding: 0 16px;
  color: #fff;
  background: rgba(255,255,255,.08);
}
.search-box input:focus { border-color: rgba(242,189,50,.8); box-shadow: 0 0 0 5px rgba(242,189,50,.09); }

.category-tabs {
  position: sticky;
  top: 77px;
  z-index: 60;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 13px 0;
  margin-bottom: 14px;
  background: linear-gradient(180deg, rgba(12,14,14,.96), rgba(12,14,14,.78));
  backdrop-filter: blur(18px);
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }
.category-tab {
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  color: #fff;
  padding: 11px 14px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 950;
  cursor: pointer;
  transition: .2s ease;
}
.category-tab:hover, .category-tab.is-active { color: #111; background: var(--gold); border-color: var(--gold); }

.menu-note {
  margin: -2px 0 18px;
  color: rgba(255,255,255,.62);
  font-size: .86rem;
  line-height: 1.55;
}
.menu-list { display: grid; gap: 28px; }
.category-block { scroll-margin-top: 152px; }
.category-block__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 13px;
}
.category-block__head h3 {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: clamp(1.7rem, 5vw, 2.5rem);
}
.category-block__head span { color: var(--muted); font-weight: 850; font-size: .88rem; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.product-card {
  position: relative;
  min-height: 174px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 172px;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  color: #111;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
  cursor: pointer;
  text-align: left;
  transition: .22s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 26px 55px rgba(0,0,0,.24); }
.product-card__body { min-width: 0; display: flex; flex-direction: column; }
.product-card__category {
  display: inline-flex;
  width: fit-content;
  color: #fff;
  background: #111;
  border-radius: 999px;
  padding: 6px 9px;
  margin-bottom: 9px;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.product-card h4 {
  color: var(--red);
  font-size: 1.08rem;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -.025em;
}
.product-card p {
  color: #3f3f3f;
  line-height: 1.44;
  font-size: .9rem;
  margin-top: 7px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}
.product-card__price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 11px;
  border-radius: 999px;
  color: #111;
  background: var(--gold);
  font-weight: 950;
}
.product-card__more { color: #666; font-size: .82rem; font-weight: 850; }
.product-card__image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  min-height: 146px;
}
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: .35s ease; }
.product-card:hover .product-card__image img { transform: scale(1.055); }
.empty-state {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.07);
  color: var(--muted);
  line-height: 1.6;
}

.infos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  padding: 28px 0 18px;
}
#livraison { scroll-margin-top: 100px; }
.infos article {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 16px 38px rgba(0,0,0,.17);
}
.infos__hours {
  border-color: rgba(242,189,50,.42) !important;
  background: linear-gradient(135deg, rgba(242,189,50,.17), rgba(255,255,255,.08)) !important;
}
.infos__hours p {
  color: #fff !important;
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: -.03em;
  line-height: 1.45;
  white-space: pre-line;
}
.infos__delivery {
  grid-column: span 2;
  position: relative;
  overflow: hidden;
  border-color: rgba(242,189,50,.46) !important;
  background:
    radial-gradient(circle at top right, rgba(242,189,50,.18), transparent 16rem),
    linear-gradient(135deg, rgba(141,17,29,.42), rgba(255,255,255,.08)) !important;
}
.infos__delivery::after {
  content: "LIVRAISON";
  position: absolute;
  right: -8px;
  bottom: -18px;
  color: rgba(255,255,255,.055);
  font-family: "Anton", sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  letter-spacing: .08em;
  pointer-events: none;
}
.infos__delivery h3,
.infos__delivery p,
.delivery-prices,
.delivery-steps,
.delivery-sms-btn {
  position: relative;
  z-index: 1;
}
.delivery-prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 15px;
}
.delivery-price {
  padding: 14px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(0,0,0,.32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.delivery-price small {
  display: block;
  color: #fff;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1.15;
  text-transform: uppercase;
  opacity: .88;
}
.delivery-price strong {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-family: "Anton", sans-serif;
  font-size: clamp(2.05rem, 5vw, 3rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: .02em;
  text-shadow: 0 10px 26px rgba(0,0,0,.32);
}
.delivery-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.delivery-step {
  padding: 15px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(0,0,0,.24);
}
.delivery-step strong {
  display: block;
  color: #fff;
  font-weight: 950;
  line-height: 1.25;
  margin-bottom: 7px;
}
.delivery-step p {
  color: rgba(255,255,255,.78) !important;
  font-size: .9rem;
  line-height: 1.45;
}
.delivery-payment {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.09);
  color: #fff !important;
  font-weight: 850;
}
.delivery-sms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin-top: 14px;
  padding: 0 18px;
  border-radius: 999px;
  color: #111;
  background: linear-gradient(135deg,#fff,#ffe7a6 48%,var(--gold));
  box-shadow: 0 16px 34px rgba(242,189,50,.18);
  font-weight: 950;
  transition: .22s ease;
}
.delivery-sms-btn:hover { transform: translateY(-2px); }
.infos span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--gold);
  font-weight: 950;
  margin-bottom: 12px;
}
.infos h3 { font-size: 1.12rem; margin-bottom: 8px; }
.infos p, .contact-panel p, .contact-panel small { color: #dfdfdf; line-height: 1.55; }

.contact-panel {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  padding: clamp(24px, 5vw, 44px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(141,17,29,.95), rgba(35,6,9,.98));
  box-shadow: var(--shadow);
}
.contact-panel::after {
  content: "PIXOU FOOD";
  position: absolute;
  right: -18px;
  bottom: -20px;
  color: rgba(255,255,255,.06);
  font-family: "Anton", sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: .06em;
  white-space: nowrap;
}
.contact-panel > * { position: relative; z-index: 1; }
.contact-panel p { max-width: 700px; margin-top: 12px; }
.contact-panel small { display: block; margin-top: 10px; color: rgba(255,255,255,.78); }

.instagram-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 12px;
  color: rgba(255,255,255,.82);
  font-size: .92rem;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 205, 43, .45);
}
.instagram-note::before {
  content: "↗";
  color: var(--yellow);
  font-weight: 900;
}
.instagram-note:hover { color: #fff; border-bottom-color: var(--yellow); }
.contact-panel__actions { display: grid; gap: 10px; min-width: 260px; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 170px;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 34px;
  font-size: .9rem;
}
.footer__main { display: grid; gap: 6px; }
.footer__legal-note { color: rgba(255,255,255,.58); font-size: .84rem; line-height: 1.45; }
.footer__legal-link { width: fit-content; }
.footer a { color: #fff; font-weight: 850; }

.mobile-call {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 18px;
  color: #111;
  background: linear-gradient(135deg, #fff, var(--gold));
  box-shadow: 0 18px 55px rgba(0,0,0,.46);
  font-weight: 950;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: end center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition: .22s ease;
}
.product-modal.is-open { opacity: 1; visibility: visible; }
.product-modal__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.product-modal__card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(90vh, 760px);
  overflow: auto;
  border-radius: 30px;
  background: #fff;
  color: #111;
  box-shadow: var(--shadow);
  transform: translateY(24px) scale(.98);
  transition: .22s ease;
}
.product-modal.is-open .product-modal__card { transform: translateY(0) scale(1); }
.product-modal__close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}
.product-modal__card > img { width: 100%; height: 340px; object-fit: cover; background: #111; }
.product-modal__body { padding: 20px; }
.product-modal__body > span {
  display: inline-flex;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .75rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.product-modal__body h3 { color: var(--red); font-size: 1.7rem; line-height: 1.08; margin-bottom: 9px; }
.product-modal__body p { color: #333; line-height: 1.58; }
.product-modal__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}
.product-modal__bottom strong { font-size: 1.45rem; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatIn { from { opacity: 0; transform: translateY(24px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero__visual { max-width: 560px; }
  .menu-top, .contact-panel { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .infos { grid-template-columns: 1fr; }
  .infos__delivery { grid-column: 1 / -1; }
  .delivery-prices,
  .delivery-steps { grid-template-columns: 1fr; }
  .delivery-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 15px;
  }
  .delivery-price strong { margin-top: 0; }
  .contact-panel__actions { min-width: 0; }
}
@media (max-width: 640px) {
  .navbar { min-height: 66px; }
  .brand__logo { width: 38px; height: 58px; border-radius: 0; }
  .brand__text span { font-size: .78rem; }
  .brand__text strong { font-size: 1.12rem; }
  .nav-link, .call-btn { display: none; }
  .hero { padding-top: 34px; }
  .hero h1 { font-size: clamp(3.3rem, 17vw, 5.4rem); }
  .hero__actions .btn { width: 100%; }
  .delivery-sms-btn { width: 100%; }
  .opening-hours {
    display: grid;
    width: 100%;
    justify-items: center;
    border-radius: 22px;
    text-align: center;
  }
  .opening-hours strong { white-space: pre-line; }
  .phone-preview__image { height: 330px; }
  .category-tabs { top: 66px; }
  .category-block { scroll-margin-top: 132px; }
  .category-block__head { align-items: start; flex-direction: column; gap: 5px; }
  .product-card { min-height: 142px; grid-template-columns: 1fr 118px; border-radius: 20px; padding: 11px; gap: 10px; }
  .product-card__image { min-height: 118px; border-radius: 16px; }
  .product-card__category { display: none; }
  .product-card h4 { font-size: 1rem; }
  .product-card p { font-size: .82rem; -webkit-line-clamp: 2; }
  .product-card__more { display: none; }
  .product-card__bottom { padding-top: 9px; }
  .product-card__price { min-height: 32px; font-size: .88rem; }
  .product-modal { padding: 0; }
  .product-modal__card { width: 100%; max-height: 92vh; border-radius: 28px 28px 0 0; }
  .product-modal__card > img { height: 280px; }
  .mobile-call { display: flex; }
  .footer { flex-direction: column; padding-bottom: 92px; }
}
@media (max-width: 380px) {
  .product-card { grid-template-columns: 1fr 104px; }
  .product-card__image { min-height: 104px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
}
.language-switcher__btn {
  min-width: 38px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: transparent;
  font-size: .78rem;
  font-weight: 950;
  cursor: pointer;
  transition: .2s ease;
}
.language-switcher__btn:hover,
.language-switcher__btn.is-active {
  color: #111;
  background: var(--gold);
}
@media (max-width: 640px) {
  .navbar__actions { gap: 6px; }
  .language-switcher { padding: 3px; }
  .language-switcher__btn { min-width: 34px; height: 30px; font-size: .72rem; }
}
@media (max-width: 380px) {
  .language-switcher__btn { min-width: 30px; height: 28px; font-size: .68rem; }
}

.language-choice {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.language-choice.is-open { opacity: 1; visibility: visible; }
.language-choice__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 6, .82);
  backdrop-filter: blur(14px);
}
.language-choice__card {
  position: relative;
  width: min(460px, 100%);
  padding: 30px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(242,189,50,.18), transparent 16rem),
    linear-gradient(145deg, rgba(18,20,20,.98), rgba(9,10,10,.98));
  box-shadow: 0 30px 90px rgba(0,0,0,.58);
  text-align: center;
  transform: translateY(14px) scale(.97);
  transition: transform .24s ease;
}
.language-choice.is-open .language-choice__card { transform: translateY(0) scale(1); }
.language-choice__logo {
  width: 96px;
  height: 118px;
  object-fit: contain;
  margin: 0 auto 8px;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.42));
}
.language-choice__badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #151515;
  background: var(--gold);
  font-size: .74rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.language-choice h2 {
  font-family: "Anton", sans-serif;
  color: #fff;
  font-size: clamp(2rem, 7vw, 3.2rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.language-choice p { color: var(--muted); margin-bottom: 22px; }
.language-choice__buttons { display: grid; gap: 10px; }
.language-choice__buttons button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  color: #fff;
  background: rgba(255,255,255,.07);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.language-choice__buttons button:hover {
  transform: translateY(-2px);
  border-color: rgba(242,189,50,.7);
  background: rgba(242,189,50,.14);
}
.language-choice__buttons strong { font-weight: 950; }
.language-choice__buttons span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 32px;
  border-radius: 999px;
  color: #151515;
  background: var(--gold);
  font-size: .8rem;
  font-weight: 950;
}
body.language-choice-open { overflow: hidden; }
@media (max-width: 640px) {
  .language-choice { padding: 14px; }
  .language-choice__card { padding: 24px 18px; border-radius: 26px; }
  .language-choice__logo { width: 82px; height: 102px; }
}

/* Correctif mobile : empêche le visuel "Populaire" de laisser apparaître un angle rouge carré derrière le bloc arrondi. */
.phone-preview,
.phone-preview__image {
  isolation: isolate;
}

.phone-preview__image {
  clip-path: inset(0 round 26px);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  transform: translateZ(0);
}

.phone-preview__image img {
  border-radius: inherit;
  transform: translateZ(0);
}

.phone-preview__popular {
  z-index: 3;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .24);
}

@media (max-width: 640px) {
  .phone-preview {
    border-radius: 30px;
  }

  .phone-preview__image {
    border-radius: 24px;
    clip-path: inset(0 round 24px);
  }

  .phone-preview__popular {
    top: 14px;
    right: 14px;
  }
}

/* Correctif iPhone Safari : le badge "Populaire" est sorti du bloc image clippé,
   puis le glow rouge décoratif est supprimé sur mobile pour éviter les artefacts carrés WebKit. */
.phone-preview,
.phone-preview__image,
.phone-preview__media {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.phone-preview {
  isolation: isolate;
  background-clip: padding-box;
}

.phone-preview__media {
  overflow: visible;
  transform: translateZ(0);
}

.phone-preview__image {
  z-index: 1;
  overflow: hidden;
  clip-path: inset(0 round 26px);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  transform: translateZ(0);
}

.phone-preview__image img {
  display: block;
  border-radius: inherit;
  transform: translateZ(0);
}

.phone-preview__popular {
  z-index: 4;
  transform: translateZ(0);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .24);
}

@media (max-width: 640px) {
  .phone-preview {
    overflow: hidden;
    border-radius: 30px;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    transform: translateZ(0);
  }

  .phone-preview::before {
    display: none;
  }

  .phone-preview__media,
  .phone-preview__image {
    border-radius: 24px;
  }

  .phone-preview__image {
    clip-path: inset(0 round 24px);
  }

  .phone-preview__popular {
    top: 14px;
    right: 14px;
  }
}

/* Dernier override : le badge est positionné sur son wrapper, pas sur l'image. */
.phone-preview__media {
  position: relative !important;
  z-index: 1 !important;
  border-radius: 26px !important;
  overflow: visible !important;
  isolation: isolate !important;
}

.phone-preview__popular {
  position: absolute !important;
}

@media (max-width: 640px) {
  .phone-preview__media {
    border-radius: 24px !important;
  }
}

/* iPhone mobile : on garde le coin rouge sans pseudo-element qui depasse.
   L'effet rouge est integre au background du bloc, donc Safari le coupe correctement avec le border-radius. */
@media (max-width: 640px) {
  .phone-preview {
    background:
      radial-gradient(circle at 100% 0%, rgba(141, 17, 29, .48) 0 72px, rgba(141, 17, 29, .22) 112px, rgba(141, 17, 29, 0) 178px),
      rgba(255, 255, 255, .08) !important;
  }

  .phone-preview::before {
    display: none !important;
  }
}


/* Module commande niveau 1 */
.nav-order-btn {
  border: 0;
  color: #111;
  background: var(--gold);
  font-weight: 950;
}

.modal-add-btn,
.add-to-cart-main,
.send-order-btn {
  border: 0;
  color: #111;
  background: linear-gradient(135deg,#fff,#ffe7a6 48%,var(--gold));
  box-shadow: 0 14px 30px rgba(242,189,50,.22);
  font-weight: 950;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
}

.modal-add-btn:hover,
.add-to-cart-main:hover,
.send-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(242,189,50,.28);
}

.modal-add-btn {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
}

.product-order-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.product-order-form label,
.order-form label {
  display: grid;
  gap: 7px;
  color: #111;
  font-size: .84rem;
  font-weight: 900;
}

.product-order-form input,
.product-order-form textarea,
.product-order-form select,
.order-form input,
.order-form textarea,
.order-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 15px;
  padding: 11px 13px;
  color: #111;
  background: #f7f7f7;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.product-order-form textarea,
.order-form textarea {
  resize: vertical;
  min-height: 86px;
}

.product-order-form input:focus,
.product-order-form textarea:focus,
.product-order-form select:focus,
.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
  border-color: rgba(185,28,43,.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(185,28,43,.10);
}

.product-order-form__grid,
.order-form__grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
}

.product-order-form__extras {
  display: grid;
  gap: 9px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(141,17,29,.06);
  border: 1px solid rgba(141,17,29,.12);
}

.option-group {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(17,17,17,.04);
  border: 1px solid rgba(0,0,0,.08);
}

.option-group__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  color: #111;
}

.option-group__head strong {
  font-size: .86rem;
  font-weight: 950;
}

.option-group__head small {
  color: rgba(17,17,17,.56);
  font-size: .72rem;
  font-weight: 800;
  text-align: right;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice-pill {
  display: inline-flex !important;
  align-items: center;
  gap: 7px !important;
  width: auto;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 999px;
  color: #111;
  background: #fff;
  font-size: .78rem !important;
  font-weight: 900 !important;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.choice-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(185,28,43,.45);
}

.choice-pill:has(input:checked) {
  border-color: rgba(185,28,43,.75);
  background: rgba(185,28,43,.10);
}

.choice-pill:has(input:disabled):not(:has(input:checked)) {
  opacity: .45;
  cursor: not-allowed;
}

.choice-pill input {
  width: 15px !important;
  min-height: 15px !important;
  accent-color: var(--red);
}

.product-order-form__extras select[hidden],
.option-group[hidden],
.product-order-form label[hidden],
.option-check[hidden],
.age-check[hidden] {
  display: none !important;
}

.option-check,
.age-check {
  display: flex !important;
  align-items: center;
  gap: 9px !important;
  font-weight: 900 !important;
}

.option-check input,
.age-check input {
  width: 18px !important;
  min-height: 18px !important;
  accent-color: var(--red);
}

.option-check b {
  color: var(--red);
}

.add-to-cart-main {
  min-height: 52px;
  border-radius: 18px;
  font-size: .98rem;
}

/* V14 — espace bas pour éviter que le panier, l'appel et le suivi masquent le pied de page */
body.has-active-tracking .footer {
  padding-bottom: 220px;
}

@media (max-width: 640px) {
  .footer {
    padding-bottom: calc(178px + env(safe-area-inset-bottom, 0px));
  }

  body.has-active-tracking .footer {
    padding-bottom: calc(252px + env(safe-area-inset-bottom, 0px));
  }
}

.active-tracking-button {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 105;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 17px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #8d111d, #c81429);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 20px 60px rgba(0,0,0,.40);
  text-decoration: none;
  font-weight: 950;
  transition: transform .22s ease, opacity .22s ease;
}

.active-tracking-button:hover { transform: translateY(-2px); }

.active-tracking-button[hidden] { display: none !important; }

.active-tracking-button span {
  font-size: .86rem;
  opacity: .92;
}

.active-tracking-button strong {
  color: #111;
  background: var(--gold);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .86rem;
}

.address-autocomplete-wrap {
  position: relative;
}

.address-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: stretch;
}

.address-input-row input {
  min-width: 0;
}

.address-locate-btn {
  border: 0;
  border-radius: 16px;
  padding: 0 14px;
  color: #111;
  background: linear-gradient(135deg, #fff8df, var(--gold));
  box-shadow: 0 10px 24px rgba(242,189,50,.20);
  font-weight: 950;
  white-space: nowrap;
  cursor: pointer;
}

.address-locate-btn:hover,
.address-locate-btn:focus-visible {
  outline: 2px solid rgba(242,189,50,.65);
  outline-offset: 2px;
}

.address-locate-btn:disabled {
  opacity: .65;
  cursor: wait;
}

.address-suggestions {
  position: absolute;
  z-index: 25;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  display: grid;
  gap: 6px;
  max-height: 280px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  padding: 8px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 20px 55px rgba(0,0,0,.22);
}

.address-suggestions[hidden] { display: none !important; }

.address-suggestion {
  display: grid;
  gap: 3px;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 14px;
  background: rgba(141,17,29,.06);
  text-align: left;
  cursor: pointer;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.address-suggestion:hover,
.address-suggestion:focus-visible {
  outline: 2px solid rgba(242,189,50,.75);
  background: rgba(242,189,50,.18);
}

.address-suggestion strong {
  color: #111;
  font-size: .92rem;
}

.address-suggestion span {
  color: #555;
  font-size: .78rem;
  line-height: 1.35;
}

.address-suggestion em,
.address-suggestions__empty {
  color: #8d111d;
  font-size: .8rem;
  font-style: normal;
  font-weight: 850;
}


.cart-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 105;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 16px 0 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #111;
  background: linear-gradient(135deg, #fff, #ffe7a6 45%, var(--gold));
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  cursor: pointer;
  font-weight: 950;
  transition: transform .22s ease, opacity .22s ease;
}

.cart-floating:hover { transform: translateY(-2px); }

.cart-floating strong {
  display: grid;
  place-items: center;
  min-width: 32px;
  height: 32px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: .9rem;
}

.cart-floating:not(.has-items) {
  opacity: .82;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.cart-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(520px, 100%);
  height: 100%;
  overflow: auto;
  padding: 22px;
  color: #111;
  background:
    radial-gradient(circle at top right, rgba(242,189,50,.28), transparent 18rem),
    #fff;
  box-shadow: -26px 0 80px rgba(0,0,0,.45);
  transform: translateX(24px);
  transition: transform .22s ease;
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}

.cart-drawer__badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #111;
  background: var(--gold);
  font-size: .74rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.cart-drawer h2 {
  color: var(--red);
  font-family: "Anton", sans-serif;
  font-size: clamp(2.25rem, 8vw, 3.7rem);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.cart-drawer__close {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(0,0,0,.82);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.cart-drawer__intro,
.cart-warning {
  color: #444;
  line-height: 1.52;
}

.cart-drawer__intro {
  margin-top: 12px;
  font-weight: 650;
}

.cart-items {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.cart-empty {
  padding: 16px;
  border-radius: 18px;
  color: #555;
  background: #f3f3f3;
  border: 1px dashed rgba(0,0,0,.18);
  font-weight: 800;
}

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 14px;
  border-radius: 20px;
  background: #f7f7f7;
  border: 1px solid rgba(0,0,0,.08);
}

.cart-item strong {
  display: block;
  color: #111;
  line-height: 1.25;
}

.cart-item ul {
  display: grid;
  gap: 3px;
  margin: 8px 0;
  padding-left: 16px;
  color: #444;
  font-size: .86rem;
  line-height: 1.35;
}

.cart-item small {
  color: var(--red);
  font-weight: 950;
}

.cart-item__remove {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.order-form {
  display: grid;
  gap: 13px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.1);
}

.order-form h3 {
  color: #111;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.delivery-fields[hidden] { display: none !important; }

.delivery-fields {
  display: grid;
  gap: 12px;
  padding: 13px;
  border-radius: 20px;
  background: rgba(242,189,50,.16);
  border: 1px solid rgba(242,189,50,.38);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
  padding: 15px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #34090e);
  box-shadow: 0 16px 36px rgba(141,17,29,.22);
}

.cart-total span {
  color: rgba(255,255,255,.78);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
}

.cart-total strong {
  color: var(--gold);
  font-family: "Anton", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: .03em;
}

.cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.send-order-btn {
  min-height: 52px;
  border-radius: 18px;
}

.send-order-btn--sms {
  color: #fff;
  background: linear-gradient(135deg, #1b1f1f, #0b0d0d);
  box-shadow: 0 14px 30px rgba(0,0,0,.20);
}

body.cart-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .nav-order-btn { display: none; }

  .product-order-form__grid,
  .order-form__grid,
  .cart-actions {
    grid-template-columns: 1fr;
  }

  .active-tracking-button {
    left: 14px;
    right: 14px;
    bottom: calc(150px + env(safe-area-inset-bottom, 0px));
    justify-content: center;
    border-radius: 18px;
  }

  .cart-floating {
    left: 14px;
    right: 14px;
    bottom: calc(82px + env(safe-area-inset-bottom, 0px));
    justify-content: center;
    border-radius: 18px;
  }

  .cart-drawer__panel {
    width: 100%;
    padding: 18px 14px 110px;
  }

  .mobile-call {
    left: 14px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }
}


/* Panel snack PHP + JSON */
.cart-actions {
  grid-template-columns: 1fr;
}

.send-order-btn:disabled {
  cursor: wait;
  opacity: .65;
  transform: none !important;
}

.order-submit-status {
  min-height: 0;
  margin: 2px 0 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f5f5f5;
  color: #333;
  font-weight: 850;
  line-height: 1.45;
  display: none;
}

.order-submit-status:not(:empty) {
  display: block;
}

.order-submit-status.is-loading {
  background: rgba(242,189,50,.18);
  color: #6f4c00;
  border: 1px solid rgba(242,189,50,.38);
}

.order-submit-status.is-success {
  background: rgba(32, 160, 92, .14);
  color: #0d6b3a;
  border: 1px solid rgba(32, 160, 92, .30);
}

.order-submit-status.is-error {
  background: rgba(141,17,29,.12);
  color: #8d111d;
  border: 1px solid rgba(141,17,29,.25);
}

/* Calcul livraison automatique + suivi client */
.delivery-quote-box {
  display: grid;
  gap: 9px;
}

.delivery-calc-btn {
  min-height: 46px;
  border: 0;
  border-radius: 16px;
  color: #111;
  background: linear-gradient(135deg, #fff, #ffe7a6 45%, var(--gold));
  box-shadow: 0 12px 26px rgba(0,0,0,.12);
  font-weight: 950;
  cursor: pointer;
}

.delivery-calc-btn:disabled {
  opacity: .65;
  cursor: wait;
}

.delivery-quote-status {
  margin: 0;
  padding: 11px 13px;
  border-radius: 15px;
  color: #444;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.08);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.42;
}

.delivery-quote-status.is-loading {
  color: #6f4c00;
  background: rgba(242,189,50,.18);
  border-color: rgba(242,189,50,.38);
}

.delivery-quote-status.is-success {
  color: #0d6b3a;
  background: rgba(32, 160, 92, .14);
  border-color: rgba(32, 160, 92, .30);
}

.delivery-quote-status.is-error {
  color: #8d111d;
  background: rgba(141,17,29,.12);
  border-color: rgba(141,17,29,.25);
}

.order-track-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  color: #111;
  background: var(--gold);
  font-weight: 950;
  text-decoration: none;
}

.tracking-page {
  min-height: 100vh;
  padding: 28px 18px;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(242,189,50,.24), transparent 28rem),
    radial-gradient(circle at bottom right, rgba(141,17,29,.4), transparent 26rem),
    #120608;
}

.tracking-shell {
  width: min(780px, 100%);
  margin: 0 auto;
}

.tracking-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 950;
}

.tracking-brand img {
  width: 54px;
  height: 72px;
  object-fit: contain;
}

.tracking-card {
  margin-top: 26px;
  padding: clamp(20px, 5vw, 34px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 26px 80px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
}

.tracking-card h1 {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.4rem, 11vw, 4.7rem);
  line-height: .92;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.tracking-status {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.tracking-status__pill {
  display: inline-flex;
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  color: #111;
  background: var(--gold);
  font-weight: 950;
}

.tracking-steps {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.tracking-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  font-weight: 850;
}

.tracking-step::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}

.tracking-step.is-active {
  color: #fff;
  background: rgba(242,189,50,.16);
  border-color: rgba(242,189,50,.32);
}

.tracking-step.is-active::before {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(242,189,50,.12);
}

.tracking-summary {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.tracking-summary article {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}

.tracking-summary strong {
  color: var(--gold);
}

.tracking-items {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.tracking-items div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.tracking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tracking-actions a,
.tracking-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #111;
  background: var(--gold);
  font: inherit;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
}

.tracking-error {
  padding: 14px;
  border-radius: 18px;
  color: #ffd3d8;
  background: rgba(141,17,29,.24);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 850;
}


/* Correctifs suivi commande mobile */
.tracking-card,
.tracking-card * {
  min-width: 0;
}

.tracking-card p {
  margin: 7px 0;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.tracking-status > div:first-child {
  display: grid;
  gap: 4px;
}

.tracking-summary article,
.tracking-items,
.tracking-actions {
  min-width: 0;
}

.tracking-items div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.tracking-items span {
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.tracking-items strong {
  white-space: nowrap;
}

@media (max-width: 560px) {
  .tracking-page {
    padding: 18px 12px;
  }

  .tracking-card {
    border-radius: 24px;
    padding: 20px 14px;
  }

  .tracking-card h1 {
    font-size: clamp(2rem, 14vw, 3rem);
    line-height: 1;
  }

  .tracking-step {
    align-items: flex-start;
    line-height: 1.35;
  }

  .tracking-items div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .tracking-actions {
    display: grid;
  }

  .tracking-actions a,
  .tracking-actions button {
    width: 100%;
    justify-content: center;
    display: inline-flex;
    align-items: center;
  }
}

/* Ajustements commande : suggestions plus propres + ajout panier non intrusif */
.cart-toast {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 106;
  max-width: min(360px, calc(100vw - 32px));
  padding: 13px 16px;
  border-radius: 18px;
  color: #111;
  background: linear-gradient(135deg, #fff, #ffe7a6 45%, var(--gold));
  box-shadow: 0 20px 60px rgba(0,0,0,.38);
  font-weight: 950;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cart-toast[hidden] { display: none !important; }

.address-suggestion {
  gap: 5px;
}

.address-suggestion strong {
  font-size: .95rem;
  line-height: 1.25;
}

.address-suggestion em {
  display: block;
  line-height: 1.25;
}

/* V15 — message ajout panier : évite la superposition avec les boutons fixes */
body.has-active-tracking .cart-toast {
  bottom: 150px;
}

@media (max-width: 640px) {
  .cart-toast {
    left: 14px;
    right: 14px;
    bottom: calc(168px + env(safe-area-inset-bottom, 0px));
    text-align: center;
  }

  body.has-active-tracking .cart-toast {
    bottom: calc(230px + env(safe-area-inset-bottom, 0px));
  }
}


/* V10 — commande client propre */
.product-card.is-unavailable {
  cursor: not-allowed;
  opacity: .58;
  filter: grayscale(.25);
}

.product-card.is-unavailable .product-card__more {
  color: #fff;
  background: rgba(141,17,29,.92);
}

.order-success-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 20px;
  color: #0d4f2e;
  background: rgba(32,160,92,.13);
  border: 1px solid rgba(32,160,92,.28);
}

.order-success-card strong {
  color: #0d4f2e;
  font-size: 1rem;
  line-height: 1.3;
}

.order-success-card p {
  margin: 0;
  color: #1f5f3d;
  font-weight: 750;
  line-height: 1.45;
}

.order-track-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #111;
  background: var(--gold);
  font-weight: 950;
  text-decoration: none;
}

.choice-pill input {
  appearance: none;
  -webkit-appearance: none;
  display: inline-grid;
  place-items: center;
  flex: 0 0 18px;
  width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 0;
  padding: 0 !important;
  border: 2px solid rgba(141,17,29,.34);
  border-radius: 999px;
  background: #fff;
}

.choice-pill input::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: transparent;
  transition: background .15s ease, transform .15s ease;
  transform: scale(.65);
}

.choice-pill input:checked {
  border-color: var(--red);
  background: #fff;
}

.choice-pill input:checked::after {
  background: var(--red);
  transform: scale(1);
}

@media (max-width: 640px) {
  .product-order-form input,
  .product-order-form textarea,
  .product-order-form select,
  .order-form input,
  .order-form textarea,
  .order-form select {
    font-size: 16px;
  }

  .address-input-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .address-locate-btn {
    width: 100%;
    min-height: 48px;
    font-size: .95rem;
  }

  .address-autocomplete-wrap {
    position: static;
  }

  .address-suggestions {
    position: static;
    z-index: auto;
    max-height: 220px;
    margin-top: 8px;
    box-shadow: 0 12px 30px rgba(0,0,0,.16);
  }

  .address-suggestion {
    padding: 12px;
  }

  .choice-grid {
    gap: 7px;
  }

  .choice-pill {
    min-height: 42px;
    padding: 9px 11px;
    border-radius: 16px;
  }
}


/* V11 — corrections sélection mobile, fermeture fiche produit et confirmation suivi */
.product-modal__close {
  position: fixed;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  z-index: 5;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
}

.option-check input,
.age-check input {
  appearance: none;
  -webkit-appearance: none;
  display: inline-grid;
  place-items: center;
  flex: 0 0 22px;
  width: 22px !important;
  height: 22px !important;
  min-height: 22px !important;
  margin: 0;
  padding: 0 !important;
  border: 2px solid rgba(141,17,29,.42);
  border-radius: 7px;
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.9);
}

.option-check input::after,
.age-check input::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transform: rotate(-45deg) scale(.72);
  opacity: 0;
  transition: opacity .15s ease, transform .15s ease;
}

.option-check input:checked,
.age-check input:checked {
  border-color: var(--red);
  background: var(--red);
}

.option-check input:checked::after,
.age-check input:checked::after {
  border-left-color: #fff;
  border-bottom-color: #fff;
  opacity: 1;
  transform: rotate(-45deg) scale(1);
}

.option-check input:focus-visible,
.age-check input:focus-visible {
  outline: 3px solid rgba(242,189,50,.55);
  outline-offset: 2px;
}

.option-check {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 10px 12px;
  background: rgba(141,17,29,.045);
}

.option-check:has(input:checked) {
  border-color: rgba(141,17,29,.36);
  background: rgba(141,17,29,.10);
}

.order-success-area {
  margin-top: 16px;
}

.order-success-area[hidden] {
  display: none !important;
}

@media (max-width: 640px) {
  .product-modal {
    padding: 0;
    place-items: end center;
  }

  .product-modal__card {
    width: 100%;
    max-height: 94vh;
    border-radius: 26px 26px 0 0;
  }

  .product-modal__close {
    top: calc(env(safe-area-inset-top) + 14px);
    right: 14px;
    width: 46px;
    height: 46px;
    font-size: 1.7rem;
  }

  .product-order-form__extras {
    gap: 9px;
  }

  .option-check {
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    padding: 12px;
  }

  .option-check b {
    margin-left: auto;
    white-space: nowrap;
  }
}


/* V12 — fiche produit stable sur mobile + cases suppléments corrigées */
body.product-modal-open {
  overflow: hidden !important;
  overscroll-behavior: none;
  touch-action: none;
}

.product-modal {
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

.product-modal__overlay { touch-action: none; }

.product-modal__card {
  overflow-y: auto !important;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.product-modal__close {
  position: sticky !important;
  top: 12px !important;
  right: auto !important;
  z-index: 50 !important;
  display: grid !important;
  place-items: center !important;
  flex: 0 0 auto;
  margin: 12px 12px -54px auto;
  width: 46px !important;
  height: 46px !important;
  border: 2px solid rgba(255,255,255,.34);
  border-radius: 50%;
  background: rgba(10,10,10,.86) !important;
  color: #fff;
  font-size: 1.85rem !important;
  line-height: 1 !important;
  box-shadow: 0 16px 42px rgba(0,0,0,.42);
  backdrop-filter: blur(10px);
}

.option-check input {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  display: inline-block;
  flex: 0 0 30px !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  min-height: 30px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 2px solid rgba(141,17,29,.42);
  border-radius: 9px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0 0;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.9);
}

.option-check input::after { content: none !important; }

.option-check input:checked {
  border-color: var(--red);
  background-color: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7'%3E%3C/path%3E%3C/svg%3E");
  background-size: 20px 20px;
}

.option-check input:focus-visible {
  outline: 3px solid rgba(242,189,50,.55);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .product-modal__card {
    max-height: calc(100dvh - 8px) !important;
    border-radius: 26px 26px 0 0;
  }

  .product-modal__close {
    top: calc(env(safe-area-inset-top) + 10px) !important;
    margin-top: calc(env(safe-area-inset-top) + 10px);
    margin-right: 12px;
    width: 48px !important;
    height: 48px !important;
    font-size: 1.9rem !important;
  }

  .option-check input {
    flex-basis: 32px !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    border-radius: 10px;
  }

  .option-check input:checked { background-size: 21px 21px; }
}


/* V13 — fermeture produit sans scroll animé + fond modal stable + cases proportionnées */
html.product-modal-open,
body.product-modal-open {
  overflow: hidden !important;
  overscroll-behavior: none !important;
}

body.product-modal-open {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: auto !important;
}

.product-modal {
  background: transparent !important;
  isolation: isolate;
}

.product-modal__overlay {
  background: rgba(0,0,0,.74) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.product-modal__card {
  background: #fff !important;
  contain: content;
}

.option-check input,
.age-check input {
  appearance: none !important;
  -webkit-appearance: none !important;
  position: relative !important;
  display: inline-block !important;
  flex: 0 0 30px !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  min-height: 30px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 2px solid rgba(141,17,29,.45) !important;
  border-radius: 9px !important;
  background: #fff !important;
  background-image: none !important;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.92) !important;
  vertical-align: middle !important;
}

.option-check input::after,
.age-check input::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 48% !important;
  width: 12px !important;
  height: 7px !important;
  border-left: 3px solid #fff !important;
  border-bottom: 3px solid #fff !important;
  transform: translate(-50%, -50%) rotate(-45deg) scale(.65) !important;
  transform-origin: center !important;
  opacity: 0 !important;
  transition: opacity .12s ease, transform .12s ease !important;
  box-sizing: border-box !important;
}

.option-check input::before,
.age-check input::before {
  content: none !important;
}

.option-check input:checked,
.age-check input:checked {
  border-color: var(--red) !important;
  background: var(--red) !important;
  background-image: none !important;
}

.option-check input:checked::after,
.age-check input:checked::after {
  opacity: 1 !important;
  transform: translate(-50%, -50%) rotate(-45deg) scale(1) !important;
}

@media (max-width: 640px) {
  .product-modal {
    height: 100dvh !important;
    max-height: 100dvh !important;
    overflow: hidden !important;
  }

  .product-modal__card {
    max-height: calc(100dvh - 8px) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch;
  }

  .option-check input,
  .age-check input {
    flex-basis: 34px !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    border-radius: 10px !important;
  }

  .option-check input::after,
  .age-check input::after {
    width: 14px !important;
    height: 8px !important;
    border-left-width: 3px !important;
    border-bottom-width: 3px !important;
  }
}

/* V17 — stabilité de la page de suivi sur mobile */
html:has(body.tracking-page) {
  min-height: 100%;
  background: #120608;
  overscroll-behavior-y: contain;
}
body.tracking-page {
  min-height: 100svh;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}
.tracking-shell {
  padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
}
.tracking-actions a,
.tracking-actions button {
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 560px) {
  .tracking-actions {
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }
}


.orders-closed-banner {
  margin: 14px 0;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(231, 51, 36, .28);
  background: linear-gradient(145deg, rgba(231, 51, 36, .12), rgba(255, 207, 51, .08));
  color: var(--text, #fff8ed);
}

.orders-closed-banner strong {
  display: block;
  margin-bottom: 5px;
  color: #ffcf33;
  font-weight: 900;
}

.orders-closed-banner p {
  margin: 0;
  color: var(--muted, #cfc5b8);
  line-height: 1.45;
}

.send-order-btn.is-disabled-by-settings {
  opacity: .62;
  cursor: not-allowed;
}

.tracking-prep-estimate,
.tracking-client-message,
.tracking-notification-box {
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.tracking-client-message {
  border-color: rgba(255, 207, 51, .25);
}

.tracking-notification-box p {
  margin: 0 0 10px;
}

.tracking-notification-box button {
  border: 0;
  border-radius: 999px;
  padding: 11px 15px;
  font-weight: 900;
  cursor: pointer;
  background: #ffcf33;
  color: #141414;
}

.tracking-notification-box button:disabled {
  opacity: .7;
  cursor: default;
}

/* V21 — état commandes fermées + recherche d’adresse plus lisible */
.order-notice.is-closed {
  border-color: rgba(231, 51, 36, .42);
  background: linear-gradient(145deg, rgba(231, 51, 36, .18), rgba(12, 14, 14, .78));
}
.order-notice.is-closed strong {
  color: #ffcf33;
}
.orders-closed-banner {
  border-color: rgba(255, 207, 51, .38);
  background: linear-gradient(145deg, rgba(30, 18, 12, .96), rgba(10, 12, 12, .96));
  color: #fff8ed;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}
.orders-closed-banner p {
  color: #f4e6c8;
  font-weight: 700;
}
.address-suggestions__loading {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(141,17,29,.06);
  color: #8d111d;
  font-size: .86rem;
  font-weight: 900;
}
.address-suggestions__loading span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(141,17,29,.22);
  border-top-color: #8d111d;
  animation: addressLoadingSpin .8s linear infinite;
}
@keyframes addressLoadingSpin {
  to { transform: rotate(360deg); }
}
@media (max-width: 560px) {
  .address-suggestions {
    max-height: min(46vh, 310px);
  }
}
.tracking-notification-box button.is-unsupported {
  opacity: .75;
  cursor: not-allowed;
}

/* V23 — spinner adresse PC plus fiable */
.address-suggestions__loading span {
  display: inline-block;
  flex: 0 0 16px;
  box-sizing: border-box;
  border-right-color: rgba(141,17,29,.22);
  border-bottom-color: rgba(141,17,29,.22);
  border-left-color: rgba(141,17,29,.22);
  transform-origin: 50% 50%;
  will-change: transform;
  -webkit-animation: addressLoadingSpinV23 .75s linear infinite;
  animation: addressLoadingSpinV23 .75s linear infinite;
}

@-webkit-keyframes addressLoadingSpinV23 {
  from { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes addressLoadingSpinV23 {
  from { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

/* V24 — correctifs mobile Chrome/iPhone, téléphone et spinner adresse */
.phone-field {
  display: grid;
  gap: 8px;
}
.phone-input-row {
  display: grid;
  grid-template-columns: minmax(104px, 124px) 1fr;
  gap: 8px;
  align-items: stretch;
}
.phone-input-row select,
.phone-input-row input {
  width: 100%;
  min-height: 52px;
}
.phone-field__hint {
  color: rgba(30, 20, 18, .66);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.35;
}
.phone-field__hint.is-error {
  color: #b11222;
}
.order-form input.is-invalid {
  border-color: #b11222 !important;
  box-shadow: 0 0 0 3px rgba(177, 18, 34, .13) !important;
}
@media (max-width: 480px) {
  .phone-input-row { grid-template-columns: 108px 1fr; }
}

.address-suggestions__loading span {
  position: relative !important;
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  border-radius: 999px !important;
  border: 2px solid rgba(141,17,29,.20) !important;
  border-top-color: #8d111d !important;
  animation: pixouAddressSpinV24 .7s linear infinite !important;
  -webkit-animation: pixouAddressSpinV24 .7s linear infinite !important;
  transform: translateZ(0);
}
.address-suggestions__loading span::before,
.address-suggestions__loading span::after { content: none !important; }
@keyframes pixouAddressSpinV24 {
  0% { transform: rotate(0deg) translateZ(0); }
  100% { transform: rotate(360deg) translateZ(0); }
}
@-webkit-keyframes pixouAddressSpinV24 {
  0% { -webkit-transform: rotate(0deg) translateZ(0); transform: rotate(0deg) translateZ(0); }
  100% { -webkit-transform: rotate(360deg) translateZ(0); transform: rotate(360deg) translateZ(0); }
}

.product-modal,
.cart-drawer {
  height: var(--pixou-vh, 100dvh) !important;
  max-height: var(--pixou-vh, 100dvh) !important;
}
.cart-drawer__panel {
  height: var(--pixou-vh, 100dvh) !important;
  max-height: var(--pixou-vh, 100dvh) !important;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 640px) {
  .product-modal__card {
    max-height: calc(var(--pixou-vh, 100dvh) - 8px) !important;
  }
  .cart-drawer__panel {
    padding-bottom: calc(126px + env(safe-area-inset-bottom, 0px));
  }
  .product-modal__close,
  .cart-drawer__close {
    touch-action: manipulation;
  }
}

body.cart-open-locked {
  position: fixed !important;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden !important;
  overscroll-behavior: none !important;
}
html.cart-open {
  overflow: hidden !important;
  overscroll-behavior: none !important;
}


/* V25 — téléphone propre, indicatifs étendus et spinner PC fiable */
.cart-drawer .order-form__grid {
  grid-template-columns: 1fr !important;
  gap: 12px !important;
}
.cart-drawer .order-form label,
.cart-drawer .phone-field {
  min-width: 0;
}
.cart-drawer .phone-input-row {
  grid-template-columns: minmax(96px, 118px) minmax(0, 1fr) !important;
  gap: 10px !important;
  width: 100%;
}
.phone-input-row select {
  min-width: 0 !important;
  max-width: 118px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 12px !important;
  padding-right: 28px !important;
}
.phone-input-row input {
  min-width: 0 !important;
}
@media (max-width: 520px) {
  .cart-drawer .phone-input-row {
    grid-template-columns: 104px minmax(0, 1fr) !important;
    gap: 8px !important;
  }
  .phone-input-row select {
    max-width: 104px;
    font-size: 16px;
  }
}
.address-suggestions__loading span {
  animation-name: pixouAddressSpinV25 !important;
  animation-duration: .65s !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
  animation-play-state: running !important;
  transform-origin: 50% 50% !important;
  will-change: transform !important;
}
@keyframes pixouAddressSpinV25 {
  from { transform: rotate(0deg) translateZ(0); }
  to { transform: rotate(360deg) translateZ(0); }
}
@-webkit-keyframes pixouAddressSpinV25 {
  from { -webkit-transform: rotate(0deg) translateZ(0); transform: rotate(0deg) translateZ(0); }
  to { -webkit-transform: rotate(360deg) translateZ(0); transform: rotate(360deg) translateZ(0); }
}

/* V26 — corrections panier, indicatifs, suppléments et paiement obligatoire */
html {
  background: #080909;
}
body.cart-open,
body.cart-open-locked {
  background:
    radial-gradient(circle at top right, rgba(141,17,29,.28), transparent 34rem),
    radial-gradient(circle at top left, rgba(242,189,50,.1), transparent 28rem),
    linear-gradient(135deg,#080909,#151818 52%,#080909) !important;
}
.cart-drawer {
  background: transparent !important;
}
.cart-drawer__overlay {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(0,0,0,.72) !important;
}
.cart-drawer__panel {
  isolation: isolate;
  background:
    radial-gradient(circle at top right, rgba(242,189,50,.28), transparent 18rem),
    #fff !important;
}

.product-order-form__extras {
  gap: 10px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}
.product-order-form__extras[hidden],
.extra-option-block[hidden],
.choice-grid[hidden] {
  display: none !important;
}
.extra-option-block {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(141,17,29,.06);
  border: 1px solid rgba(141,17,29,.14);
}
.extra-option-block .choice-grid {
  padding-top: 2px;
}
.extra-option-block .choice-pill input:disabled + span {
  opacity: .62;
}

.phone-input-row {
  position: relative;
  overflow: visible;
}
.phone-input-row.is-enhanced .phone-country-native {
  display: none !important;
}
.cart-drawer .phone-input-row.is-enhanced {
  grid-template-columns: minmax(126px, 150px) minmax(0, 1fr) !important;
}
.phone-country-picker {
  position: relative;
  min-width: 0;
  z-index: 30;
}
.phone-country-picker__button {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 15px;
  padding: 11px 12px;
  color: #111;
  background: #f7f7f7;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}
.phone-country-picker__button span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone-country-picker__button strong {
  color: var(--red);
  font-size: .9rem;
}
.phone-country-picker.is-open .phone-country-picker__button,
.phone-country-picker__button:focus-visible {
  border-color: rgba(185,28,43,.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(185,28,43,.10);
  outline: none;
}
.phone-country-picker__list {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: min(250px, 82vw);
  max-height: 284px;
  overflow: auto;
  display: none;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  box-shadow: 0 22px 60px rgba(0,0,0,.25);
  z-index: 999;
}
.phone-country-picker.is-open .phone-country-picker__list {
  display: grid;
  gap: 4px;
}
.phone-country-picker__list button {
  width: 100%;
  min-height: 38px;
  border: 0;
  border-radius: 12px;
  padding: 8px 10px;
  color: #111;
  background: transparent;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}
.phone-country-picker__list button:hover,
.phone-country-picker__list button:focus-visible {
  background: rgba(141,17,29,.08);
  outline: none;
}
@media (max-width: 520px) {
  .cart-drawer .phone-input-row.is-enhanced {
    grid-template-columns: 116px minmax(0, 1fr) !important;
  }
  .phone-country-picker__button {
    padding-inline: 10px;
    font-size: 15px;
  }
  .phone-country-picker__list {
    width: min(236px, 88vw);
    max-height: 248px;
  }
}

/* V27 — drapeaux fiables PC/mobile, clavier panier et fromages multiples */
.cart-drawer {
  height: var(--pixou-cart-vh, 100dvh) !important;
  min-height: var(--pixou-cart-vh, 100dvh) !important;
  background: rgba(0,0,0,.72) !important;
}
.cart-drawer__overlay {
  height: var(--pixou-cart-vh, 100dvh) !important;
  min-height: var(--pixou-cart-vh, 100dvh) !important;
}
.cart-drawer__panel {
  height: var(--pixou-cart-vh, 100dvh) !important;
  min-height: var(--pixou-cart-vh, 100dvh) !important;
  background-color: #fff !important;
  background-clip: padding-box;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.cart-drawer__panel::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: #fff;
}
.phone-country-picker__button,
.phone-country-picker__list button,
.phone-country-picker__current {
  display: flex;
  align-items: center;
}
.phone-country-picker__current {
  min-width: 0;
  gap: 8px;
}
.phone-country-picker__button {
  overflow: hidden;
}
.phone-country-picker__list button {
  gap: 9px;
}
.phone-country-picker__flag {
  width: 24px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08), 0 2px 5px rgba(0,0,0,.12);
  background: #eee;
}
.phone-country-picker__list button.is-selected {
  background: rgba(141,17,29,.08);
}
.choice-grid--cheese .choice-pill input:checked + span {
  box-shadow: 0 0 0 2px rgba(242,189,50,.34) inset;
}
@media (max-width: 520px) {
  .phone-country-picker__current { gap: 6px; }
  .phone-country-picker__flag { width: 22px; height: 16px; border-radius: 3px; }
}

/* V29 — production: confirmation commande + dernière commande */
.last-order-card {
  margin: 14px 0 16px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 207, 51, .26);
  background: linear-gradient(135deg, rgba(255, 207, 51, .12), rgba(231, 51, 36, .08));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.last-order-card[hidden] { display: none; }
.last-order-card span {
  display: block;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.last-order-card strong { display: block; color: var(--text); font-size: 1.05rem; margin-top: 3px; }
.last-order-card small { display: block; color: var(--muted); margin-top: 4px; line-height: 1.35; }
.last-order-card em { display: block; color: var(--text); font-style: normal; font-weight: 900; text-align: right; margin-bottom: 8px; }
.last-order-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: #1b1510;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}
.order-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: grid;
  place-items: center;
  padding: 18px;
}
.order-confirm-modal[hidden] { display: none; }
.order-confirm-modal__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(14px);
}
.order-confirm-modal__card {
  position: relative;
  width: min(520px, 100%);
  max-height: min(760px, calc(var(--pixou-vh, 100vh) - 36px));
  overflow: auto;
  border-radius: 30px;
  padding: 22px;
  border: 1px solid rgba(255, 248, 237, .15);
  background:
    radial-gradient(circle at top left, rgba(231, 51, 36, .20), transparent 24rem),
    linear-gradient(160deg, rgba(25, 25, 23, .98), rgba(12, 12, 11, .98));
  color: var(--text);
  box-shadow: 0 26px 90px rgba(0, 0, 0, .48);
}
.order-confirm-modal__card h2 {
  margin: 8px 0 8px;
  font-family: Anton, Impact, sans-serif;
  letter-spacing: .03em;
  font-size: clamp(2rem, 9vw, 3.2rem);
  line-height: .9;
}
.order-confirm-modal__card > p { color: var(--muted); line-height: 1.45; margin: 0 0 16px; }
.order-confirm-summary {
  display: grid;
  gap: 14px;
}
.order-confirm-summary__rows {
  display: grid;
  gap: 8px;
}
.order-confirm-summary__rows p {
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
}
.order-confirm-summary__rows span { color: var(--muted); font-weight: 800; }
.order-confirm-summary__rows strong { text-align: right; max-width: 62%; }
.order-confirm-summary__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.order-confirm-summary__items li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 248, 237, .10);
}
.order-confirm-summary__totals {
  display: grid;
  gap: 8px;
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 248, 237, .16);
}
.order-confirm-summary__totals p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
}
.order-confirm-summary__totals span { color: var(--muted); font-weight: 900; }
.order-confirm-summary__totals strong { text-align: right; }
.order-confirm-summary__totals .is-final {
  background: linear-gradient(135deg, rgba(255, 203, 42, .24), rgba(231, 51, 36, .18));
  border: 1px solid rgba(255, 203, 42, .36);
}
.order-confirm-summary__totals .is-final span,
.order-confirm-summary__totals .is-final strong {
  color: var(--text);
}
.order-confirm-summary__totals .is-final strong {
  font-size: 1.28rem;
}
.order-confirm-summary small {
  display: block;
  color: var(--yellow);
  line-height: 1.45;
  font-weight: 800;
}
.order-confirm-modal__actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.order-confirm-modal__actions button { flex: 1; }
.order-confirm-modal__cancel {
  border: 1px solid rgba(255, 248, 237, .16);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  border-radius: 999px;
  padding: 13px 16px;
  font-weight: 900;
}
body.order-confirm-open { overflow: hidden; }
@media (max-width: 560px) {
  .last-order-card { align-items: stretch; flex-direction: column; }
  .last-order-card em { text-align: left; }
  .last-order-card a { width: 100%; }
  .order-confirm-modal__actions { flex-direction: column; }
  .order-confirm-summary__rows p { display: grid; }
  .order-confirm-summary__rows strong { max-width: none; text-align: left; }
}

/* V30 — correctifs iPhone Chrome, dernière commande et horaires dynamiques */
.product-modal {
  height: var(--pixou-vh, 100svh) !important;
  min-height: var(--pixou-vh, 100svh) !important;
  max-height: var(--pixou-vh, 100svh) !important;
  background: rgba(0, 0, 0, .74) !important;
}

.product-modal__overlay {
  position: fixed !important;
  inset: 0 !important;
  height: var(--pixou-vh, 100svh) !important;
  min-height: var(--pixou-vh, 100svh) !important;
}

@media (max-width: 640px) {
  .product-modal {
    align-items: end !important;
    padding-bottom: max(0px, env(safe-area-inset-bottom)) !important;
  }
  .product-modal__card {
    max-height: calc(var(--pixou-vh, 100svh) - max(8px, env(safe-area-inset-bottom))) !important;
    margin-bottom: 0 !important;
    border-radius: 26px 26px 0 0 !important;
  }
}

.last-order-card {
  background: linear-gradient(135deg, #fff7e4, #ffe9d2) !important;
  border-color: rgba(141, 17, 29, .16) !important;
  color: #17120e !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
}
.last-order-card span,
.last-order-card small {
  color: rgba(23, 18, 14, .68) !important;
}
.last-order-card strong,
.last-order-card em {
  color: #17120e !important;
}

/* V32 — popups propres, carte client plus claire, iPhone Chrome */
.conditions-shortcut {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin: 20px 0 18px;
  padding: 24px;
  border: 1px solid rgba(242,189,50,.20);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(242,189,50,.18), transparent 24rem),
    rgba(255,255,255,.07);
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
}
.conditions-shortcut h2 {
  margin-top: 7px;
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: .95;
}
.conditions-shortcut p { color: rgba(255,255,255,.74); line-height: 1.58; margin-top: 10px; }
.conditions-shortcut__actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.conditions-shortcut__actions .btn { white-space: nowrap; }

.product-card__badge,
.product-card__unavailable-badge {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.product-card__badge { color: #111; background: var(--gold); border: 1px solid rgba(0,0,0,.08); }
.product-card__unavailable-badge { color: #fff; background: linear-gradient(135deg, #8d111d, #e73324); border: 1px solid rgba(255,255,255,.20); }
.product-card.is-popular { border-color: rgba(242,189,50,.45); box-shadow: 0 20px 48px rgba(242,189,50,.13), 0 18px 42px rgba(0,0,0,.18); }
.product-card.is-unavailable {
  opacity: .76 !important;
  filter: grayscale(.35);
  background: linear-gradient(135deg, rgba(255,255,255,.70), rgba(255,237,237,.86));
}
.product-card.is-unavailable::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: repeating-linear-gradient(-45deg, rgba(141,17,29,.08) 0 10px, rgba(141,17,29,0) 10px 20px);
  pointer-events: none;
}
.product-card.is-unavailable .product-card__more {
  color: #fff !important;
  background: #8d111d;
  border-radius: 999px;
  padding: 8px 10px;
}
.product-card__price { flex-shrink: 0; }

.site-popup {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--text);
}
.site-popup[hidden] { display: none !important; }
.site-popup__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,.74);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-popup__card {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(242,189,50,.18), transparent 22rem),
    linear-gradient(160deg, rgba(25,25,23,.99), rgba(12,12,11,.99));
  box-shadow: 0 28px 90px rgba(0,0,0,.52);
  animation: popupIn .18s ease both;
}
.site-popup__card--wide { width: min(620px, 100%); }
.site-popup__badge {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: #111;
  background: var(--gold);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.site-popup__card h2 {
  margin: 12px 0 12px;
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: .95;
  font-size: clamp(2rem, 8vw, 3.2rem);
}
.site-popup__content { color: rgba(255,255,255,.78); line-height: 1.6; font-weight: 650; }
.site-popup__actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 18px; }
.site-popup__btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: #111;
  background: linear-gradient(135deg, #fff, var(--gold));
  font-weight: 950;
  cursor: pointer;
  text-decoration: none;
}
.site-popup__btn--ghost { color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.conditions-list ul { display: grid; gap: 10px; margin: 14px 0 0; padding-left: 20px; }
.conditions-list li { color: rgba(255,255,255,.84); }
body.site-popup-open { overflow: hidden; }
@keyframes popupIn { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

html.product-modal-open .cart-floating,
html.product-modal-open .active-tracking-button,
html.product-modal-open .mobile-call,
body.product-modal-open .cart-floating,
body.product-modal-open .active-tracking-button,
body.product-modal-open .mobile-call {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(120%) !important;
}
.product-modal {
  height: 100dvh !important;
  min-height: 100dvh !important;
  max-height: 100dvh !important;
}
.product-modal__overlay {
  height: 100dvh !important;
  min-height: 100dvh !important;
}
@media (max-width: 640px) {
  .conditions-shortcut { grid-template-columns: 1fr; padding: 20px; }
  .conditions-shortcut__actions { justify-content: stretch; }
  .conditions-shortcut__actions .btn { width: 100%; }
  .product-modal { place-items: end center !important; padding: 0 !important; }
  .product-modal__card {
    max-height: calc(100dvh - 8px) !important;
    min-height: auto !important;
    margin-bottom: 0 !important;
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px)) !important;
  }
  .site-popup { align-items: end; padding: 12px; }
  .site-popup__card { border-radius: 26px 26px 18px 18px; padding: 22px; }
  .site-popup__actions { flex-direction: column; }
  .site-popup__btn { width: 100%; }
}

/* V33 — correctifs iPhone Chrome, récap admin et bloc conditions plus discret */
@media (max-width: 640px) {
  .mobile-call {
    bottom: calc(14px + env(safe-area-inset-bottom, 0px) - var(--pixou-fixed-shift, 0px)) !important;
  }
  .cart-floating {
    bottom: calc(82px + env(safe-area-inset-bottom, 0px) - var(--pixou-fixed-shift, 0px)) !important;
  }
  .active-tracking-button {
    bottom: calc(150px + env(safe-area-inset-bottom, 0px) - var(--pixou-fixed-shift, 0px)) !important;
  }

  .product-modal {
    top: var(--pixou-visual-offset-top, 0px) !important;
    bottom: auto !important;
    height: var(--pixou-vh, 100svh) !important;
    min-height: var(--pixou-vh, 100svh) !important;
    max-height: var(--pixou-vh, 100svh) !important;
    padding: 0 !important;
    overflow: hidden !important;
    place-items: end center !important;
  }
  .product-modal__overlay {
    top: 0 !important;
    bottom: auto !important;
    height: var(--pixou-vh, 100svh) !important;
    min-height: var(--pixou-vh, 100svh) !important;
    max-height: var(--pixou-vh, 100svh) !important;
  }
  .product-modal__card {
    width: 100% !important;
    max-height: calc(var(--pixou-vh, 100svh) - 8px) !important;
    margin: 0 !important;
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px)) !important;
    border-radius: 26px 26px 0 0 !important;
    transform: translate3d(0, 0, 0) !important;
  }
  .product-modal__close {
    position: sticky !important;
    top: max(10px, env(safe-area-inset-top)) !important;
    margin-top: max(10px, env(safe-area-inset-top)) !important;
    margin-right: 12px !important;
    z-index: 80 !important;
  }
}

.conditions-shortcut {
  width: min(100%, 860px);
  margin: 18px auto 14px;
  padding: 18px 20px;
  grid-template-columns: minmax(0, 1fr) auto;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(242,189,50,.12), transparent 18rem),
    rgba(255,255,255,.045);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.conditions-shortcut h2 {
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  letter-spacing: .035em;
}
.conditions-shortcut p {
  max-width: 580px;
  font-size: .94rem;
}
.conditions-shortcut__actions .btn {
  min-height: 46px;
  padding: 0 16px;
}
@media (max-width: 640px) {
  .conditions-shortcut {
    width: 100%;
    padding: 16px;
    border-radius: 20px;
  }
  .conditions-shortcut h2 {
    font-size: 1.65rem;
  }
}

/* V34 — stabilité iPhone/Chrome + bloc conditions compact */
@media (max-width: 640px) {
  /* Les boutons fixes restent stables même quand la barre Chrome apparaît/disparaît. */
  .mobile-call {
    bottom: calc(12px + env(safe-area-inset-bottom, 0px)) !important;
    transform: translate3d(0,0,0);
    will-change: auto;
  }
  .cart-floating {
    bottom: calc(80px + env(safe-area-inset-bottom, 0px)) !important;
    transform: translate3d(0,0,0);
    will-change: auto;
  }
  .active-tracking-button {
    bottom: calc(148px + env(safe-area-inset-bottom, 0px)) !important;
    transform: translate3d(0,0,0);
    will-change: auto;
  }

  /* La fiche produit recouvre tout l'écran visible et garde un fond plein jusqu'en bas. */
  .product-modal {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: none !important;
    padding: 0 !important;
    background: rgba(0,0,0,.78) !important;
    overflow: hidden !important;
    place-items: end center !important;
  }
  @supports (height: 100lvh) {
    .product-modal {
      height: 100lvh !important;
      min-height: 100lvh !important;
    }
  }
  .product-modal__overlay {
    position: fixed !important;
    inset: 0 !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
    background: rgba(0,0,0,.78) !important;
  }
  .product-modal__card {
    width: 100% !important;
    max-height: calc(var(--pixou-vh, 100svh) - 2px) !important;
    margin: 0 !important;
    padding-bottom: calc(34px + env(safe-area-inset-bottom, 0px)) !important;
    border-radius: 26px 26px 0 0 !important;
    background: #fff !important;
    box-shadow: 0 -20px 70px rgba(0,0,0,.45) !important;
  }
  .product-modal__card::after {
    content: "";
    display: block;
    height: max(12px, env(safe-area-inset-bottom, 0px));
    background: #fff;
  }

  /* Carte conditions beaucoup plus discrète et non buggée sur mobile. */
  .conditions-shortcut {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin: 14px 0 16px !important;
    padding: 14px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background: rgba(255,255,255,.055) !important;
    box-shadow: 0 10px 26px rgba(0,0,0,.16) !important;
  }
  .conditions-shortcut .section-kicker {
    display: none !important;
  }
  .conditions-shortcut h2 {
    margin: 0 0 6px !important;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1.15 !important;
    font-size: 1.15rem !important;
  }
  .conditions-shortcut p {
    max-width: none !important;
    margin: 0 0 12px !important;
    color: rgba(255,255,255,.70) !important;
    font-size: .88rem !important;
    line-height: 1.35 !important;
  }
  .conditions-shortcut__actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    width: 100% !important;
    gap: 8px !important;
    justify-content: stretch !important;
  }
  .conditions-shortcut__actions .btn {
    width: 100% !important;
    min-height: 42px !important;
    padding: 0 10px !important;
    border-radius: 999px !important;
    font-size: .86rem !important;
    text-align: center !important;
  }
}

@media (max-width: 360px) {
  .conditions-shortcut__actions {
    grid-template-columns: 1fr !important;
  }
}

/* V36 — bloc conditions équilibré : plus large sur PC, plus contenu sur mobile */
.conditions-shortcut {
  width: min(1180px, calc(100% - 28px)) !important;
  max-width: 1180px !important;
  margin: 24px auto 22px !important;
  padding: clamp(22px, 2.8vw, 34px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 370px) !important;
  gap: clamp(18px, 3vw, 34px) !important;
  align-items: center !important;
  border-radius: 28px !important;
  border: 1px solid rgba(242,189,50,.22) !important;
  background:
    radial-gradient(circle at top left, rgba(242,189,50,.14), transparent 24rem),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.038)) !important;
  box-shadow: 0 18px 48px rgba(0,0,0,.18) !important;
}
.conditions-shortcut h2 {
  margin: 7px 0 0 !important;
  font-family: Anton, Impact, sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: .04em !important;
  line-height: .94 !important;
  font-size: clamp(2.15rem, 4.8vw, 3.85rem) !important;
}
.conditions-shortcut p:not(.section-kicker) {
  max-width: 720px !important;
  margin-top: 12px !important;
  color: rgba(255,255,255,.76) !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
}
.conditions-shortcut__actions {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  justify-content: stretch !important;
  align-content: center !important;
}
.conditions-shortcut__actions .btn {
  width: 100% !important;
  min-height: 52px !important;
  padding: 0 20px !important;
  white-space: nowrap !important;
  text-align: center !important;
}

@media (max-width: 760px) {
  .conditions-shortcut {
    display: block !important;
    width: min(420px, calc(100% - 32px)) !important;
    max-width: 420px !important;
    margin: 14px auto 18px !important;
    padding: 14px !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,.055) !important;
    box-shadow: 0 10px 26px rgba(0,0,0,.16) !important;
  }
  .conditions-shortcut .section-kicker {
    display: none !important;
  }
  .conditions-shortcut h2 {
    margin: 0 0 6px !important;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1.15 !important;
    font-size: 1.15rem !important;
  }
  .conditions-shortcut p:not(.section-kicker) {
    max-width: none !important;
    margin: 0 0 12px !important;
    color: rgba(255,255,255,.70) !important;
    font-size: .88rem !important;
    line-height: 1.35 !important;
  }
  .conditions-shortcut__actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    width: 100% !important;
    gap: 8px !important;
  }
  .conditions-shortcut__actions .btn {
    min-height: 42px !important;
    padding: 0 10px !important;
    border-radius: 999px !important;
    font-size: .86rem !important;
  }
}

@media (max-width: 360px) {
  .conditions-shortcut {
    width: calc(100% - 28px) !important;
  }
  .conditions-shortcut__actions {
    grid-template-columns: 1fr !important;
  }
}

/* V37 — conditions mobile stylisées sans élargir le bloc */
@media (max-width: 760px) {
  .conditions-shortcut {
    position: relative !important;
    width: min(420px, calc(100% - 32px)) !important;
    max-width: 420px !important;
    margin: 14px auto 18px !important;
    padding: 18px 16px 16px !important;
    border-radius: 22px !important;
    border: 1px solid rgba(242,189,50,.28) !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at top left, rgba(242,189,50,.24), transparent 15rem),
      radial-gradient(circle at bottom right, rgba(141,17,29,.20), transparent 12rem),
      linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.032)) !important;
    box-shadow: 0 16px 42px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.08) !important;
  }
  .conditions-shortcut::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(242,189,50,.18), transparent 38%, rgba(141,17,29,.16)) !important;
    opacity: .55;
  }
  .conditions-shortcut > * {
    position: relative;
    z-index: 1;
  }
  .conditions-shortcut .section-kicker {
    display: inline-flex !important;
    width: fit-content !important;
    margin: 0 0 10px !important;
    min-height: 30px !important;
    align-items: center !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    border: 2px solid var(--gold) !important;
    color: #fff !important;
    background: #9f121f !important;
    font-size: .76rem !important;
    font-weight: 950 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
  }
  .conditions-shortcut h2 {
    margin: 0 0 8px !important;
    font-family: Anton, Impact, sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: .045em !important;
    line-height: .96 !important;
    font-size: clamp(1.75rem, 7.2vw, 2.35rem) !important;
    color: #fff !important;
    max-width: 330px !important;
  }
  .conditions-shortcut p:not(.section-kicker) {
    max-width: none !important;
    margin: 0 0 14px !important;
    color: rgba(255,255,255,.78) !important;
    font-size: .94rem !important;
    line-height: 1.45 !important;
  }
  .conditions-shortcut__actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .conditions-shortcut__actions .btn {
    width: 100% !important;
    min-height: 44px !important;
    padding: 0 10px !important;
    border-radius: 999px !important;
    font-size: .86rem !important;
    font-weight: 950 !important;
    box-shadow: 0 10px 26px rgba(0,0,0,.18) !important;
  }
  .conditions-shortcut__actions .btn--ghost {
    color: #fff !important;
    background: rgba(255,255,255,.075) !important;
    border: 1px solid rgba(255,255,255,.16) !important;
  }
  .conditions-shortcut__actions .btn--primary {
    color: #111 !important;
    background: linear-gradient(135deg, #fff9e9, var(--gold)) !important;
  }
}

@media (max-width: 360px) {
  .conditions-shortcut {
    width: calc(100% - 28px) !important;
  }
  .conditions-shortcut h2 {
    font-size: 1.58rem !important;
  }
  .conditions-shortcut__actions {
    grid-template-columns: 1fr !important;
  }
}

/* V38 — conditions mobile : même esprit que la version PC, sans badge rouge */
@media (max-width: 760px) {
  .conditions-shortcut {
    position: relative !important;
    display: block !important;
    width: min(420px, calc(100% - 32px)) !important;
    max-width: 420px !important;
    margin: 14px auto 18px !important;
    padding: 18px 16px 16px !important;
    border-radius: 22px !important;
    border: 1px solid rgba(242,189,50,.24) !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at top left, rgba(242,189,50,.18), transparent 14rem),
      linear-gradient(145deg, rgba(255,255,255,.078), rgba(255,255,255,.034)) !important;
    box-shadow: 0 16px 42px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.07) !important;
  }

  .conditions-shortcut::before {
    content: none !important;
  }

  .conditions-shortcut .section-kicker {
    display: block !important;
    width: auto !important;
    min-height: 0 !important;
    margin: 0 0 6px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(255,255,255,.72) !important;
    font-size: .74rem !important;
    font-weight: 950 !important;
    letter-spacing: .22em !important;
    line-height: 1.1 !important;
    text-transform: uppercase !important;
  }

  .conditions-shortcut h2 {
    margin: 0 0 9px !important;
    max-width: 100% !important;
    font-family: Anton, Impact, sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: .045em !important;
    line-height: .94 !important;
    font-size: clamp(2rem, 9vw, 2.85rem) !important;
    color: #fff !important;
    text-wrap: balance;
  }

  .conditions-shortcut p:not(.section-kicker) {
    max-width: none !important;
    margin: 0 0 14px !important;
    color: rgba(255,255,255,.76) !important;
    font-size: .94rem !important;
    line-height: 1.45 !important;
  }

  .conditions-shortcut__actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .conditions-shortcut__actions .btn {
    width: 100% !important;
    min-height: 44px !important;
    padding: 0 10px !important;
    border-radius: 999px !important;
    font-size: .86rem !important;
    font-weight: 950 !important;
    box-shadow: none !important;
  }

  .conditions-shortcut__actions .btn--ghost {
    color: #fff !important;
    background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.045)) !important;
    border: 1px solid rgba(255,255,255,.16) !important;
  }

  .conditions-shortcut__actions .btn--primary {
    color: #111 !important;
    background: linear-gradient(135deg, #fff9e9, var(--gold)) !important;
  }
}

@media (max-width: 360px) {
  .conditions-shortcut {
    width: calc(100% - 28px) !important;
    padding: 16px 14px 14px !important;
  }
  .conditions-shortcut h2 {
    font-size: 1.88rem !important;
  }
  .conditions-shortcut__actions {
    grid-template-columns: 1fr !important;
  }
}

/* V42 — estimation automatique du temps d'attente */
.order-confirm-summary__estimate {
  display: grid;
  gap: 7px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 203, 42, .16), rgba(141, 17, 29, .14));
  border: 1px solid rgba(255, 203, 42, .30);
}

.order-confirm-summary__estimate strong {
  color: var(--yellow);
  font-size: 1.05rem;
  font-weight: 950;
}

.order-confirm-summary__estimate p {
  margin: 0;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 950;
  line-height: 1.25;
}

.order-confirm-summary__estimate small {
  color: rgba(255, 248, 237, .78);
  font-weight: 800;
}

.order-success-card p strong {
  color: inherit;
}

.tracking-prep-estimate small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 248, 237, .72);
  font-weight: 750;
  line-height: 1.35;
}


/* V50 — correction iPhone/Chrome : fiche produit calée sur le viewport visible */
@media (max-width: 640px) {
  html.product-modal-open,
  body.product-modal-open {
    overflow: hidden !important;
    overscroll-behavior: none !important;
  }

  body.product-modal-open .cart-floating,
  body.product-modal-open .mobile-call,
  body.product-modal-open .active-tracking-button {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .product-modal {
    position: fixed !important;
    inset: auto !important;
    top: var(--pixou-modal-top, 0px) !important;
    left: var(--pixou-modal-left, 0px) !important;
    width: var(--pixou-modal-width, 100vw) !important;
    height: var(--pixou-modal-vh, var(--pixou-vh, 100dvh)) !important;
    min-height: var(--pixou-modal-vh, var(--pixou-vh, 100dvh)) !important;
    max-height: var(--pixou-modal-vh, var(--pixou-vh, 100dvh)) !important;
    padding: 0 !important;
    display: grid !important;
    place-items: end center !important;
    overflow: hidden !important;
    background: rgba(0,0,0,.78) !important;
  }

  .product-modal__overlay {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
    background: rgba(0,0,0,.78) !important;
  }

  .product-modal__card {
    width: 100% !important;
    max-height: calc(var(--pixou-modal-vh, var(--pixou-vh, 100dvh)) - 4px) !important;
    margin: 0 !important;
    padding-bottom: 0 !important;
    border-radius: 26px 26px 0 0 !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch !important;
    background: #fff !important;
    box-shadow: 0 -20px 70px rgba(0,0,0,.45) !important;
    transform: translate3d(0,0,0) !important;
    contain: none !important;
  }

  .product-modal__card > img {
    height: min(280px, 34vh) !important;
  }

  .product-modal__body {
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .add-to-cart-main {
    position: sticky !important;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px)) !important;
    z-index: 30 !important;
    width: 100% !important;
    box-shadow: 0 12px 30px rgba(242,189,50,.24), 0 10px 26px rgba(0,0,0,.10) !important;
  }
}


.order-notice.is-rush{border-color:rgba(255,207,51,.82);background:linear-gradient(135deg,rgba(255,207,51,.24),rgba(231,51,36,.18));box-shadow:0 20px 48px rgba(231,51,36,.20)}.orders-rush-banner{margin:14px 0;padding:14px;border-radius:18px;border:1px solid rgba(255,207,51,.38);background:linear-gradient(145deg,rgba(255,207,51,.13),rgba(231,51,36,.10));color:var(--text,#fff8ed);box-shadow:inset 0 0 0 1px rgba(255,255,255,.05)}.orders-rush-banner strong{display:block;margin-bottom:5px;color:#ffcf33;font-weight:900}.orders-rush-banner p{margin:0;color:#f4e6c8;line-height:1.45;font-weight:700}

/* V81 — forte affluence séparée du bloc commandes ouvertes */
.hero-rush-banner {
  margin: 10px 0 0 !important;
}

.orders-rush-banner {
  border-color: rgba(255,207,51,.56) !important;
  background: linear-gradient(145deg, rgba(255,207,51,.18), rgba(70,25,12,.72)) !important;
  color: #fff8ed !important;
  box-shadow: 0 18px 42px rgba(0,0,0,.20), inset 0 0 0 1px rgba(255,255,255,.07) !important;
}

.orders-rush-banner strong {
  color: #ffcf33 !important;
  text-shadow: 0 1px 0 rgba(0,0,0,.45) !important;
}

.orders-rush-banner p {
  color: #fff8ed !important;
  opacity: 1 !important;
  text-shadow: 0 1px 0 rgba(0,0,0,.35) !important;
}

.order-notice.is-rush {
  border-color: rgba(255,255,255,.12) !important;
  background: rgba(255,255,255,.06) !important;
  box-shadow: none !important;
}

/* V82 — lisibilité du bloc forte affluence dans le panier */
#ordersRushBanner {
  border-color: rgba(255, 207, 51, .82) !important;
  background: linear-gradient(145deg, rgba(255, 207, 51, .22), rgba(14, 14, 12, .96)) !important;
  box-shadow: 0 16px 38px rgba(0,0,0,.32), inset 0 0 0 1px rgba(255,255,255,.09) !important;
}

#ordersRushBanner strong {
  color: #ffd84d !important;
  font-weight: 950 !important;
  text-shadow: 0 2px 0 rgba(0,0,0,.55) !important;
}

#ordersRushBanner p {
  color: #ffffff !important;
  font-weight: 900 !important;
  opacity: 1 !important;
  text-shadow: 0 2px 0 rgba(0,0,0,.62) !important;
}

/* V83 — panier : bloc forte affluence plus contrasté */
.cart-drawer #ordersRushBanner {
  margin: 14px 0 16px !important;
  border: 2px solid rgba(255, 207, 51, .95) !important;
  background:
    linear-gradient(145deg, rgba(28, 10, 5, .98), rgba(8, 8, 7, .98)) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 36px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.12) !important;
}

.cart-drawer #ordersRushBanner strong {
  color: #ffcf33 !important;
  font-size: 1rem !important;
  font-weight: 950 !important;
  letter-spacing: .01em !important;
  text-shadow: 0 2px 0 rgba(0,0,0,.70) !important;
}

.cart-drawer #ordersRushBanner p {
  color: #ffffff !important;
  font-size: .96rem !important;
  font-weight: 950 !important;
  line-height: 1.45 !important;
  opacity: 1 !important;
  text-shadow: 0 2px 0 rgba(0,0,0,.70) !important;
}


/* V84 — panier : alerte forte affluence ultra lisible */
.cart-drawer #ordersRushBanner {
  margin: 14px 0 16px !important;
  border: 2px solid rgba(255, 255, 255, .92) !important;
  background: linear-gradient(145deg, #ffcf33 0%, #ffd94f 58%, #f3b21f 100%) !important;
  color: #160f00 !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.34), 0 0 0 1px rgba(0,0,0,.18) inset !important;
}
.cart-drawer #ordersRushBanner strong,
.cart-drawer #ordersRushBanner p {
  color: #160f00 !important;
  text-shadow: none !important;
  opacity: 1 !important;
}
.cart-drawer #ordersRushBanner strong {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  font-size: 1rem !important;
  font-weight: 950 !important;
}
.cart-drawer #ordersRushBanner strong::before {
  content: "⚠";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(22,15,0,.14);
  color: #160f00;
  font-size: .86rem;
  line-height: 1;
}
.cart-drawer #ordersRushBanner p {
  font-size: .98rem !important;
  font-weight: 950 !important;
  line-height: 1.42 !important;
}


/* V85 — panier : forte affluence lisible mais moins agressive */
.cart-drawer #ordersRushBanner {
  margin: 14px 0 16px !important;
  border: 1px solid rgba(255, 207, 51, .70) !important;
  background: linear-gradient(145deg, rgba(42, 31, 10, .96), rgba(18, 17, 13, .98)) !important;
  color: #fff8e6 !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.07) !important;
}
.cart-drawer #ordersRushBanner strong,
.cart-drawer #ordersRushBanner p {
  color: #fff8e6 !important;
  text-shadow: 0 1px 0 rgba(0,0,0,.45) !important;
  opacity: 1 !important;
}
.cart-drawer #ordersRushBanner strong {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  color: #ffcf33 !important;
  font-size: 1rem !important;
  font-weight: 950 !important;
}
.cart-drawer #ordersRushBanner strong::before {
  content: "⚠";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255,207,51,.18);
  border: 1px solid rgba(255,207,51,.38);
  color: #ffcf33;
  font-size: .86rem;
  line-height: 1;
}
.cart-drawer #ordersRushBanner p {
  font-size: .96rem !important;
  font-weight: 850 !important;
  line-height: 1.45 !important;
}
