body,
button,
input,
select,
textarea{
  font-family: 'Lexend', sans-serif !important;
}

h1, h2, h3, h4, h5{
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
}

<?=$cssTheme?>

:root{
  --brand: <?=h($primary)?>;
  --brand2: <?=h($secondary)?>;
  --btn-radius: <?= (int)$radius ?>px;
  --brandText: <?=h($primary_text)?>;
  --brand2Text: <?=h($secondary_text)?>;
  --line: rgba(17,24,39,.12);
  --muted: rgba(17,24,39,.62);
  --soft: rgba(17,24,39,.06);
}

html,
body{
  max-width: 100%;
  overflow-x: clip;
}

body{
  background: #f5f6fa;
  position: relative;
}

.container-p-y{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.page-title{
  font-weight: 900;
  letter-spacing: -.3px;
  margin: 0;
}

.brandBadge{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.brandLogo{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
}

.mIcon{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--brand);
  font-size: 18px;
  z-index: 1;
}

a {
    color: var(--brand);
}

a:hover {
    color: var(--brand);
    text-decoration: underline;
}

.btn-primary{
  background: var(--brand);
  color: var(--brandText);
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(var(--brand-rgb), .18)!important;
}


.btn-primary:hover{
  background: var(--brandText);
  color: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 10px 22px rgba(var(--brand-rgb), .18)!important;
}

.btn-primary:active{
    color: ar(--brandText)!important;
    background-color:var(--brand)!important;
    border-color: var(--brand)!important;
}


.btn-outline-primary{
  background: var(--brandText);
  color: var(--brand);
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(var(--brand-rgb), .18)!important;
}

.btn-outline-primary:hover{
  background: var(--brand);
  color: var(--brandText);
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(var(--brand-rgb), .18)!important;
}

.btn-check:focus + .btn-primary, .btn-primary:focus, .btn-primary.focus {
    color: ar(--brandText)!important;
    background-color:var(--brand)!important;
    border-color: var(--brand)!important;
}


.modeCard.active{
  border-color: var(--brand)!important;
  box-shadow: 0 10px 22px rgba(var(--brand-rgb), .18)!important;
}

.modeCard:hover{
  border-color: var(--brand)!important;
  box-shadow: 0 10px 22px rgba(var(--brand-rgb), .18);
}

.calDay.active{
  border-color: var(--brand);
  background: color-mix(in srgb, var(--brand) 10%, transparent);
  color: #000000;
}

#chips .chip.active{
  background: var(--brand);
  color: var(--brandText);
  border-color: var(--brand);
  text-transform: uppercase;
}

/* =========================
   Hero
========================= */
.restaurant-hero{
  position: relative;
  min-height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background: #111827;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
}

.restaurant-hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.86) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.18) 75%);
}

.restaurant-hero__container{
  position:relative;
  z-index:2;
  padding: 26px;
  color:#fff;
}

.restaurant-hero__title{
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 10px 0 10px;
}

.restaurant-hero__details{
  display:flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-weight: 700;
  opacity: .95;
}

.restaurant-detail{
  display:flex;
  align-items:center;
  gap:8px;
}

.restaurant-detail--link{
  color:#fff;
  text-decoration:none;
  opacity:.9;
}

.restaurant-detail--link:hover{
  opacity:1;
  text-decoration: underline;
}

.restaurant-icon{
  width:18px;
  height:18px;
  fill: currentColor;
}

.restaurant-badge-rating{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  font-weight: 900;
}

.restaurant-icon--star{
  width:16px;
  height:16px;
  fill:#f5a623;
}

/* =========================
   Mode cards
========================= */
.modeGrid{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 12px;
}

.modeCard{
  position:relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  display:flex;
  align-items:center;
  gap: 12px;
  background:#fff;
  cursor:pointer;
  user-select:none;
  transition: .18s ease;
  overflow:hidden;
}

.modeCard.active::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(<?=hexdec(substr($primary,1,2))?>,<?=hexdec(substr($primary,3,2))?>,<?=hexdec(substr($primary,5,2))?>,.10);
  pointer-events:none;
}

.mTitle{
  font-weight: 950;
}

.mSub{
  font-weight: 700;
  color: var(--muted);
  font-size: 13px;
}

/* =========================
   Chips sticky
========================= */
.chips,
#chips{
  display:flex;
  flex-wrap: nowrap;
  gap:10px;
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling: touch;
  padding: 8px 2px;
  background: transparent;
  backdrop-filter: blur(8px);
  border-radius: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.chips{
  margin-top: 10px;
  position: sticky;
  top: 6px;
  z-index: 50;
}

#chips::-webkit-scrollbar,
.chips::-webkit-scrollbar{
  display:none;
}

.chip{
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 950;
  cursor: pointer;
  white-space: nowrap;
}

#chips .chip{
  color: var(--brand);
  background: var(--brandText);
  text-transform: uppercase;
}

/* =========================
   Sections
========================= */
.catSection{
  margin-top: 16px;
  scroll-margin-top: 90px;
}

.catTitle{
  font-size: 20px;
  font-weight: 950;
  margin: 14px 0 10px;
  text-transform:uppercase;
}

.catSticky{
  position: sticky;
  top: 12px;
  z-index: 120;
  background: #f5f6fa;
  padding-top: 6px;
  padding-bottom: 8px;
}

.catStickyTitle{
  font-size: 24px;
  margin-bottom: 10px;
}

/* =========================
   Grid catégories / produits
========================= */
#itemsGrid{
  display: flex !important;
  flex-direction: column !important;
  gap: 28px !important;
}

#itemsGrid .catSection{
  width: 100% !important;
  margin: 0 !important;
}

#itemsGrid .catSection,
#itemsGrid .catTitle,
#itemsGrid .catGrid{
  float: none !important;
}

#itemsGrid .catGrid,
.catGrid{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  align-items: stretch !important;
}

#itemsGrid .cardItem{
  height: 100% !important;
}

#itemsGrid .cardItem,
#itemsGrid .productCard{
  width: 100% !important;
  min-width: 0 !important;
}

/* =========================
   Product cards
========================= */
.productCard{
  display:flex !important;
  flex-wrap: nowrap !important;
  justify-content:space-between;
  align-items:stretch !important;
  background:#fff;
  border-radius:16px;
  border:1px solid var(--line);
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
  overflow:hidden !important;
  min-height: 132px;
  height: 100% !important;
}

.productContent{
  flex:1 1 auto !important;
  min-width:0 !important;
  overflow: hidden !important;
  padding: 16px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.productTitle{
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
  color: #111827;
}

.productDesc{
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:hidden;
}

.productPriceRow{
  display:flex;
  gap:10px;
  align-items:baseline;
  margin-top:auto;
}

.productPrice{
  font-size: 20px;
  font-weight: 600;
  color: #7a7a7a;
}

.productOldPrice{
  font-size: 18px;
  text-decoration: line-through;
  color: rgba(17,24,39,.55);
  font-weight: 900;
}

.productImageBox{
  position:relative;
  flex: 0 0 170px !important;
  width: 170px !important;
  background: #f3f4f7;
  border-left: 1px solid rgba(0,0,0,.06);
  overflow: hidden !important;
  align-self: stretch !important;
}

.productImageBox img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}

.productAddBtn{
  position:absolute;
  right: 12px;
  bottom: 12px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 0;
  background: var(--brand);
  color:#fff;
  font-size: 34px;
  border: 3px solid var(--brandText);
  line-height: 0;
  font-weight: 900;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  transition: .18s ease;
}

.productAddBtn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

.productBadge{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 10px;
  margin-bottom: 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: color-mix(in srgb, var(--brand) 12%, white);
  color: var(--brand);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, white);
}

/* =========================
   Checkout / recap
========================= */
.checkoutSticky{
  position: sticky;
  top: 16px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color: #000!important;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 950;
  font-size: 12px;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.08);
}

.payBtn{
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--btn-radius);
  border: 0;
  font-weight: 950;
  font-size: 16px;
  transition: .18s ease;
}

.payBtn:disabled{
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  box-shadow:none;
}

.payBtn.enabled,
.payBtn:not(:disabled){
  background: var(--brand);
  color:#fff;
  cursor:pointer;
}

.payBtn.enabled:hover,
.payBtn:not(:disabled):hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
}

.cartItems{
  display:grid;
  gap: 10px;
}

.cartItemRow{
  display: block;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
}

.cartLeft{
  min-width:0;
}

.cartRight{
  display:flex;
  align-items:center;
  gap:14px;
}

.cartTitle{
  font-weight:700;
}

.cartSub{
  color:#6b7280;
}

.cartQty{
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px;
}

.cartPrice{
  font-weight: 950;
}

.qtyBtns{
  display:flex;
  align-items:center;
  gap:6px;
  margin-top: 8px;
  line-height: 10px;
}

.qbtn{
  width:36px;
  height:36px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  background:white;
  font-size:18px;
  cursor:pointer;
  font-weight: 950;
}

.qtyValue{
  min-width:18px;
  text-align:center;
  font-weight:600;
}

.mobile-cart-thumb{
  width: 95px;
  height: 95px;
  border-radius: 14px;
  object-fit: cover;
  flex: 0 0 95px;
  border: 1px solid rgba(67,89,113,.14);
  background: #f5f5f9;
}

.cart-sidebar{
  position: sticky;
  top: 90px;
}

.mobileRecapOld{
  display:none !important;
}

/* =========================
   Promo accordion
========================= */
#promoAccordion .accordion-button,
#promoAccordion .accordion-item{
  background: transparent;
}

/* =========================
   Calendar / Flatpickr
========================= */
.calDay.closed{
  opacity:.45;
  filter: grayscale(80%);
  background:#f5f5f5;
  border-color:#e2e2e2;
  cursor:not-allowed;
  pointer-events:none;
}

.calDay.closed .calClosed{
  font-weight: 900;
}

.calClosed{
  color: white;
  background: #f93232;
  text-align: center;
  border-radius: 30px;
  font-size: 12px;
}

.calDay.closed .calSub{
  color:#c0392b;
  font-weight:700;
}

.calDay.closed .calTop{
  color:#999;
}

#modeDetails .form-select{
  font-weight: 500;
}

#modeDetails .form-label{
  color: rgba(17,24,39,.8);
}

.flatpickr-calendar{
  border: 1px solid rgba(17,24,39,.12);
  border-radius: 14px;
  box-shadow: 0 18px 55px rgba(0,0,0,.14);
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.flatpickr-months .flatpickr-month{
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.flatpickr-day{
  border-radius: 12px;
  font-weight: 700;
}

.flatpickr-day.today{
  border-color: rgba(0,0,0,.15);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange{
  background: var(--brand);
  border-color: var(--brand);
}

.flatpickr-day:hover{
  background: rgba(0,0,0,.06);
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover{
  color: rgba(17,24,39,.35) !important;
  background: rgba(17,24,39,.06) !important;
  border-color: transparent !important;
  text-decoration: line-through;
  cursor: not-allowed;
}

.dateScroller,
.calendarRow,
.calendarRow *{
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.dateScroller::-webkit-scrollbar,
.calendarRow *::-webkit-scrollbar{
  width: 0;
  height: 0;
  display: none;
}

/* =========================
   Hero screenshot-like
========================= */
.heroShotWrap{
  width:100%;
  position:relative;
}

.heroShotBanner{
  position: relative;
  height: 185px;
  border-radius: 26px;
  overflow: hidden;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

.heroShotOverlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.06) 0%,
    rgba(0,0,0,.12) 55%,
    rgba(0,0,0,.14) 100%
  );
  z-index: 1;
}

.heroShotActions{
  position:absolute;
  top: 16px;
  right: 16px;
  display:flex;
  gap: 12px;
  z-index: 3;
}

.heroShotBtnWhite{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  background:#fff !important;
  color:#566a7f !important;
  border: 1px solid rgba(0,0,0,.10) !important;
  padding: 10px 16px !important;
  border-radius: 10px !important;
  font-weight: 700;
  line-height: 1.1;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  transition: transform .15s ease, box-shadow .15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.heroShotBtnWhite:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
  text-decoration: none;
}

.heroShotLogo{
  position:absolute;
  left: 38px;
  top: 185px;
  transform: translateY(-56px);
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: #fff;
  border: 6px solid #fff;
  box-shadow: 0 14px 32px rgba(0,0,0,.20);
  overflow: hidden;
  z-index: 50;
  display:flex;
  align-items:center;
  justify-content:center;
}

.heroShotLogo img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.heroShotInfo{
  position: relative;
  padding-left: 178px;
  padding-right: 12px;
  margin-top: 10px;
}

.heroShotTitle{
  font-weight: 900;
  letter-spacing: -.02em;
  margin: 0 0 10px 0;
  font-size: 44px;
  color: #000000;
  text-transform: capitalize;
}

.heroShotChips{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.heroShotChip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #eceef1;
  color: #566a7f;
  font-size: 14px;
  line-height: 1.2;
  max-width: 100%;
  min-width: 0;
}

.heroShotChip span{
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.heroShotChip i{
  font-size: 18px;
  margin-right: 8px;
  line-height: 1;
  opacity: .9;
}

.heroShotChip a{
  color: inherit;
  text-decoration: none;
}

.heroShotChip a:hover{
  text-decoration: underline;
}

.heroShotChipRating{
  font-weight: 900;
  padding: 10px 14px;
  background: color-mix(in srgb, var(--brand) 10%, transparent);
  color: #566a7f;
}

.heroShotChipRating .ratingCount{
  opacity: .8;
  font-weight: 700;
  margin-left: 4px;
}

.heroShotDivider{
  margin-top: 16px;
  border-bottom: 2px solid rgba(0,0,0,.08);
}

.heroShotChipLink{
  text-decoration: none;
  cursor: pointer;
}

.heroShotChipLink:hover{
  filter: brightness(.98);
}

/* =========================
   Menu options
========================= */
.menu-option-card{
  transition: .18s ease;
  cursor: pointer;
  padding: 14px;
  border-radius: 18px !important;
  border: 1px solid rgba(67,89,113,.12) !important;
  background: #fff !important;
  box-shadow: none;
}

.menu-option-card:hover{
  border-color: var(--brand) !important;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}

.menu-option-row{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.menu-option-check{
  flex: 0 0 28px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.menu-step-opt{
  width: 22px;
  height: 22px;
  margin: 0 !important;
}

.menu-option-media{
  width: 92px;
  height: 92px;
  min-width: 92px;
  max-width: 92px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(67,89,113,.14);
  background:#f5f5f9;
  display: block;
}

.menu-option-body{
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.option-title{
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 4px;
  overflow-wrap: anywhere;
}

.option-desc{
  color:#8a97a8;
  font-size:.95rem;
  line-height:1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.option-price-note{
  margin-top: 8px;
  font-weight: 700;
  color: #6b7280;
  font-size: .94rem;
}

.menu-step-qty{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.menu-step-qty .btn{
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: 14px;
  padding: 0;
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-qty-value{
  min-width: 24px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.menu-cat-counter{
  font-weight: 700;
  color: #8a97a8;
}

.menu-option-disabled{
  opacity: 0.45;
  pointer-events: none;
  filter: grayscale(40%);
  background: #f3f4f6 !important;
}

.articleCard{
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.articleCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
}

/* =========================
   Modal article / menu desktop
========================= */
#articleModal .modal-content,
#menuComposeModal .modal-content{
  border-radius: 22px !important;
}

#menuComposeModal .modal-header{
  border-bottom: 1px solid rgba(67,89,113,.10);
}

#menuComposeModal .modal-body{
  background: #fafbfc;
}

#menuComposeModal .modal-footer{
  border-top: 1px solid rgba(67,89,113,.10);
  background: #fff;
}

/* =========================
   Mobile
========================= */
@media (max-width: 992px){
  .modeGrid{
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }
}

@media (max-width: 991.98px){
  .cartOffcanvasFull{
    height: 100dvh !important;
    max-height: 100dvh !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .cartOffcanvasFull .offcanvas-body{
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 90px;
  }

  #cartOffcanvas.offcanvas-bottom.cartOffcanvasFull{
    height: 85dvh !important;
    max-height: 85dvh !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    border-top-left-radius: 18px !important;
    border-top-right-radius: 18px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  #cartOffcanvas .offcanvas-header{
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
  }
}

#cartOffcanvas .offcanvas-footer{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 12px 16px;
}

@media (max-width: 900px){
  #itemsGrid .catGrid,
  .catGrid{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px){
  .restaurant-hero{
    min-height: 300px;
  }

  .restaurant-hero__title{
    font-size: 28px;
  }

  .restaurant-hero__container{
    padding: 18px;
  }

  .restaurant-hero__details{
    flex-direction: column;
    gap: 10px;
  }

  .modeCard{
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .mSub{
    display: none;
  }

  .mIcon{
    font-size: 24px;
  }

  .heroShotBtnWhite{
    padding: 10px !important;
    width: 46px;
    height: 46px;
    border-radius: 12px !important;
    justify-content: center;
    gap: 0;
  }

  .heroShotBtnWhite .btnText{
    display:none;
  }

  .heroShotBtnWhite i{
    font-size: 22px;
  }

  .heroShotBanner{
    height: 160px;
    border-radius: 18px;
  }

  .heroShotLogo{
    top: 100px;
    transform: translateY(-48px);
    width: 160px;
    height: 160px;
    right: 0;
    left: 0;
    margin: auto;
  }

  .heroShotInfo{
    padding-left: 0;
    margin-top: 64px;
    text-align: center;
  }

  .heroShotChips{
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .heroShotChip{
    max-width: calc(100vw - 48px);
  }

  .heroShotChip span{
    white-space: normal;
    text-align: center;
  }

  .heroShotChipEmail .chipText,
  .heroShotChipPhone .chipText{
    display: none;
  }

  .heroShotChipEmail i,
  .heroShotChipPhone i{
    margin-right: 0;
    font-size: 20px;
  }

  .heroShotChipEmail,
  .heroShotChipPhone{
    padding: 10px 12px;
    min-width: 44px;
    justify-content: center;
  }

  .productImageBox{
    flex-basis: 140px !important;
    width: 140px !important;
  }
}

@media (max-width: 767.98px){
  .btn-icon-mobile{
    width: 46px;
    height: 46px;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-width: 2px;
    border-radius: 12px;
  }

  .btn-icon-mobile i{
    font-size: 26px;
  }
}

/* =========================
   MOBILE MENU MODAL / CART
========================= */
@media (max-width: 768px){

  /* ===== Modale menu ===== */
  #menuComposeModal .modal-dialog{
    margin: 0 !important;
    max-width: 100vw !important;
    width: 100vw !important;
    min-height: 100dvh !important;
    display: flex;
    align-items: flex-end;
  }

  #menuComposeModal .modal-content{
    width: 100% !important;
    border-radius: 24px 24px 0 0 !important;
    min-height: 82dvh;
    max-height: 92dvh;
    overflow: hidden;
  }

  #menuComposeModal .modal-header{
    position: sticky;
    top: 0;
    z-index: 30;
    background: #fff;
    padding: 18px 18px 14px;
    border-bottom: 1px solid rgba(67,89,113,.10);
  }

  #menuComposeModal .modal-title{
    font-size: 1.15rem;
    line-height: 1.25;
    font-weight: 800;
    color: #22304a;
    padding-right: 16px;
  }

  #menuComposeModal .modal-body{
    padding: 14px 16px 120px !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fafbfc;
  }

  #menuComposeModal .modal-footer{
    position: sticky;
    bottom: 0;
    z-index: 35;
    background: #fff;
    border-top: 1px solid rgba(67,89,113,.10);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom)) !important;
    box-shadow: 0 -10px 24px rgba(15,23,42,.06);
  }

  #menuComposePrice{
    min-width: 96px;
    font-size: 1.05rem;
    font-weight: 900;
    color: #0f172a;
  }

  #menuComposeAddBtn{
    min-height: 54px !important;
    border-radius: 16px !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
  }

  /* ===== étapes ===== */
  #menuComposeBody > .mb-4{
    margin-bottom: 16px !important;
  }

  #menuComposeBody .card{
    border: 1px solid rgba(67,89,113,.08) !important;
    border-radius: 18px !important;
    box-shadow: 0 6px 18px rgba(15,23,42,.04);
    overflow: hidden;
  }

  #menuComposeBody .card-body{
    padding: 14px !important;
  }

  /* ===== cartes options ===== */
  .menu-option-card{
    display: block !important;
    padding: 12px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(67,89,113,.10) !important;
    background: #fff !important;
    min-height: auto !important;
    overflow: hidden;
  }

  .menu-option-row{
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    min-width: 0 !important;
  }

  .menu-option-check{
    flex: 0 0 24px !important;
    display: flex !important;
    justify-content: center !important;
    padding-top: 4px !important;
  }

  .menu-step-opt{
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
  }

  .menu-option-media{
    width: 84px !important;
    height: 84px !important;
    min-width: 84px !important;
    max-width: 84px !important;
    border-radius: 14px !important;
    object-fit: cover !important;
    display: block !important;
    border: 1px solid rgba(67,89,113,.10);
    background: #f3f4f6;
  }

  .menu-option-body{
    min-width: 0 !important;
    flex: 1 1 auto !important;
    overflow: hidden !important;
  }

  .option-title{
    font-size: 1rem !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 6px !important;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .option-desc{
    font-size: .92rem !important;
    line-height: 1.35 !important;
    color: #7b8798 !important;
    margin-top: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .option-price-note{
    margin-top: 8px !important;
    font-size: .92rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
  }

  .menu-step-qty{
    margin-top: 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .menu-step-qty .btn{
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    padding: 0 !important;
    font-size: 22px !important;
    line-height: 1 !important;
  }

  .menu-qty-value{
    min-width: 24px !important;
    text-align: center !important;
    font-size: 17px !important;
    font-weight: 800 !important;
  }

  .menu-cat-counter{
    font-size: .92rem !important;
    font-weight: 700 !important;
    color: #7b8798 !important;
  }

  .menu-option-disabled{
    opacity: .45 !important;
    pointer-events: none !important;
    filter: grayscale(40%);
  }

  /* ===== Modale article ===== */
  #articleModal .modal-dialog{
    margin: 0 !important;
    max-width: 100vw !important;
    width: 100vw !important;
    min-height: 100dvh !important;
    display: flex;
    align-items: flex-end;
  }

  #articleModal .modal-content{
    width: 100% !important;
    border-radius: 24px 24px 0 0 !important;
    min-height: 82dvh;
    max-height: 92dvh;
    overflow: hidden;
  }

  #articleModal .modal-header{
    position: sticky;
    top: 0;
    z-index: 30;
    background: #fff;
    border-bottom: 1px solid rgba(67,89,113,.10);
    padding: 16px 16px 12px;
  }

  #articleModal .modal-body{
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px !important;
    background: #fafbfc;
  }

  #articleModalImage{
    height: 220px !important;
    border-radius: 18px !important;
  }

  /* ===== Panier mobile ===== */
  #cartOffcanvas.offcanvas-bottom.cartOffcanvasFull{
    height: 85dvh !important;
    max-height: 85dvh !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    border-top-left-radius: 22px !important;
    border-top-right-radius: 22px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  #cartOffcanvas .offcanvas-header{
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    padding: 16px 16px 14px;
    border-bottom: 1px solid rgba(67,89,113,.10);
  }

  #cartOffcanvas .offcanvas-body{
    padding: 14px 16px 0px !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fafbfc;
  }

  #cartOffcanvas .offcanvas-footer{
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,.08);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    box-shadow: 0 -10px 24px rgba(15,23,42,.06);
  }

  #mobileCartList .cartItemRow{
    padding: 14px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(67,89,113,.10) !important;
    background: #fff !important;
    box-shadow: 0 4px 12px rgba(15,23,42,.04);
  }

  .mobile-cart-thumb{
    width: 86px !important;
    height: 86px !important;
    border-radius: 14px !important;
    object-fit: cover !important;
    flex: 0 0 86px !important;
  }

  .cartTitle{
    font-size: 1rem !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    color: #0f172a !important;
  }

  .cartQty{
    font-size: .92rem !important;
    color: #7b8798 !important;
    margin-top: 4px !important;
  }

  .cartPrice{
    font-size: 1rem !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    white-space: nowrap;
  }

  .qtyBtns{
    display: flex !important;
    gap: 8px !important;
    margin-top: 10px !important;
  }

  .qtyBtns .qbtn{
    width: 42px !important;
    height: 42px !important;
    border-radius: 14px !important;
    font-size: 22px !important;
    padding: 0 !important;
  }

  #cartOffcanvas .text-muted.small{
    font-size: .95rem !important;
  }

  #m_total{
    font-size: 1.15rem !important;
    font-weight: 900 !important;
    color: #0f172a !important;
  }
}


/* =========================
   Reviews section
========================= */
#reviewsSection{
  scroll-margin-top: 110px;
}

.reviewsBlock{
  background: #f4f6f7;
  border: 1px solid #d9e0e3;
  border-radius: 20px;
  padding: 28px;
}

.reviewsSummary{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid #d9e0e3;
}

.reviewsSummaryLeft{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.reviewsBigNote{
  font-size: 72px;
  line-height: 1;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -2px;
}

.reviewsStarsLine{
  display: flex;
  gap: 4px;
  margin-top: 10px;
}

.reviewsStar,
.reviewsStarSmall{
  color: #d7dadd;
  line-height: 1;
}

.reviewsStar.is-filled,
.reviewsStarSmall.is-filled{
  color: var(--brand);
}

.reviewsStar{
  font-size: 24px;
}

.reviewsStarSmall{
  font-size: 16px;
}

.reviewsCountText{
  margin-top: 14px;
  font-size: 18px;
  font-weight: 500;
  color: #6f7f84;
}

.reviewsSummaryRight{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reviewsBarRow{
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 16px;
  align-items: center;
}

.reviewsBarLabel{
  font-size: 18px;
  font-weight: 500;
  color: #6f7f84;
}

.reviewsBarTrack{
  width: 100%;
  height: 12px;
  background: #d3dbde;
  border-radius: 999px;
  overflow: hidden;
}

.reviewsBarFill{
  height: 100%;
  background: var(--brand);
  border-radius: 999px;
}

.reviewsList{
  display: grid;
  gap: 14px;
}

.reviewCard{
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 16px;
  padding: 16px 18px;
}

.reviewCardTop{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.reviewCardDate{
  font-size: 13px;
  color: #8a97a8;
  font-weight: 700;
  white-space: nowrap;
}

.reviewCardText{
  margin-top: 10px;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 768px){
  .reviewsBlock{
    padding: 18px;
    border-radius: 18px;
  }

  .reviewsSummary{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .reviewsSummaryLeft{
    align-items: center;
    text-align: center;
  }

  .reviewsBigNote{
    font-size: 56px;
  }

  .reviewsCountText{
    font-size: 16px;
  }

  .reviewsBarRow{
    grid-template-columns: 16px 1fr;
    gap: 10px;
  }

  .reviewsBarLabel{
    font-size: 16px;
  }

  .reviewCardTop{
    flex-direction: column;
    align-items: flex-start;
  }
}
  .flowmeaModalModeSwitch{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
  }

  .flowmeaModePill{
    border:1.5px solid #d9dee8;
    background:#fff;
    border-radius:22px;
    min-height:72px;
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 18px;
    font-weight:800;
    font-size:16px;
    color:#1f2a44;
    transition:.2s ease;
    width:100%;
  }

  .flowmeaModePill:hover{
    transform:translateY(-1px);
    box-shadow:0 8px 24px rgba(31,42,68,.08);
  }

  .flowmeaModePill.active{
    border-color:var(--brand);
    background: 
color-mix(in srgb, var(--brand) 10%, transparent);
    box-shadow:0 0 0 3px rgba(85,168,112,.10);
  }

  .flowmeaModePillIcon{
    width:38px;
    height:38px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border:1px solid #e5e9f2;
    font-size:20px;
    flex:0 0 38px;
  }

  .flowmeaModePillText{
    line-height:1.1;
  }

  .flowmeaModalQuickFields{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
  }

  .flowmeaQuickLabel{
    display:block;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.04em;
    color:#6b7280;
    margin-bottom:8px;
  }

  .flowmeaQuickInput{
    display:flex;
    align-items:center;
    gap:10px;
    border:1.5px solid #d9dee8;
    border-radius:18px;
    background:#f8fafc;
    min-height:58px;
    padding:0 16px;
  }

  .flowmeaQuickIcon{
    font-size:20px;
    color:#64748b;
    flex:0 0 auto;
  }

  .flowmeaQuickRealInput{
    border:0 !important;
    outline:none !important;
    background:transparent !important;
    width:100%;
    font-size:18px;
    font-weight:700;
    color:#1f2a44;
    box-shadow:none !important;
    padding:0 !important;
  }

  .flowmeaCCCard{
    border:1px solid #e5e7eb;
    border-radius:22px;
    background:#f8fafc;
    padding:22px;
  }

  .flowmeaCCHeader{
    font-size:28px;
    font-weight:900;
    line-height:1;
    margin-bottom:8px;
    color:#1f2937;
  }

  .flowmeaCCSub{
    color:#64748b;
    font-size:14px;
    margin-bottom:18px;
  }

  .flowmeaCCLocationBox{
    border:1.5px solid #d9dee8;
    border-radius:18px;
    background:#fff;
    padding:14px 16px;
    margin-bottom:14px;
  }

  .flowmeaCCLocationTitle{
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    color:#6b7280;
    margin-bottom:4px;
  }

  .flowmeaCCLocationValue{
    font-size:18px;
    font-weight:700;
    color:#1f2937;
    line-height:1.3;
  }

  .flowmeaCCTimeWrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
  }

  .flowmeaSelectClean{
    width:100%;
    min-height:58px;
    border:1.5px solid #d9dee8;
    border-radius:18px;
    background:#fff;
    padding:0 16px;
    font-size:17px;
    font-weight:700;
    color:#1f2937;
  }

  .flowmeaValidateBtn{
    min-width:160px;
    min-height:56px;
    border-radius:999px;
    font-weight:900;
    font-size:22px;
    padding:0 34px;
  }

  @media (max-width: 767.98px){
    .flowmeaModalModeSwitch{
      grid-template-columns:fr 1fr;
      gap:10px;
    }

    .flowmeaModePill{
      min-height:62px;
      border-radius:18px;
      padding:10px 12px;
      font-size:15px;
    }

    .flowmeaModePillIcon{
      width:34px;
      height:34px;
      border-radius:12px;
      font-size:18px;
      flex:0 0 34px;
    }

    .flowmeaCCHeader{
      font-size:24px;
    }

    .flowmeaCCTimeWrap{
      grid-template-columns:1fr;
    }

    .flowmeaQuickRealInput{
      font-size:16px;
    }
  }

/* ===== Bottom sheet Flowmea ===== */
#orderModeModal .modal-dialog.modal-bottom-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

#orderModeModal .modal-content.flowmeaBottomSheetContent {
  pointer-events: auto;
  width: 100%;
  border-radius: 26px 26px 0 0 !important;
  overflow: hidden;
  box-shadow: 0 -18px 50px rgba(0,0,0,.24);
  transform: translateY(100%);
  transition: transform .32s cubic-bezier(.22,1,.36,1);
  max-height: 92vh;
}

#orderModeModal.show .modal-content.flowmeaBottomSheetContent {
  transform: translateY(0);
}

#orderModeModal .modal-body {
  overflow-y: auto;
  max-height: calc(92vh - 92px);
}

#orderModeModal .modal-header {
  padding-top: 10px;
}

#orderModeModal .modal-backdrop,
.modal-backdrop.show {
  opacity: .55 !important;
}

.flowmeaSheetHandle {
  width: 52px;
  height: 5px;
  border-radius: 999px;
  background: #d1d5db;
  margin: 0 auto 7px auto;
}

@media (max-width: 768px) {
  #orderModeModal .modal-content.flowmeaBottomSheetContent {
    border-radius: 24px 24px 0 0 !important;
    max-height: 94vh;
  }

  #orderModeModal .modal-title {
    font-size: 28px !important;
    padding-right: 18px;
    padding-left: 18px;
  }

  #orderModeModal .modal-body {
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-bottom: 20px !important;
    max-height: calc(94vh - 88px);
  }
}
  .quickModeSwitchWrap{
    display:flex;
    gap:10px;
    background:#eef2f7;
    border:1px solid #d9e0ea;
    border-radius:18px;
    padding:8px;
    width:100%;
    max-width:520px;
  }

  .quickModeBtn{
    flex:1;
    border:0;
    border-radius:14px;
    background:transparent;
    color:#5f7187;
    font-weight:800;
    font-size:15px;
    min-height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    transition:.2s ease;
  }


  @media (min-width: 992px){
    .quickModeSwitchWrap{
      margin-bottom: 6px;
    }

    .quickModeBtn{
      min-height:50px;
      font-size:16px;
    }
  }
.flowmeaStepDisabled{
  opacity:.45;
  pointer-events:none;
  filter:grayscale(.15);
}

.flowmeaStepCard{
  transition:all .2s ease;
}

.flowmeaStepCard.is-active{
  opacity:1;
  transform:none;
}

.flowmeaStepCard.is-locked{
  opacity:.45;
}

.flowmeaStepHint{
  font-size:13px;
  color:#7b8794;
  margin-top:6px;
}

.flowmeaModeIntro{
  font-size:15px;
  color:#6b7280;
  text-align:center;
  margin:-6px 0 18px 0;
}


.flowmeaSelectClean:disabled,
.form-select:disabled,
.flowmeaQuickRealInput:disabled{
  background:#f3f4f6 !important;
  color:#9ca3af !important;
  cursor:not-allowed;
}

.flowmeaQuickInput.is-disabled{
  opacity:.5;
  pointer-events:none;
}
/* =========================
   MOBILE APP EDGE TO EDGE
========================= */
@media (max-width: 991.98px){

  .boutiqueAppShell{
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
  }

  .boutiqueAppShell > .row{
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .boutiqueAppShell .col-12,
  .boutiqueAppShell .col-lg-9,
  .boutiqueAppShell .col-lg-3{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .boutiqueAppShell .card{
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    box-shadow: none !important;
  }

  .boutiqueAppShell .card-body{
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .heroShotWrap{
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 0 !important;
  }

  .heroShotBanner{
    border-radius: 0 !important;
  }
}
/* =========================
   CATEGORIES STICKY - MEME MENU
========================= */
.catalogStickyZone{
  position: relative;
  z-index: 20;
}

.catalogStickyInner{
  background: transparent;
  transition: background .18s ease, box-shadow .18s ease, padding .18s ease;
}

.catalogRestaurantName{
  display: none;
}

@media (max-width: 991.98px){
  .container-xxl.flex-grow-1.container-p-y{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .card,
  .heroShotWrap,
  .reviewsBlock,
  .checkoutSticky,
  .catSection,
  #itemsGrid,
  #menuAnchor{
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .catalogStickyZone{
    position: sticky;
    top: 0;
    z-index: 1040;
    width: 100%;
  }

  .catalogStickyInner{
    width: 100%;
    padding: 14px 0 12px;
    background: #fff;
  }

  .catalogStickyZone.is-sticky .catalogStickyInner{
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: calc(env(safe-area-inset-top, 0px) + 10px) 0 10px;
  }

  .catalogRestaurantName{
    display: none;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    color: #0f172a;
    padding: 0 16px;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .catalogStickyZone.is-sticky .catalogRestaurantName{
    display: block;
  }

  .desktopCategoriesTitle{
    padding: 0 16px;
    margin-bottom: 14px;
  }

  .catalogStickyZone.is-sticky .desktopCategoriesTitle{
    display: none;
  }

  #chips.chips{
    width: 100%;
    margin: 0 !important;
    padding: 0 16px 4px !important;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    border-radius: 0 !important;
  }

  #chips.chips::-webkit-scrollbar{
    display: none;
  }

  #chips.chips .chip{
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

.catalogStickyFullWidth{
  position: sticky;
  top: 0;
  z-index: 1035;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.catalogStickyFullWidthInner{
  width: 100%;
  padding: 14px 28px;
}

.catalogStickyInner{
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 74px;
}

.catalogRestaurantName{
  flex: 0 0 auto;
  font-weight: 800;
  font-size: 17px;
  line-height: 1;
  color: #0f172a;
  white-space: nowrap;
  margin-right: 8px;
}

.desktopCategoriesTitle{
  display: none;
}

.chips{
  display: flex;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  flex: 1 1 auto;
  min-width: 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.chips::-webkit-scrollbar{
  display: none;
}

.chip{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1.5px solid #d8dee8;
  background: #ffffff;
  color: #1657c8;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .4px;
  text-transform: uppercase;
  line-height: 1;
  transition: all .18s ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.chip:hover{
  transform: translateY(-1px);
  border-color: #c7d2e3;
  box-shadow: 0 3px 4px rgba(15, 23, 42, 0.07);
}

.chip.active{
  background: #1657c8;
  border-color: #1657c8;
  color: #ffffff;
  box-shadow: 0 3px 5px rgba(22, 87, 200, 0.22);
}

.catalogStickySpacer{
  display: none;
}

@media (min-width: 992px){
  .catalogStickyFullWidthInner{
    padding: 12px 34px;
  }

  .catalogStickyInner{
    min-height: 72px;
  }

  .chip{
    height: 46px;
    padding: 0 20px;
    font-size: 12px;
  }
}

@media (max-width: 991.98px){
  .catalogStickyFullWidth{
    top: 0;
  }

  .catalogStickyFullWidthInner{
    padding: 10px 12px;
  }

  .catalogStickyInner{
    min-height: 56px;
    gap: 10px;
  }

  .catalogRestaurantName{
    display: none;
  }

  .chip{
    height: 42px;
    padding: 0 16px;
    font-size: 12px;
  }
}

.catTitle{
  scroll-margin-top: 110px;
}

.quickModeOuter{
  display: flex;
  justify-content: center;
}

.quickModeSwitchWrap{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px;
  border: 1px solid #d7deea;
  border-radius: 28px;
  background: #eef2f7;
  margin: 0 auto;
}

.quickModeBtn{
  min-width: 240px;
  height: 34px;
  border: 0;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: #6b7a90;
  font-weight: 800;
  font-size: 18px;
  transition: all .2s ease;
}

.quickModeBtn.is-active{
    background:var(--brand);
    color:var(--brandText, #fff);
    box-shadow:0 8px 18px rgba(0,0,0,.10);
}

.catalogStickyFullWidth{
  position: sticky;
  top: 0;
  z-index: 1035;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.catalogStickyFullWidthInner{
  width: 100%;
  padding: 0px;
}

.catalogStickyInner{
  display: flex;
  align-items: center;
  width: 100%;
}

.catalogStickyInner--centered{
  justify-content: center;
}

.chips{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  width: 100%;
}

.chips::-webkit-scrollbar{
  display: none;
}

@media (max-width: 991.98px){
  .quickModeOuter{
    display: block;
  }

  .quickModeSwitchWrap{
    display: flex;
    width: 100%;
    justify-content: stretch;
    padding: 8px;
    gap: 8px;
  }

  .quickModeBtn{
    min-width: 0;
    flex: 1 1 0;
    height: 52px;
    font-size: 16px;
    border-radius: 18px;
  }

  .catalogStickyInner--centered{
    justify-content: flex-start;
  }

  .chips{
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
  }
}

.modal-bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: flex;
  align-items: flex-end;
}

.modal-bottom-sheet .modal-content {
  width: 100%;
  border-radius: 24px 24px 0 0;
  border: 0;
  max-height: 90vh;
  overflow: hidden;
  animation: slideUp .25s ease;
}

/* Scroll interne */
.modal-bottom-sheet .modal-body {
  overflow-y: auto;
  max-height: calc(90vh - 80px);
}

/* Animation */
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0.8;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}