@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

/* ================================================================
   FOOD EXPRESS — DESIGN SYSTEM v2
   Single source of truth for the full site redesign.
   All components, pages, and partials must reference these tokens.
   ================================================================ */

:root {

  /* ── Brand palette ── */
  --brand:          #e12114;
  --brand-dark:     #c01b10;
  --brand-xdark:    #9a1509;
  --brand-light:    rgba(225,33,20,.09);
  --brand-mid:      rgba(225,33,20,.18);
  --brand-gradient: linear-gradient(135deg, #e12114 0%, #b91c1c 100%);

  /* ── Neutral / surface ── */
  --dark:           #111827;
  --dark-2:         #1f2937;
  --dark-3:         #374151;
  --surface:        #ffffff;
  --surface-2:      #f9fafb;
  --surface-3:      #f3f4f6;

  /* ── Typography ── */
  --text:           #111827;
  --text-2:         #374151;
  --text-muted:     #6b7280;
  --text-faint:     #9ca3af;
  --font-sans:      'Open Sans', sans-serif;
  --font-display:   'DM Sans', 'Open Sans', sans-serif;

  /* ── Border ── */
  --border:         #e5e7eb;
  --border-light:   #f0f0f0;

  /* ── Radii ── */
  --radius-sm:      8px;
  --radius:         12px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --radius-pill:    9999px;

  /* ── Shadows ── */
  --shadow-xs:      0 1px 4px rgba(0,0,0,.05);
  --shadow-sm:      0 2px 8px rgba(0,0,0,.06);
  --shadow:         0 6px 28px rgba(0,0,0,.10);
  --shadow-lg:      0 16px 56px rgba(0,0,0,.16);
  --shadow-brand:   0 6px 20px rgba(225,33,20,.35);
  --shadow-brand-lg:0 10px 32px rgba(225,33,20,.45);

  /* ── Spacing scale ── */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  80px;
  --space-10: 96px;

  /* ── Section spacing ── */
  --section-py:     80px;
  --section-py-sm:  48px;

  /* ── Transition ── */
  --transition:     all .26s cubic-bezier(.4,0,.2,1);
  --transition-fast:all .16s cubic-bezier(.4,0,.2,1);
}

/* ════════════════════════════════════════════════
   TYPOGRAPHY SCALE
   ════════════════════════════════════════════════ */
body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--surface-2);
  line-height: 1.6;
}

/* Display / hero headings */
.fe-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.5px;
}
.fe-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.3px;
}
.fe-h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}
.fe-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}
.fe-small {
  font-size: 13px;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════
   SECTION STRUCTURE
   ════════════════════════════════════════════════ */

/* Section wrapper */
.fe-section {
  padding: var(--section-py) 0;
}
.fe-section--sm {
  padding: var(--section-py-sm) 0;
}
.fe-section--dark {
  background: var(--dark);
  color: #fff;
}
.fe-section--surface {
  background: var(--surface-2);
}

/* Section eyebrow label — "——  BROWSE BY CATEGORY" */
.fe-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.fe-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--brand);
  border-radius: 99px;
  flex-shrink: 0;
}

/* Section title block */
.fe-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin: 0 0 12px;
}
.fe-section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.65;
  margin: 0 auto;
}

/* ════════════════════════════════════════════════
   BUTTON SYSTEM
   ════════════════════════════════════════════════ */

/* Base button — apply alongside fe-btn-* variant */
.fe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  cursor: pointer;
  text-decoration: none !important;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.fe-btn svg { flex-shrink: 0; }

/* Primary — red gradient fill */
.fe-btn-primary {
  background: var(--brand-gradient);
  color: #fff !important;
  border-color: transparent;
  box-shadow: var(--shadow-brand);
}
.fe-btn-primary:hover {
  background: linear-gradient(135deg, #c91c1c 0%, #991b1b 100%);
  box-shadow: var(--shadow-brand-lg);
  transform: translateY(-2px);
  color: #fff !important;
}
.fe-btn-primary:active { transform: translateY(0); }

/* Outline — red border, transparent fill */
.fe-btn-outline {
  background: transparent;
  color: var(--brand) !important;
  border-color: var(--brand);
}
.fe-btn-outline:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(225,33,20,.15);
  color: var(--brand) !important;
}

/* Ghost white — for dark/image backgrounds */
.fe-btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff !important;
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
}
.fe-btn-ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: #fff;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Dark pill — app store / secondary dark */
.fe-btn-dark {
  background: var(--dark);
  color: #fff !important;
  border-color: var(--dark);
}
.fe-btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: #fff !important;
}

/* Size modifiers */
.fe-btn--sm  { padding: 9px 20px;  font-size: 13px; }
.fe-btn--lg  { padding: 15px 36px; font-size: 15.5px; }
.fe-btn--xl  { padding: 17px 32px; font-size: 16px; letter-spacing: 0.4px; }
.fe-btn--full { width: 100%; }

/* Icon-only pill */
.fe-btn--icon {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
}
.fe-btn--icon.fe-btn--sm { width: 36px; height: 36px; }
.fe-btn--icon.fe-btn--lg { width: 52px; height: 52px; }

/* ════════════════════════════════════════════════
   CARD SYSTEM
   ════════════════════════════════════════════════ */
.fe-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.fe-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.fe-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.fe-card__body {
  padding: 20px 22px 22px;
}
.fe-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.3;
}
.fe-card__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 18px;
}
.fe-card__footer {
  padding: 14px 22px;
  border-top: 1px solid var(--border-light);
  background: var(--surface-2);
}

/* ════════════════════════════════════════════════
   BADGE / PILL LABELS
   ════════════════════════════════════════════════ */
.fe-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1;
}
.fe-badge--brand   { background: var(--brand-light);  color: var(--brand);  border: 1px solid var(--brand-mid); }
.fe-badge--dark    { background: var(--dark-2);        color: #fff; }
.fe-badge--light   { background: var(--surface-3);     color: var(--text-2); }
.fe-badge--success { background: #dcfce7; color: #15803d; }

/* ════════════════════════════════════════════════
   FORM INPUTS
   ════════════════════════════════════════════════ */
.fe-input {
  display: block;
  width: 100%;
  padding: 12px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--text);
  background: var(--surface);
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
}
.fe-input::placeholder { color: var(--text-faint); }
.fe-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-light);
}
.fe-input--pill { border-radius: var(--radius-pill); padding: 12px 22px; }

/* ════════════════════════════════════════════════
   DIVIDER
   ════════════════════════════════════════════════ */
.fe-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  border: none;
  margin: 0;
}

/* ════════════════════════════════════════════════
   UTILITY CLASSES
   ════════════════════════════════════════════════ */
.fe-text-brand  { color: var(--brand) !important; }
.fe-text-muted  { color: var(--text-muted) !important; }
.fe-text-dark   { color: var(--text) !important; }
.fe-text-white  { color: #fff !important; }
.fe-bg-brand    { background: var(--brand) !important; }
.fe-bg-surface  { background: var(--surface) !important; }
.fe-bg-surface2 { background: var(--surface-2) !important; }
.fe-bg-dark     { background: var(--dark) !important; }
.fe-rounded     { border-radius: var(--radius) !important; }
.fe-rounded-lg  { border-radius: var(--radius-lg) !important; }
.fe-rounded-pill{ border-radius: var(--radius-pill) !important; }
.fe-shadow      { box-shadow: var(--shadow) !important; }
.fe-shadow-sm   { box-shadow: var(--shadow-sm) !important; }
.fe-shadow-brand{ box-shadow: var(--shadow-brand) !important; }


body.front-page h1,
body.front-page h2,
body.front-page h3,
body.front-page h4,
body.front-page h5,
.section-how-it-works h2,
.section-how-it-works h5,
.hero-stats-strip .stat-num,
.section-newmobileapp h1,
.section-newmobileapp h5 {
  font-family: 'DM Sans', 'Open Sans', sans-serif;
}

/* ════════════════════════════════════════════════
   GLOBAL COLOR SWAP  green → brand red
   ════════════════════════════════════════════════ */
.btn-green,
.btn-grey:hover,
.badge.badge-green,
.custom-control-input:checked ~ .custom-control-label::before,
.btn-green-line:hover {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  color: #fff !important;
}
.btn-green:hover,
.btn-green:focus {
  background: var(--brand-dark) !important;
  border-color: var(--brand-dark) !important;
}
.btn-green-line,
.border-green { border-color: var(--brand) !important; }

ul.top-menu a:hover,
.list-inline a:hover,
.menu-category a:hover,
.siderbar-menu li.active a,
#menu-category .col a.active,
.btn.normal:hover,
.text-green,
a:hover,
.menu-carousel a.active,
.menu-carousel a:hover,
.warm-pink,
.section-title span,
.change-address-wrap a { color: var(--brand) !important; }

.custom-range::-moz-range-thumb    { background-color: var(--brand) !important; }
.custom-range::-webkit-slider-thumb { background-color: var(--brand) !important; }

/* Element-Plus button success → brand */
.el-button--success {
  --el-button-bg-color:            var(--brand) !important;
  --el-button-border-color:        var(--brand) !important;
  --el-button-hover-bg-color:      var(--brand-dark) !important;
  --el-button-hover-border-color:  var(--brand-dark) !important;
  --el-button-active-bg-color:     var(--brand-xdark) !important;
  --el-button-active-border-color: var(--brand-xdark) !important;
}
.el-button--success.is-plain {
  color: var(--brand) !important;
  border-color: var(--brand) !important;
  background: var(--brand-light) !important;
}
.el-button--success.is-plain:hover {
  background: var(--brand) !important;
  color: #fff !important;
}
.el-link--success { color: var(--brand) !important; }

.el-switch.is-checked .el-switch__core {
  background-color: var(--brand) !important;
  border-color:     var(--brand) !important;
}
.el-checkbox__input.is-checked .el-checkbox__inner,
.el-radio__input.is-checked .el-radio__inner {
  background-color: var(--brand) !important;
  border-color:     var(--brand) !important;
}
.el-checkbox__input.is-checked + .el-checkbox__label,
.el-radio__input.is-checked + .el-radio__label { color: var(--brand) !important; }

.el-slider__bar  { background-color: var(--brand) !important; }
.el-slider__button { border-color: var(--brand) !important; }
.el-tag--success { background: var(--brand-light) !important; color: var(--brand) !important; border-color: rgba(225,33,20,.2) !important; }
.el-progress-bar__inner { background-color: var(--brand) !important; }
.el-input-number__increase:hover,
.el-input-number__decrease:hover { color: var(--brand) !important; }
.el-rate__item .el-icon { color: var(--brand) !important; }

/* ════════════════════════════════════════════════
   PREMIUM LIGHT GLASS NAVIGATION
   ════════════════════════════════════════════════ */

/* ── Sticky shell — warm frosted white ── */
.premium-nav-shell,
body.front-page > .container-fluid:first-child {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1050;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow:
    0 1px 0 rgba(225,33,20,.12),
    0 6px 32px rgba(0,0,0,.08);
}

/* Brand-red accent line at very bottom of header */
.premium-nav-shell::after,
body.front-page > .container-fluid:first-child::after {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent        0%,
    rgba(225,33,20,.4) 15%,
    var(--brand)       50%,
    rgba(225,33,20,.4) 85%,
    transparent       100%
  );
}

/* Remove old top-bar pseudo */
body.front-page > .container-fluid:first-child::before { display: none !important; }

/* ── Nav row ── */
body.front-page #top-navigation,
#top-navigation {
  background: transparent !important;
  border-bottom: 0 !important;
  padding: 0 28px;
  min-height: 90px;
  display: flex;
  align-items: center;
}
/* On inner/non-hero pages the nav inherits body bg — give it explicit white */
body:not(.front-page) #top-navigation {
  background: #fff !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 1px 12px rgba(0,0,0,.06) !important;
}

.premium-nav-col {
  padding-top: 8px;
  padding-bottom: 8px;
}
.widget-nav-below {
  width: 550px;
  padding: 4px 0 0;
  margin-left: 23px;
}
.widget-nav-below .widget-dropdown {
  width: 100%;
}
.widget-nav-below .widget-dropdown button {
  width: 100%;
  max-width: 550px;
}

/* ── Push content below fixed nav ── */
.page-content {
  padding-top: 92px;
}

/* ── HERO — banner starts directly below fixed nav ── */
body.front-page .page-content           { padding-top: 0; }
body.front-page #vm_home_search        { margin-top: 0; padding-top: 92px; }
body.front-page #main-search-banner    { height: 640px !important; }
body.front-page #main-search-banner .banner-center { padding-top: 40px !important; }

/* ── Logo ── */
.top-logo {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.top-logo img.img-200 {
  max-height: 90px;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}
.top-logo img.img-200:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 12px rgba(225,33,20,.25));
}

/* ── Centre quick-nav links ── */
.premium-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 20px;
}
.pnl-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--dark-3) !important;
  font-family: 'DM Sans', 'Open Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 15px;
  border-radius: 10px;
  transition: var(--transition);
  text-decoration: none !important;
  white-space: nowrap;
  position: relative;
}
.pnl-item::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 15px;
  right: 15px;
  height: 2px;
  background: var(--brand);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s cubic-bezier(.4,0,.2,1);
}
.pnl-item i {
  font-size: 12px;
  color: var(--brand);
}
.pnl-item:hover,
.pnl-item.pnl-active {
  color: var(--brand) !important;
  background: var(--brand-light) !important;
}
.pnl-item:hover::after,
.pnl-item.pnl-active::after { transform: scaleX(1); }

.premium-nav-links .pls-wrap {
  margin-left: 10px;
}

/* ── Right-side nav list ── */
ul.top-menu {
  display: flex !important;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  height: 90px;
  list-style: none;
}
ul.top-menu > li {
  display: inline-flex !important;
  align-items: center;
}

/* ── Generic links ── */
ul.top-menu a:not(.cart-handle):not([class*="btn"]):not(.dropdown-item) {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: var(--dark-3) !important;
  padding: 7px 12px !important;
  border-radius: 8px;
  transition: var(--transition) !important;
  white-space: nowrap;
}
ul.top-menu a:not(.cart-handle):not([class*="btn"]):not(.dropdown-item):hover {
  color: var(--brand) !important;
  background: var(--brand-light) !important;
}

/* ── Strip legacy left-border ── */
.line-left { border-left: 0 !important; }

/* ── "Sign In" — white ghost pill → red fill on hover ── */
ul.top-menu li.line-left > a[href*="login"] {
  background: #ffffff !important;
  color: var(--brand) !important;
  padding: 10px 26px !important;
  border-radius: 50px !important;
  font-family: 'DM Sans', 'Open Sans', sans-serif;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  letter-spacing: 0.4px;
  border: 1.5px solid var(--brand) !important;
  box-shadow: 0 2px 12px rgba(225,33,20,.12) !important;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease !important;
  display: inline-block;
  line-height: 1;
  text-decoration: none !important;
}
ul.top-menu li.line-left > a[href*="login"]:hover {
  background: var(--brand) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(225,33,20,.35) !important;
}

/* ── Cart text — muted dark ── */
ul.top-menu li.line-left > a:not([href*="login"]) {
  color: var(--dark-3) !important;
  font-weight: 600 !important;
}

/* ── Cart icon — light circle button ── */
a.cart-handle {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  background: #f4f5f7 !important;
  border: 1.5px solid var(--border) !important;
  color: #374151;
  transition: color .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease !important;
  padding: 0 !important;
  position: relative;
  text-decoration: none !important;
}
a.cart-handle:hover {
  background: var(--brand-light) !important;
  border-color: rgba(225,33,20,.35) !important;
  color: var(--brand);
  box-shadow: 0 4px 16px rgba(225,33,20,.18);
  transform: scale(1.07);
}
a.cart-handle svg {
  display: block;
  flex-shrink: 0;
  transition: stroke .22s ease;
}
.cart-handle span.badge {
  position: absolute !important;
  top: -4px !important;
  right: -4px !important;
  bottom: auto !important;
  left: auto !important;
  background: var(--brand) !important;
  color: #fff !important;
  border: 2px solid #fff;
  min-width: 20px !important;
  height: 20px !important;
  width: auto !important;
  border-radius: 50px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 9px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  padding: 0 4px !important;
  box-shadow: 0 2px 8px rgba(225,33,20,.45);
  animation: badgePop .3s cubic-bezier(.4,0,.2,1);
}
@keyframes badgePop {
  0%   { transform: scale(0); }
  70%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.basket-header-total {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.3px;
  white-space: nowrap;
  margin-top: 2px;
}

/* ── Notification badge ── */
.notification-dropdown {
  display: inline-flex !important;
  align-items: center;
}
.notification-dropdown .el-badge__content {
  background: var(--brand) !important;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(225,33,20,.40);
}

/* ── User name pill ── */
.userprofile .btn.dropdown-toggle {
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  background: #f4f5f7 !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 50px !important;
  padding: 9px 20px !important;
  transition: var(--transition) !important;
  box-shadow: none !important;
  max-width: 164px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.userprofile .btn.dropdown-toggle:hover,
.userprofile .btn.dropdown-toggle:focus {
  color: var(--brand) !important;
  background: var(--brand-light) !important;
  border-color: rgba(225,33,20,.30) !important;
  box-shadow: none !important;
}
.userprofile .btn.dropdown-toggle::after {
  border-top-color: var(--dark-3);
  margin-left: 8px;
}

/* ── Dropdown menu — clean white card ── */
.userprofile .dropdown-menu {
  background: #fff !important;
  border: 1px solid rgba(0,0,0,.07) !important;
  border-radius: 18px !important;
  box-shadow:
    0 20px 60px rgba(0,0,0,.12),
    0 4px 16px rgba(0,0,0,.06) !important;
  padding: 8px !important;
  min-width: 232px !important;
  margin-top: 12px !important;
  animation: navDropIn .2s cubic-bezier(.4,0,.2,1);
}
@keyframes navDropIn {
  from { opacity: 0; transform: translateY(-10px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}
.userprofile .dropdown-menu .dropdown-item {
  border-radius: 10px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  padding: 11px 14px !important;
  color: var(--dark-3) !important;
  transition: var(--transition) !important;
}
.userprofile .dropdown-menu .dropdown-item:hover {
  background: var(--brand-light) !important;
  color: var(--brand) !important;
}
.userprofile .dropdown-menu .dropdown-item.with-icon-logout {
  margin-top: 6px;
  border-top: 1px solid var(--border);
  padding-top: 14px !important;
}
.userprofile .dropdown-menu .dropdown-item.with-icon-logout:hover {
  background: rgba(225,33,20,.07) !important;
  color: var(--brand) !important;
}

/* ── Language / currency ── */
ul.top-menu li .bootstrap-select .btn {
  font-size: 12px !important;
  font-weight: 600 !important;
  border: none !important;
  background: transparent !important;
  color: var(--text-muted) !important;
  padding: 6px 8px !important;
  box-shadow: none !important;
}
ul.top-menu li .bootstrap-select .btn:hover { color: var(--brand) !important; }

/* ── Premium Hamburger Button ── */
.premium-menu-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #f4f5f7;
  border: 1.5px solid var(--border);
  padding: 0 12px;
  cursor: pointer;
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .18s ease;
  position: relative;
  box-sizing: border-box;
}
.premium-menu-btn:hover {
  background: var(--brand-light);
  border-color: rgba(225,33,20,.35);
  box-shadow: 0 4px 16px rgba(225,33,20,.14);
  transform: scale(1.05);
}
.pmb-line {
  display: block;
  height: 2px;
  border-radius: 99px;
  background: #374151;
  transition: width .28s cubic-bezier(.4,0,.2,1),
              transform .32s cubic-bezier(.4,0,.2,1),
              opacity .22s ease,
              background .22s ease;
  transform-origin: center;
}
.pmb-line--top { width: 20px; }
.pmb-line--mid { width: 14px; }
.pmb-line--bot { width: 8px; }

.premium-menu-btn:hover .pmb-line { background: var(--brand); }
.premium-menu-btn:hover .pmb-line--top { width: 20px; }
.premium-menu-btn:hover .pmb-line--mid { width: 20px; }
.premium-menu-btn:hover .pmb-line--bot { width: 20px; }

/* X morph when drawer is open */
.premium-menu-btn.pmb-active {
  background: var(--brand-light);
  border-color: rgba(225,33,20,.35);
}
.premium-menu-btn.pmb-active .pmb-line { background: var(--brand); }
.premium-menu-btn.pmb-active .pmb-line--top {
  width: 20px;
  transform: translateY(7px) rotate(45deg);
}
.premium-menu-btn.pmb-active .pmb-line--mid {
  opacity: 0;
  width: 0;
}
.premium-menu-btn.pmb-active .pmb-line--bot {
  width: 20px;
  transform: translateY(-7px) rotate(-45deg);
}

/* ════════════════════════════════════════════════
   PREMIUM MOBILE DRAWER  (.pmd-*)
   ════════════════════════════════════════════════ */

.pmd-drawer {
  height: 100vh !important;
  top: 0 !important;
  bottom: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  box-shadow: -12px 0 50px rgba(0,0,0,.22) !important;
  border-radius: 0 !important;
}
.pmd-drawer .el-drawer__body {
  flex: 1 !important;
  padding: 0 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  background: #fff;
}
.pmd-drawer .el-drawer__body::-webkit-scrollbar { width: 4px; }
.pmd-drawer .el-drawer__body::-webkit-scrollbar-track { background: transparent; }
.pmd-drawer .el-drawer__body::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 99px; }

/* ── Header ── */
.pmd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 18px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.pmd-logo-img img {
  max-height: 42px;
  width: auto;
}
.pmd-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  background: #f9fafb;
  color: #6b7280;
  cursor: pointer;
  transition: all .2s ease;
  flex-shrink: 0;
}
.pmd-close-btn:hover {
  background: #fef2f2;
  border-color: rgba(215,34,34,.4);
  color: var(--brand);
  transform: rotate(90deg);
}

/* ── Section label ── */
.pmd-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9ca3af;
  padding: 18px 22px 6px;
  margin: 0;
}

/* ── Nav items ── */
.pmd-nav {
  padding: 4px 12px 8px;
}
.pmd-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 12px;
  border-radius: 12px;
  color: #111827 !important;
  text-decoration: none !important;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.1px;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.pmd-nav-item:hover {
  background: #fef2f2;
  color: var(--brand) !important;
  transform: translateX(3px);
}
.pmd-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #f3f4f6;
  color: #6b7280;
  flex-shrink: 0;
  transition: all .2s ease;
}
.pmd-nav-item:hover .pmd-nav-icon {
  background: linear-gradient(135deg, #fde8e8, #fecaca);
  color: var(--brand);
  box-shadow: 0 3px 10px rgba(215,34,34,.18);
}
.pmd-nav-label {
  flex: 1;
  line-height: 1.3;
}
.pmd-nav-arrow {
  color: #d1d5db;
  flex-shrink: 0;
  transition: transform .2s ease, color .2s ease;
}
.pmd-nav-item:hover .pmd-nav-arrow {
  transform: translateX(3px);
  color: var(--brand);
}

/* ── Divider ── */
.pmd-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb 20%, #e5e7eb 80%, transparent);
  margin: 6px 22px;
}

/* ── Auth buttons ── */
.pmd-auth {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pmd-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, #e12222 0%, #b91c1c 100%);
  color: #fff !important;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none !important;
  transition: all .22s ease;
  box-shadow: 0 6px 20px rgba(215,34,34,.40), inset 0 1px 0 rgba(255,255,255,.15);
}
.pmd-btn-primary:hover {
  background: linear-gradient(135deg, #c91c1c 0%, #991b1b 100%);
  box-shadow: 0 8px 28px rgba(215,34,34,.50), inset 0 1px 0 rgba(255,255,255,.15);
  transform: translateY(-2px);
  color: #fff !important;
}
.pmd-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 24px;
  border-radius: 50px;
  background: #fff;
  color: var(--brand) !important;
  border: 1.8px solid var(--brand);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none !important;
  transition: all .22s ease;
}
.pmd-btn-outline:hover {
  background: #fef2f2;
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(215,34,34,.15);
  color: var(--brand) !important;
}
.pmd-btn-logout {
  color: #6b7280 !important;
  border-color: #e5e7eb;
  font-weight: 500;
}
.pmd-btn-logout:hover {
  background: #fef2f2;
  color: var(--brand) !important;
  border-color: rgba(215,34,34,.35);
  box-shadow: 0 4px 14px rgba(215,34,34,.10);
}

/* ── Partner / join-us section ── */
.pmd-partner {
  padding: 6px 12px 14px;
}
.pmd-partner-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 6px 12px;
}
.pmd-partner-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #374151 !important;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.pmd-partner-item:hover {
  background: #fef2f2;
  color: var(--brand) !important;
  transform: translateX(3px);
}
.pmd-partner-item:hover .pmd-nav-icon {
  background: linear-gradient(135deg, #fde8e8, #fecaca);
  color: var(--brand);
  box-shadow: 0 3px 10px rgba(215,34,34,.18);
}
.pmd-partner-item .pmd-nav-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

/* ── Language section ── */
.pmd-lang {
  padding: 6px 20px 10px;
}

/* ── Drawer footer / tagline ── */
.pmd-footer {
  padding: 16px 22px 20px;
  border-top: 1px solid #f0f0f0;
  background: #fafafa;
  text-align: center;
}
.pmd-footer-tagline {
  font-size: 11.5px;
  color: #9ca3af;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.2px;
}
.pmd-footer-tagline strong {
  color: var(--brand);
  font-weight: 600;
}

/* ── Legacy drawer (keep for compat) ── */
.el-drawer .btn.btn-black {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 16px rgba(225,33,20,.35);
}

/* ── Spacing tweaks ── */
ul.top-menu > li.d-inline.pr-2  { padding-right: 0 !important; }
ul.top-menu > li.mr-3           { margin-right: 0 !important; }
ul.top-menu > li.ml-3           { margin-left: 0 !important; }
ul.top-menu > li.line-left      { margin-left: 0 !important; }
ul.top-menu > li.d-inline.d-lg-none,
ul.top-menu > li.ml-3.ml-xs-1  { margin-left: 0 !important; }

/* ── Responsive ── */
@media (max-width: 1199px) {
  .premium-nav-links { display: none !important; }
}

@media (max-width: 991px) {
  .page-content { padding-top: 78px; }
  body.front-page #vm_home_search     { padding-top: 0; margin-top: 0; }
  body.front-page #main-search-banner { height: calc(360px + 76px) !important; background-size: cover !important; background-position: center 76px !important; }
  body.front-page #main-search-banner .banner-center { padding-top: 96px !important; padding-bottom: 0 !important; width: 100% !important; max-width: 680px; padding-left: 24px !important; padding-right: 24px !important; }
  #top-navigation { padding: 0 16px; min-height: 76px; }
  ul.top-menu     { height: 76px; }
}
@media (max-width: 767px) {
  .page-content { padding-top: 68px; }
  body.front-page #vm_home_search     { padding-top: 0; margin-top: 0; }
  body.front-page #main-search-banner { height: calc(280px + 66px) !important; background-size: cover !important; background-position: left 66px !important; }
  body.front-page #main-search-banner .banner-center { padding-top: 82px !important; padding-bottom: 0 !important; width: 100% !important; padding-left: 20px !important; padding-right: 20px !important; }
  .hero-subtitle { display: none !important; }
  #top-navigation { min-height: 66px; padding: 0 12px !important; }
  ul.top-menu     { height: 66px; }
  .top-logo img.img-200 { max-height: 32px !important; max-width: 140px !important; }
}

/* ════════════════════════════════════════════════
   HERO BANNER
   ════════════════════════════════════════════════ */
body.front-page #main-search-banner {
  height: auto !important;
  min-height: 40vw !important;
  padding-top: 0 !important;
  padding-bottom: 80px !important;
  position: relative;
  background-image: url("../images/banner-home.jpg") !important;
  background-size: 100% auto !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  background-color: #111827 !important;
  border-bottom: 0;
}
body.front-page #main-search-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(17,24,39,.88) 0%,
    rgba(17,24,39,.60) 50%,
    rgba(180,20,10,.40) 100%
  );
  z-index: 1;
}
body.front-page #main-search-banner .banner-center {
  position: relative;
  z-index: 2;
  width: 700px;
  max-width: 96vw;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 0;
}
body.front-page #main-search-banner h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 10px;
  text-shadow: 0 3px 16px rgba(0,0,0,.5);
  letter-spacing: -0.5px;
}

/* Responsive overrides — must come AFTER base block to win !important source-order */
@media (max-width: 991px) {
  body.front-page #main-search-banner {
    height: calc(360px + 76px) !important;
    min-height: 0 !important;
    padding-bottom: 0 !important;
    background-size: cover !important;
    background-position: center 76px !important;
  }
}
@media (max-width: 767px) {
  body.front-page #main-search-banner {
    height: calc(280px + 66px) !important;
    min-height: 0 !important;
    padding-bottom: 0 !important;
    background-size: cover !important;
    background-position: left 66px !important;
  }
}
@media (max-width: 575px) {
  body.front-page #main-search-banner .banner-center {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  body.front-page #main-search-banner h2 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  body.front-page .home-search-wrap {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  body.front-page .home-search-wrap .flex-column {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
  }
  body.front-page .home-search-wrap .width_87 {
    width: 100% !important;
    flex: none !important;
    min-width: 0 !important;
  }
  body.front-page .home-search-wrap .el-input__wrapper {
    min-height: 42px !important;
    height: 42px !important;
    padding: 0 10px 0 14px !important;
  }
  body.front-page .home-search-wrap .el-input__inner {
    height: 42px !important;
    line-height: 42px !important;
    font-size: 14px !important;
  }
  body.front-page .home-search-wrap .flex-enabled-locate {
    width: 100% !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    flex-shrink: 0 !important;
  }
  body.front-page .home-search-wrap .flex-enabled-locate button,
  body.front-page .home-search-wrap [type="submit"] {
    width: 100% !important;
    height: 32px !important;
    border-radius: 50px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* Hero subtitle */
.hero-subtitle {
  color: rgba(255,255,255,.78);
  font-size: 1.1rem;
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: 0.1px;
}

/* Search bar — frosted glass */
body.front-page .home-search-wrap {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}
body.front-page .home-search-wrap .el-input__wrapper {
  background: rgba(255,255,255,.95) !important;
  border-radius: 50px !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0,0,0,.28) !important;
  border: none !important;
  padding: 6px 6px 6px 20px !important;
  min-height: 58px;
}
body.front-page .home-search-wrap .el-input__inner {
  font-size: 15px !important;
  font-weight: 500 !important;
}
body.front-page .home-search-wrap .frm_search button,
body.front-page .home-search-wrap [type="submit"] {
  background: var(--brand) !important;
  border: none !important;
  border-radius: 50px !important;
  width: 46px !important;
  height: 46px !important;
  box-shadow: 0 4px 16px rgba(225,33,20,.5) !important;
  transition: var(--transition) !important;
}
body.front-page .home-search-wrap .frm_search button:hover,
body.front-page .home-search-wrap [type="submit"]:hover {
  background: var(--brand-dark) !important;
  transform: scale(1.06);
}

/* Mobile search input — placed AFTER base rules to win source-order */
@media (max-width: 575px) {
  body.front-page .home-search-wrap .el-input__wrapper {
    min-height: 42px !important;
    height: 42px !important;
    padding: 0 10px 0 14px !important;
  }
  body.front-page .home-search-wrap .el-input__inner {
    height: 42px !important;
    line-height: 42px !important;
    font-size: 14px !important;
  }
  body.front-page .home-search-wrap .frm_search button,
  body.front-page .home-search-wrap [type="submit"] {
    width: 100% !important;
    height: 42px !important;
  }
}

/* Hero stats strip */
.hero-stats-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-stats-strip .stat-item {
  text-align: center;
  position: relative;
}
.hero-stats-strip .stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 1px;
  background: rgba(255,255,255,.2);
}
.hero-stats-strip .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
}
.hero-stats-strip .stat-num em {
  color: var(--brand);
  font-style: normal;
}
.hero-stats-strip .stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,.62);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 5px;
  display: block;
}

/* ════════════════════════════════════════════════
   HOW IT WORKS SECTION
   ════════════════════════════════════════════════ */
.section-how-it-works {
  padding: 70px 0 56px;
  background: #fff;
}
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.section-heading h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.section-heading .accent-line {
  width: 48px;
  height: 4px;
  background: var(--brand);
  margin: 14px auto 0;
  border-radius: 99px;
}
.section-heading p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-top: 10px;
  margin-bottom: 0;
}
.how-it-works-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  flex-wrap: wrap;
  gap: 8px;
}
.how-it-works-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 52%;
  height: 2px;
  border-top: 2px dashed #e5e7eb;
  z-index: 0;
}
.hiw-step {
  flex: 0 0 210px;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.hiw-step .hiw-icon-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  border: 3px solid rgba(225,33,20,.15);
  transition: var(--transition);
  position: relative;
}
.hiw-step:hover .hiw-icon-wrap {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(225,33,20,.32);
}
.hiw-step .hiw-icon-wrap i {
  font-size: 30px;
  color: var(--brand);
  transition: var(--transition);
}
.hiw-step:hover .hiw-icon-wrap i { color: #fff; }
.hiw-step .hiw-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(225,33,20,.4);
}
.hiw-step h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.hiw-step p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ════════════════════════════════════════════════
   SHARED SECTION HEADING — legacy support
   ════════════════════════════════════════════════ */
.swiperOutsideContainer > .mb-4.mt-4 h3,
.container > .swiperOutsideContainer > .mb-4.mt-4 h3 {
  font-family: 'DM Sans', 'Open Sans', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--dark);
  position: relative;
  padding-bottom: 12px;
}
.swiperOutsideContainer > .mb-4.mt-4 h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--brand);
  border-radius: 99px;
}

/* ════════════════════════════════════════════════
   PREMIUM SECTION HEADER — shared component
   ════════════════════════════════════════════════ */
.prem-section-header {
  margin: 48px 0 32px;
}
.psh-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.psh-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--brand);
  border-radius: 99px;
}
.psh-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.psh-title {
  font-family: 'DM Sans', 'Open Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.3px;
}
.cuisine-nav-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.psh-rule {
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), rgba(225,33,20,.3));
  border-radius: 99px;
}

/* ════════════════════════════════════════════════
   CUISINE CAROUSEL — PREMIUM
   ════════════════════════════════════════════════ */
.cuisine-section-wrap {
  margin-bottom: 12px;
  position: relative;
  isolation: isolate;
}
.cuisine-section-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/fast-food-seamless-pattern.png');
  background-repeat: repeat;
  background-size: 280px auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: -1;
  filter: grayscale(100%) brightness(0.6);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 20%, transparent 100%);
}
.cuisine-swiper-outer {
  position: relative;
  padding: 20px 0;
  overflow-x: clip;
  overflow-y: visible;
}

.swiperCuisine {
  overflow: visible !important;
}

/* Bust Swiper's default overflow:hidden so hover float is never clipped */
.cuisine-swiper-outer .swiper,
.cuisine-swiper-outer .swiper-wrapper,
.swiperCuisine,
.swiperCuisine .swiper-wrapper {
  overflow: visible !important;
}

.cuisine-swiper-slide {
  text-align: center;
  cursor: pointer;
  overflow: visible !important;
}
.cuisine-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  padding: 6px 4px 8px;
}
.cuisine-icon-wrap {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: #fff;
  border: 1.5px solid #ebebeb;
  box-shadow:
    0 2px 10px rgba(0,0,0,.06),
    0 0 0 0 rgba(225,33,20,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform .26s cubic-bezier(.34,1.56,.64,1),
    box-shadow .26s ease,
    background .22s ease,
    border-color .22s ease;
  position: relative;
  overflow: hidden;
}
.cuisine-icon-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(225,33,20,.06) 0%, transparent 70%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity .22s ease;
}
.cuisine-icon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: color .22s ease, transform .22s ease;
  width: 38px;
  height: 38px;
}
.cuisine-icon-inner svg {
  width: 38px;
  height: 38px;
}
.cuisine-name {
  font-family: 'DM Sans', 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  transition: color .22s ease;
  line-height: 1.3;
  text-align: center;
  max-width: 80px;
  display: block;
}
.cuisine-card:hover .cuisine-icon-wrap {
  transform: translateY(-6px) scale(1.05);
  background: #fff8f8;
  border-color: rgba(225,33,20,.3);
  box-shadow:
    0 12px 32px rgba(225,33,20,.14),
    0 0 0 4px rgba(225,33,20,.06);
}
.cuisine-card:hover .cuisine-icon-wrap::before { opacity: 1; }
.cuisine-card:hover .cuisine-icon-inner { color: var(--brand); transform: scale(1.08); }
.cuisine-card:hover .cuisine-name { color: var(--brand); }

/* External cuisine nav buttons — flex siblings, never overlap slides */
.cuisine-ext-btn {
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  cursor: pointer;
  transition: background .22s ease, border-color .22s ease, color .22s ease,
              box-shadow .22s ease, transform .18s ease;
  outline: none;
  padding: 0;
}
.cuisine-ext-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 6px 20px rgba(225,33,20,.28);
  transform: scale(1.08);
}
.cuisine-ext-btn--disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ════════════════════════════════════════════════
   RESTAURANT CARDS
   ════════════════════════════════════════════════ */
.restaurant-carousel {
  border-radius: var(--radius) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.restaurant-carousel:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

/* ════════════════════════════════════════════════
   JOIN US — PREMIUM REDESIGN
   ════════════════════════════════════════════════ */
.join-section-wrap {
  margin: 64px 0 24px;
}
.join-section-header {
  text-align: center;
  margin-bottom: 32px;
}
.jsh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--brand-light);
  color: var(--brand);
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(225,33,20,.18);
  margin-bottom: 18px;
}
.jsh-title {
  font-family: 'DM Sans', 'Open Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
}
.jsh-brand {
  color: var(--brand);
  position: relative;
  white-space: nowrap;
}
.jsh-brand::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), rgba(225,33,20,.3));
  border-radius: 99px;
}
.jsh-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}
.join-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.join-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: transform .3s cubic-bezier(.34,1.2,.64,1), box-shadow .3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.join-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(0,0,0,.12), 0 0 0 1px rgba(225,33,20,.08);
}
.join-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.join-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  display: block;
}
.join-card:hover .join-card-img { transform: scale(1.07); }
.join-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,.55) 100%
  );
}
.join-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  box-shadow: 0 4px 16px rgba(0,0,0,.14);
  transition: background .22s ease, transform .22s ease;
}
.join-card:hover .join-card-badge {
  background: var(--brand);
  color: #fff;
  transform: scale(1.08);
}
.join-card-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.join-card-title {
  font-family: 'DM Sans', 'Open Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
  line-height: 1.35;
}
.join-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 22px;
  flex: 1;
}
.join-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 50px;
  background: #fff;
  color: var(--brand);
  border: 1.5px solid var(--brand);
  font-family: 'DM Sans', 'Open Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none !important;
  transition: background .22s ease, color .22s ease, box-shadow .22s ease, transform .18s ease;
  cursor: pointer;
}
.join-card-btn:hover,
.join-card:hover .join-card-btn {
  background: var(--brand);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(225,33,20,.30);
  transform: translateY(-1px);
}
.join-card-btn svg { flex-shrink: 0; transition: transform .22s ease; }
.join-card-btn:hover svg,
.join-card:hover .join-card-btn svg { transform: translateX(3px); }

/* Responsive */
@media (max-width: 991px) {
  .join-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .jsh-title { font-size: 1.8rem; }
}
@media (max-width: 640px) {
  .join-cards-grid { grid-template-columns: 1fr; }
  .join-card-img-wrap { height: 200px; }
  .cuisine-icon-wrap { width: 68px; height: 68px; border-radius: 18px; }
  .cuisine-icon-inner, .cuisine-icon-inner svg { width: 32px; height: 32px; }
  .join-section-header .jsh-title {
    font-size: 1.5rem !important;
    margin-bottom: 28px !important;
    padding-bottom: 0 !important;
    overflow: hidden !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  .join-section-header .jsh-brand {
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    display: inline !important;
  }
  .join-section-header .jsh-brand::after {
    display: none !important;
    content: none !important;
  }
  .join-section-wrap {
    overflow: hidden !important;
  }
}

/* Legacy join-sections safety */
.join-sections .swiper-slide { display: none; }

/* ════════════════════════════════════════════════
   APP DOWNLOAD SECTION — world-class premium
   ════════════════════════════════════════════════ */
.app-download-section {
  position: relative;
  background: linear-gradient(135deg, #b80e04 0%, #e12114 45%, #c9170f 75%, #9e0d07 100%);
  overflow: hidden;
  margin-top: 80px;
  padding: 0;
}

/* Decorative orbs — white/light on red bg */
.app-dl-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.app-dl-orb--1 {
  width: 520px; height: 520px;
  top: -120px; left: -80px;
  background: radial-gradient(circle, rgba(255,255,255,.18) 0%, transparent 65%);
}
.app-dl-orb--2 {
  width: 400px; height: 400px;
  bottom: -80px; right: 5%;
  background: radial-gradient(circle, rgba(255,180,160,.22) 0%, transparent 65%);
}
.app-dl-orb--3 {
  width: 320px; height: 320px;
  top: 15%; left: 42%;
  background: radial-gradient(circle, rgba(255,255,255,.10) 0%, transparent 65%);
}

/* Subtle dot-grid overlay */
.app-dl-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Diagonal stripe accent */
.app-dl-grid-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,.04) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255,255,255,.04) 50%,
    rgba(255,255,255,.04) 75%,
    transparent 75%
  );
  background-size: 60px 60px;
}

/* ── Two-column layout — FIXED ── */
.app-dl-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 500px;
}
.app-dl-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 40px 80px 0;
}
.app-dl-phone-col {
  flex: 0 0 420px;
  position: relative;
}
.app-dl-phone-col::before {
  content: '';
  position: absolute;
  inset: 0;
  left: 0;
  width: 120px;
  z-index: 3;
  background: linear-gradient(to right, #c9170f 0%, transparent 100%);
  pointer-events: none;
}

/* Eyebrow */
.app-dl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 7px 16px 7px 12px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.app-dl-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,.30);
  animation: appDotPulse 2s ease-in-out infinite;
}
@keyframes appDotPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(255,255,255,.30); }
  50%      { box-shadow: 0 0 0 7px rgba(255,255,255,.08); }
}

/* Headline */
.app-dl-headline {
  font-family: 'DM Sans', 'Open Sans', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0 0 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.20);
}
.app-dl-headline-accent {
  background: linear-gradient(135deg, #ffe0d8 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* Subtitle */
.app-dl-sub {
  font-size: 15.5px;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  margin: 0 0 32px;
  max-width: 440px;
}

/* Stats row */
.app-dl-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.app-dl-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.80);
}
.app-dl-stat svg { flex-shrink: 0; color: rgba(255,255,255,.90); }
.app-dl-stat div { display: flex; flex-direction: column; }
.app-dl-stat strong {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.app-dl-stat span {
  font-size: 11px;
  color: rgba(255,255,255,.65);
  letter-spacing: 0.3px;
}
.app-dl-stat-div {
  width: 1px; height: 32px;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}

/* Store Buttons */
.app-dl-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.app-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 16px;
  text-decoration: none !important;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  min-width: 168px;
}
.app-dl-btn--apple {
  background: #fff;
  color: #0a0a0a;
  box-shadow: 0 8px 32px rgba(0,0,0,.25), 0 2px 8px rgba(0,0,0,.12);
}
.app-dl-btn--google {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.30);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  backdrop-filter: blur(8px);
}
.app-dl-btn:hover {
  transform: translateY(-4px);
}
.app-dl-btn--apple:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,.30);
  color: var(--brand);
}
.app-dl-btn--google:hover {
  background: rgba(255,255,255,.22);
  box-shadow: 0 20px 56px rgba(0,0,0,.20);
  color: #fff;
}
.app-dl-btn-text {
  display: flex;
  flex-direction: column;
}
.app-dl-btn-text span {
  font-size: 10.5px;
  font-weight: 500;
  opacity: .70;
  line-height: 1.3;
  letter-spacing: 0.2px;
}
.app-dl-btn-text strong {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

/* Trust strip */
.app-dl-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.app-dl-trust-avatars {
  display: flex;
}
.app-dl-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #6b1a15;
  margin-left: -8px;
}
.app-dl-avatar:first-child { margin-left: 0; }
.app-dl-trust-text { display: flex; flex-direction: column; gap: 2px; }
.app-dl-trust-stars {
  font-size: 13px;
  color: #ffd700;
  letter-spacing: 1px;
  text-shadow: 0 1px 4px rgba(0,0,0,.20);
}
.app-dl-trust-text > span {
  font-size: 12px;
  color: rgba(255,255,255,.75);
}

/* Phone column */
.app-dl-phone-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Pulsing rings — white on red bg */
.app-dl-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.app-dl-ring--1 {
  width: 300px; height: 300px;
  animation: appRingPulse 3s ease-in-out infinite;
}
.app-dl-ring--2 {
  width: 420px; height: 420px;
  border-color: rgba(255,255,255,.12);
  animation: appRingPulse 3s ease-in-out infinite .8s;
}
.app-dl-ring--3 {
  width: 540px; height: 540px;
  border-color: rgba(255,255,255,.06);
  animation: appRingPulse 3s ease-in-out infinite 1.6s;
}
@keyframes appRingPulse {
  0%,100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: .5; transform: translate(-50%,-50%) scale(1.04); }
}

/* Phone image */
.app-dl-phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 0;
}
.app-dl-ring {
  display: none;
}

/* Floating notification cards */
.app-dl-float {
  position: absolute;
  z-index: 5;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.20), 0 4px 16px rgba(0,0,0,.10);
  padding: 12px 16px;
  white-space: nowrap;
}
.app-dl-float--order {
  left: 42%;
  top: 20%;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: appFloatBob 4s ease-in-out infinite;
}
.app-dl-float--rating {
  right: 20px;
  bottom: 24%;
  display: flex;
  flex-direction: column;
  gap: 3px;
  animation: appFloatBob 4s ease-in-out infinite 2s;
}
@keyframes appFloatBob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.app-dl-float-icon {
  width: 30px; height: 30px;
  border-radius: 10px;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.app-dl-float-body strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
}
.app-dl-float-body span {
  font-size: 11px;
  color: #6b7280;
}
.app-dl-float-stars {
  font-size: 14px;
  color: #f59e0b;
  letter-spacing: 1px;
}
.app-dl-float--rating span {
  font-size: 11px;
  font-weight: 700;
  color: #374151;
}

/* Responsive */
@media (max-width: 991px) {
  .app-dl-container {
    flex-direction: column;
    gap: 0;
    min-height: unset;
  }
  .app-dl-content {
    align-items: center;
    text-align: center;
    padding: 60px 20px 40px;
  }
  .app-dl-phone-col { flex: 0 0 100%; height: 300px; }
  .app-dl-phone-col::before { width: 100%; height: 80px; top: 0; background: linear-gradient(to bottom, #c9170f 0%, transparent 100%); }
  .app-dl-phone-img { width: 100%; height: 300px; object-fit: cover; object-position: center 40%; }
  .app-dl-sub { margin: 0 auto 32px; }
  .app-dl-stats { justify-content: center; }
  .app-dl-buttons { justify-content: center; }
  .app-dl-trust { justify-content: center; }
  .app-dl-float--order { left: 12px; }
  .app-dl-float--rating { right: 12px; }
  .app-download-section { padding-bottom: 60px; }
}
@media (max-width: 640px) {
  .app-dl-headline { font-size: 2.1rem; }
  .app-dl-float { display: none; }
  .app-dl-ring--2, .app-dl-ring--3 { display: none; }
  .app-dl-btn { min-width: 148px; padding: 12px 18px; }
  .app-dl-stats { gap: 12px; flex-wrap: wrap; }
  .app-dl-stat-div { display: none; }
}

/* ════════════════════════════════════════════════
   PREMIUM FOOTER — complete redesign
   ════════════════════════════════════════════════ */

/* ── Top accent bar ── */
.footer-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, #ff6b35 50%, var(--brand) 100%);
  background-size: 200% 100%;
  animation: footerAccentShimmer 4s linear infinite;
}
@keyframes footerAccentShimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ── Sub-footer shell ── */
.sub-footer {
  position: relative;
  background: #1e2235 !important;
  margin-top: 0 !important;
  padding-top: 80px !important;
  padding-bottom: 48px !important;
  border-top: 0 !important;
}
.sub-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(225,33,20,.14) 0%, transparent 65%);
  pointer-events: none;
}
.sub-footer::after {
  content: '';
  position: absolute;
  bottom: 100px;
  right: 0;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(225,33,20,.07) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Brand column ── */
.footer-brand-col { display: flex; flex-direction: column; gap: 20px; }
.sub-footer .footer-logo img {
  filter: brightness(0) invert(1);
  max-height: 48px !important;
  width: auto !important;
}
.footer-desc {
  color: rgba(255,255,255,.48) !important;
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 300px;
  margin: 0 !important;
}

/* ── Social icons ── */
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.55) !important;
  font-size: 17px;
  transition: var(--transition);
  text-decoration: none !important;
  background: rgba(255,255,255,.04);
}
.footer-social-link:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(225,33,20,.40);
}

/* ── Nav columns ── */
.footer-nav-wrap { padding-top: 8px; }
.sub-footer-nav { border-top: 0 !important; padding-top: 0 !important; margin-top: 0 !important; }
.sub-footer-nav h6 {
  color: #fff !important;
  font-size: 0.75rem !important;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-weight: 700;
  margin-bottom: 20px !important;
  padding-bottom: 10px;
  position: relative;
  font-family: 'DM Sans', sans-serif;
}
.sub-footer-nav h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}
.sub-footer-nav a {
  display: flex !important;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.48) !important;
  font-size: 13.5px !important;
  padding: 5px 0 !important;
  transition: var(--transition);
  text-decoration: none !important;
}
.sub-footer-nav a::before {
  content: '›';
  font-size: 16px;
  line-height: 1;
  color: var(--brand);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}
.sub-footer-nav a:hover {
  color: #fff !important;
  padding-left: 4px !important;
}
.sub-footer-nav a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* ── Newsletter band ── */
.footer-newsletter-band {
  position: relative;
  margin-top: 56px;
  margin-bottom: 8px;
  padding: 36px 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, #c0170d 0%, #e12114 45%, #b5230a 100%);
  overflow: hidden;
  box-shadow: none;
}
.footer-newsletter-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.12) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(0,0,0,.15) 0%, transparent 35%);
  pointer-events: none;
}
.footer-newsletter-band::after {
  content: none;
}
.footer-newsletter-glow {
  position: absolute;
  top: -60px;
  right: 120px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,.18) 0%, transparent 65%);
  pointer-events: none;
}
.newsletter-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.80);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}
.newsletter-eyebrow i { font-size: 14px; }
.newsletter-headline {
  color: #fff !important;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 !important;
  font-family: 'DM Sans', sans-serif;
}

/* Newsletter form — inside band */
.footer-newsletter-band .esubscription {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 54px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.97);
  box-shadow: 0 12px 40px rgba(0,0,0,.30);
}
.footer-newsletter-band .esubscription .field-wrap {
  flex: 1;
  height: 100%;
}
.footer-newsletter-band .esubscription .el-input,
.footer-newsletter-band .esubscription .el-input__wrapper {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  width: 100% !important;
  height: 100% !important;
}
.footer-newsletter-band .esubscription .el-input__inner {
  color: #111 !important;
  font-size: 14px;
  height: 54px !important;
  line-height: 54px !important;
  padding: 0 18px !important;
}
.footer-newsletter-band .esubscription .el-input__inner::placeholder {
  color: rgba(0,0,0,.38) !important;
}
.footer-newsletter-band .esubscription .butoon-wrap {
  flex-shrink: 0;
  height: 100%;
  display: flex;
}
.footer-newsletter-band .esubscription .butoon-wrap .el-button {
  border-radius: 0 14px 14px 0 !important;
  height: 54px !important;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.6px;
  background: #0f1020 !important;
  border-color: #0f1020 !important;
  color: #fff !important;
  padding: 0 32px !important;
  white-space: nowrap;
  margin: 0 !important;
  transition: var(--transition);
  display: flex !important;
  align-items: center !important;
}
.footer-newsletter-band .esubscription .butoon-wrap .el-button:hover {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
}

/* Subscribe section — stacked column on phone (placed AFTER base rules to win source-order) */
@media (max-width: 575px) {
  .footer-newsletter-band {
    padding: 24px 20px !important;
  }
  .footer-newsletter-band .esubscription {
    flex-direction: column !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    gap: 10px !important;
  }
  .footer-newsletter-band .esubscription .field-wrap {
    width: 100% !important;
    height: 52px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: rgba(255,255,255,.97) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,.20) !important;
  }
  .footer-newsletter-band .esubscription .el-input,
  .footer-newsletter-band .esubscription .el-input__wrapper {
    background: rgba(255,255,255,.97) !important;
    border-radius: 12px !important;
    height: 52px !important;
    box-shadow: none !important;
  }
  .footer-newsletter-band .esubscription .el-input__inner {
    height: 52px !important;
    line-height: 52px !important;
    color: #333 !important;
  }
  .footer-newsletter-band .esubscription .butoon-wrap {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    width: 100% !important;
    height: 52px !important;
    flex-shrink: 0 !important;
  }
  .footer-newsletter-band .esubscription .butoon-wrap .el-button {
    border-radius: 12px !important;
    width: 100% !important;
    height: 52px !important;
    justify-content: center !important;
    font-size: 15px !important;
    letter-spacing: 0.8px !important;
  }
}

/* White gap fix — remove trailing margin in vue-home-widgets */
#vue-home-widgets > .container:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* ════════════════════════════════════════════════
   FOOTER BAR — premium bottom strip
   ════════════════════════════════════════════════ */
footer {
  background: #0f1020 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-top: none !important;
}

/* Gradient separator line */
footer::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(225,33,20,.35) 20%,
    rgba(225,33,20,.65) 50%,
    rgba(225,33,20,.35) 80%,
    transparent 100%
  );
}

.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

/* Left block */
.footer-copy-block {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}
.footer-brand-mark svg { display: block; }
.footer-copy,
footer p,
footer a {
  color: rgba(255,255,255,.62) !important;
  font-size: 12px !important;
  margin: 0 !important;
}
footer a:hover { color: rgba(255,255,255,.92) !important; }

/* Center — App badges */
.footer-app-badges {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-app-badge-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 0;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.70) !important;
  text-decoration: none !important;
  transition: var(--transition);
  white-space: nowrap;
}
.footer-app-badge-link:hover {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
  color: #fff !important;
}
.footer-app-badge-link svg { flex-shrink: 0; }
.footer-app-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.footer-app-badge-text span {
  font-size: 9px;
  color: rgba(255,255,255,.50);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-app-badge-text strong {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}

/* Right block */
.footer-website-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.62) !important;
  font-size: 12px !important;
  text-decoration: none !important;
  transition: var(--transition);
}
.footer-website-link svg { opacity: 0.6; flex-shrink: 0; }
.footer-website-link:hover {
  color: rgba(255,255,255,.92) !important;
}
.footer-website-link:hover svg { opacity: 1; }

/* Mobile footer bar */
.footer-bar-mobile {
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-bar-mobile .footer-app-badges { justify-content: center; width: 100%; }
.footer-bar-mobile .footer-copy { text-align: center !important; }

/* ── Responsive footer ── */
@media (max-width: 991px) {
  .sub-footer { padding-top: 56px !important; }
  .footer-brand-col { align-items: center; text-align: center; }
  .footer-desc { max-width: 100%; text-align: center; }
  .footer-social { justify-content: center; }
  .sub-footer-nav h6::after { left: 50%; transform: translateX(-50%); }
  .sub-footer-nav { text-align: center; }
  .sub-footer-nav a { justify-content: center; }
  .footer-newsletter-band { padding: 28px 24px; }
  .newsletter-headline { font-size: 1.2rem; }
}
@media (max-width: 767px) {
  .footer-newsletter-band { margin-top: 40px; border-radius: 14px; }
  .footer-newsletter-band::after { display: none; }
  .sub-footer-nav h6::after { transform: none; left: 0; }
  .sub-footer-nav { text-align: left; }
  .sub-footer-nav a { justify-content: flex-start; }
  .footer-brand-col { align-items: flex-start; text-align: left; }
  .footer-social { justify-content: flex-start; }
  .footer-desc { text-align: left; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 991px) {
  body.front-page #main-search-banner h2 { font-size: 2.2rem; }
  .hero-stats-strip { gap: 28px; }
  .how-it-works-steps::before { display: none; }
  .section-newmobileapp h1 { font-size: 2rem !important; }
  .hiw-step { flex: 0 0 180px; }
}
@media (max-width: 767px) {
  body.front-page #main-search-banner h2 { font-size: 1.75rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-stats-strip { gap: 16px; margin-top: 24px; }
  .hero-stats-strip .stat-num { font-size: 1.4rem; }
  .hero-stats-strip .stat-item:not(:last-child)::after { display: none; }
  .section-how-it-works { padding: 32px 0 32px; }
  .section-heading h2 { font-size: 1.6rem; }
  .section-newmobileapp h1 { font-size: 1.7rem !important; }
  .section-newmobileapp { margin-top: 36px !important; }
}
@media (max-width: 480px) {
  body.front-page #main-search-banner h2 { font-size: 1.45rem; }
  .hero-stats-strip { display: none !important; }
  .hiw-step { flex: 0 0 140px; }
  .hiw-step .hiw-icon-wrap { width: 72px; height: 72px; }
  .hiw-step .hiw-icon-wrap i { font-size: 24px; }
}

/* ════════════════════════════════════════════════
   PREMIUM EMPTY CART STATE — v2
   ════════════════════════════════════════════════ */

/* ── Drawer body ── */
.drawer-preview-cart .el-drawer__body {
  background: #ffffff !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
}

/* ── Cart header title ── */
.drawer-preview-cart h5.mt-3.mb-0 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -.25px;
  margin: 0 !important;
  padding: 20px 24px 17px;
  border-bottom: 1.5px solid #f3f4f6;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.drawer-preview-cart h5.mt-3.mb-0::before {
  content: '';
  display: block;
  width: 3.5px;
  height: 18px;
  background: linear-gradient(180deg, #e12114 0%, #ff7b6b 100%);
  border-radius: 99px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   EMPTY CART — The Ticket (Premium Redesign)
   ══════════════════════════════════════════════════════ */

.cart-empty {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px 18px;
  border-top: 1px solid #ede9e3;
}

/* ── Perforated ticket top edge ── */
.ce-perforation {
  width: calc(100% + 2px);
  height: 22px;
  margin: 0 -1px 34px;
  background:
    radial-gradient(circle at 50% 60%, #ddd7cf 3.5px, transparent 3.5px);
  background-size: 20px 22px;
  opacity: .5;
  flex-shrink: 0;
}

/* ── Plate ring — the empty dish ── */
.ce-plate-ring {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  border: 1.5px solid #e0dbd4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at 36% 36%, #ffffff 0%, #faf8f5 100%);
  margin-bottom: 30px;
  flex-shrink: 0;
  animation: ce-pulse 5s ease-in-out infinite;
}
.ce-plate-ring::before {
  content: '';
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  border: 1px solid #ede9e3;
}
.ce-plate-ring .fas.fa-utensils {
  font-size: 30px;
  color: #e12114;
  opacity: .75;
  position: relative;
  z-index: 1;
}

@keyframes ce-pulse {
  0%, 100% { border-color: #e0dbd4; }
  50%       { border-color: rgba(225,33,20,.25); }
}

/* ── Eyebrow: red label + hairlines ── */
.ce-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 13px;
}
.ce-eyebrow span {
  flex: 1;
  height: 1px;
  background: #e8e3db;
}
.ce-eyebrow b {
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .32em;
  color: #e12114;
  text-transform: uppercase;
  opacity: .6;
  white-space: nowrap;
}

/* ── Heading ── */
.cart-empty h6 {
  font-family: var(--font-display) !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
  margin: 0 0 10px !important;
  letter-spacing: -.04em !important;
  line-height: 1.15 !important;
}

/* ── Subtext ── */
.cart-empty p {
  font-family: var(--font-display) !important;
  font-size: 12.5px !important;
  color: #a8b0c0 !important;
  margin: 0 0 26px !important;
  line-height: 1.75 !important;
  max-width: 172px;
  font-weight: 400 !important;
}

/* ── Browse hint ── */
.ce-browse-hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: #e12114;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .55;
  border-top: 1px dashed rgba(225,33,20,.2);
  padding-top: 18px;
  width: 100%;
  justify-content: center;
}
.ce-browse-hint .fas {
  font-size: 13px;
}

/* ═══════════════════════════════════════════════════════
   CART — STORE CLOSED NOTICE  ccn-*
   ═══════════════════════════════════════════════════════ */

.cart-closed-notice {
  background: #ffffff;
  border: none;
  border-bottom: none;
  margin: 0 -20px !important;
  box-shadow: none;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}
.cart-bottom-fixed:has(.cart-closed-notice) {
  padding-bottom: 0 !important;
}



.ccn-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px 12px 18px;
}

.ccn-icon-wrap {
  position: relative;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ccn-icon-wrap i {
  font-size: 18px;
  color: #e12114;
  position: relative;
  z-index: 2;
}

.ccn-icon-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(225, 33, 20, .08);
  animation: ccn-pulse 2.6s ease-in-out infinite;
}

@keyframes ccn-pulse {
  0%, 100% { transform: scale(1);   opacity: .8; }
  50%       { transform: scale(1.2); opacity: 0;  }
}

.ccn-body {
  flex: 1;
  min-width: 0;
}

.ccn-badge {
  display: inline-block;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #e12114;
  margin-bottom: 5px;
}

.ccn-msg {
  font-size: 12px !important;
  color: #52525b !important;
  margin: 0 !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
}

.ccn-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  padding: 13px 16px;
  background: #e12114;
  color: #ffffff !important;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: none;
  border-radius: 0 0 20px 20px;
  transition: background .2s, gap .2s;
  position: relative;
  overflow: hidden;
}
.ccn-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  animation: ccn-shimmer 2.5s ease-in-out infinite;
}
@keyframes ccn-shimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}

.ccn-btn:hover {
  background: #c41c10;
  color: #ffffff !important;
  text-decoration: none !important;
  gap: 10px;
}
.ccn-btn:hover::after {
  animation: none;
}

.ccn-btn i {
  font-size: 14px;
  color: #ffffff;
}

.ccn-btn-arrow {
  margin-left: auto;
  opacity: .7;
  font-size: 13px !important;
  animation: ccn-nudge 1.8s ease-in-out infinite;
}
@keyframes ccn-nudge {
  0%, 100% { transform: translateX(0); opacity: .7; }
  50%      { transform: translateX(3px); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════
   CUISINE FEED PAGE — cfeed-*  (Premium v6)
   ═══════════════════════════════════════════════════════ */

.cuisine-feed {
  background: #f4f4f4;
  min-height: 80vh;
  padding-bottom: 120px;
}

/* ── Ken Burns keyframe ──────────────────────────────── */
@keyframes cfeed-kenburns {
  0%   { transform: scale(1)    translate(0%,   0%);  }
  100% { transform: scale(1.06) translate(-0.8%, 0.6%);  }
}

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.cfeed-hero {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

/* Background image — Ken Burns layer */
.cfeed-hero::after {
  content: '';
  position: absolute;
  inset: -6%;
  background: url('../images/cuisines.jpg') center / cover no-repeat;
  z-index: 0;
  animation: cfeed-kenburns 28s ease-in-out infinite alternate;
  will-change: transform;
}

/* Gradient overlay — dark bottom for text, dark top-left for back pill, clear centre */
.cfeed-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to top,
      rgba(4,4,12,.94) 0%,
      rgba(4,4,12,.72) 30%,
      rgba(4,4,12,.18) 58%,
      rgba(4,4,12,.04) 100%
    ),
    linear-gradient(
      to right,
      rgba(4,4,12,.55) 0%,
      rgba(4,4,12,.10) 40%,
      transparent 68%
    );
  pointer-events: none;
}

.cfeed-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 48px 80px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ── Back pill ──────────────────────────────────────── */
.cfeed-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 7px 15px 7px 11px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70) !important;
  text-decoration: none !important;
  transition: background .2s ease, color .2s ease, gap .2s ease;
}
.cfeed-back:hover {
  background: rgba(255,255,255,.20);
  color: #fff !important;
  gap: 9px;
}
.cfeed-back svg { flex-shrink: 0; transition: transform .2s ease; }
.cfeed-back:hover svg { transform: translateX(-2px); }

/* ── Hero bottom — title block ───────────────────────── */
.cfeed-hero-bottom {
  margin-top: auto;
}

.cfeed-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 14px;
}
.cfeed-hero-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  box-shadow: 0 0 10px rgba(225,33,20,.6);
}

.cfeed-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -.05em;
  line-height: .9;
  text-shadow: 0 2px 32px rgba(0,0,0,.4);
}

.cfeed-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  margin: 0;
  letter-spacing: .01em;
}
.cfeed-subtitle svg { color: rgba(255,255,255,.40); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════
   FILTER BAR — dark shelf, seamless extension of hero
   ══════════════════════════════════════════════════════ */
.cfeed-filterbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0c0c1a;
  margin-top: 0;
  border-radius: 0;
  box-shadow: 0 6px 40px rgba(0,0,0,.45);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cfeed-filterbar::after {
  content: '';
  position: absolute;
  bottom: -32px;
  left: 0;
  right: 0;
  height: 32px;
  background: linear-gradient(to bottom, rgba(12,12,26,.18), transparent);
  pointer-events: none;
  z-index: 1;
}
.cfeed-filterbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cfeed-filterbar-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 20px 0;
  border-right: 1px solid rgba(255,255,255,.08);
  padding-right: 20px;
}
.cfeed-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}
.cfeed-filters::-webkit-scrollbar { display: none; }

.cfeed-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  outline: none;
  letter-spacing: -.005em;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cfeed-chip:hover {
  border-color: rgba(255,255,255,.30);
  background: rgba(255,255,255,.13);
  color: rgba(255,255,255,.90);
  transform: translateY(-1px);
}
.cfeed-chip--active {
  background: #fff;
  border-color: #fff;
  color: #0c0c1a;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
}
.cfeed-chip--active:hover {
  background: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.92);
  color: #0c0c1a;
  transform: translateY(-1px);
}

/* ── Restaurant grid ─────────────────────────────────── */
.cfeed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
  max-width: 1280px;
  margin: 36px auto 0;
  padding: 0 48px;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1280px) {
  .cfeed-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .cfeed-hero-inner { padding: 28px 20px 60px; }
  .cfeed-filterbar-inner { padding: 0 20px; gap: 12px; }
  .cfeed-filterbar-label { display: none; }
  .cfeed-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; padding: 0 16px; }
  .cfeed-title { font-size: clamp(2.6rem, 10vw, 4rem); letter-spacing: -.045em; }
}
@media (max-width: 520px) {
  .cfeed-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ══════════════════════════════════════════════════════
   RESTAURANT CARD — Premium v7
   Clean, proven: logo as cover image + frosted pills
   ══════════════════════════════════════════════════════ */

.cfeed-card-wrap { display: flex; flex-direction: column; }

.cfeed-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.07), 0 0 0 1px rgba(0,0,0,.05);
  height: 100%;
  cursor: pointer;
  transition: box-shadow .28s cubic-bezier(.22,1,.36,1), transform .28s cubic-bezier(.22,1,.36,1);
}
.cfeed-card:hover {
  color: inherit !important;
  text-decoration: none !important;
  box-shadow: 0 12px 40px rgba(0,0,0,.13), 0 0 0 1px rgba(0,0,0,.05);
  transform: translateY(-4px);
}
.cfeed-card--closed { opacity: .55; filter: saturate(.2); }

/* ── Image shell ───────────────────────────────────────── */
.cfeed-img-shell {
  position: relative;
  overflow: hidden;
  height: 196px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #fdf6f0 0%, #fdf0f0 50%, #f5f0fd 100%);
}

/* Restaurant logo — contain so full brand is visible */
.cfeed-img-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.cfeed-card:hover .cfeed-img-el { transform: scale(1.04); }
.cfeed-img-el .el-image__inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cfeed-img-el .el-image__error,
.cfeed-img-el .el-image__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fdf6f0 0%, #fdf0f0 50%, #f5f0fd 100%);
  color: #d1c4c4;
}

/* Subtle bottom-fade so pills read cleanly */
.cfeed-img-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 72px;
  background: linear-gradient(to top, rgba(0,0,0,.48) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Pills row at bottom of image */
.cfeed-img-pills {
  position: absolute;
  bottom: 10px; left: 10px; right: 10px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Delivery time pill */
.cfeed-time-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--dark);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  letter-spacing: -.01em;
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.cfeed-time-pill svg { color: var(--text-muted); flex-shrink: 0; }

/* Rating pill */
.cfeed-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #92400e;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: -.01em;
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

/* Overlays */
.cfeed-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.cfeed-overlay--soft  { background: rgba(255,255,255,.5); backdrop-filter: blur(2px); }
.cfeed-overlay--heavy { background: rgba(8,8,18,.42); backdrop-filter: blur(3px); }

/* Closed / status badge */
.cfeed-status-badge {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(8,8,18,.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  letter-spacing: .015em;
  white-space: nowrap;
  max-width: 90%;
  text-align: center;
  border: 1px solid rgba(255,255,255,.14);
}

/* Promo ribbon */
.cfeed-tag-promo {
  position: absolute;
  top: 12px; left: 0;
  z-index: 5;
  background: linear-gradient(90deg, #15803d, #22c55e);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px 5px 10px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 3px 12px rgba(22,163,74,.4);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Favourite */
.cfeed-fav-shell {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 5;
}

/* ── Card body ─────────────────────────────────────────── */
.cfeed-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
}

.cfeed-rname {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -.025em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.cfeed-rtags {
  font-size: 12px;
  color: var(--text-faint);
  margin: 0;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cfeed-rtags a { color: var(--text-faint) !important; text-decoration: none !important; }

/* Meta strip */
.cfeed-meta-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  margin-top: auto;
  border-top: 1px solid var(--border-light);
}
.cfeed-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 500;
  flex-shrink: 0;
}
.cfeed-meta-item svg { flex-shrink: 0; }

/* Offer pills */
.cfeed-offer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}
.cfeed-offer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #15803d;
  background: rgba(22,163,74,.08);
  border: 1px solid rgba(22,163,74,.18);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.cfeed-offer svg { color: #16a34a; flex-shrink: 0; }

/* Skeleton */
.cfeed-skeleton-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06), 0 0 0 1px rgba(0,0,0,.04);
}

/* ── Empty state ─────────────────────────────────────── */
.cfeed-empty {
  text-align: center;
  padding: 120px 24px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cfeed-empty > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 400px;
}
.cfeed-empty-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--surface-3) 0%, var(--surface-2) 100%);
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.cfeed-empty h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  letter-spacing: -.03em;
}
.cfeed-empty p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   PREMIUM LANGUAGE PICKER — pls-*
   ═══════════════════════════════════════════════════════ */

.pls-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* ── Trigger ── */
.pls-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
  white-space: nowrap;
  outline: none;
  letter-spacing: .015em;
  line-height: 1.4;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.pls-trigger:hover {
  border: none;
  background: rgba(0,0,0,.05);
  box-shadow: none;
  transform: none;
}
.pls-trigger:active {
  transform: none;
  box-shadow: none;
  background: rgba(0,0,0,.08);
}
.pls-trigger:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.pls-wrap.pls-open .pls-trigger {
  border: none;
  background: rgba(0,0,0,.05);
  box-shadow: none;
  transform: none;
}

/* ── Flag in trigger ── */
.pls-flag-wrap {
  width: 22px;
  height: 16px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 5px rgba(0,0,0,.24), 0 0 0 1px rgba(0,0,0,.06);
  flex-shrink: 0;
  transition: box-shadow .2s ease;
}
.pls-wrap.pls-open .pls-flag-wrap,
.pls-trigger:hover .pls-flag-wrap {
  box-shadow: 0 2px 8px rgba(0,0,0,.22), 0 0 0 1.5px rgba(225,33,20,.28);
}
.pls-flag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Label ── */
.pls-label {
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Chevron ── */
.pls-chevron {
  flex-shrink: 0;
  color: #bfc5ce;
  transition: transform .26s cubic-bezier(.34,1.56,.64,1), color .2s ease;
  margin-left: 1px;
}
.pls-wrap.pls-open .pls-chevron {
  transform: rotate(180deg);
  color: var(--brand);
}
.pls-trigger:hover .pls-chevron {
  color: var(--brand);
}

/* ── Panel ── */
.pls-panel {
  position: absolute;
  top: calc(100% + 11px);
  right: 0;
  min-width: 210px;
  max-height: 320px;
  overflow-y: auto;
  overflow-x: hidden;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.85);
  outline: 1px solid rgba(0,0,0,.06);
  box-shadow:
    0 2px 4px rgba(0,0,0,.04),
    0 8px 24px rgba(0,0,0,.09),
    0 32px 80px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.9);
  z-index: 1060;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-8px) scale(.95);
  transform-origin: top right;
  transition: opacity .22s cubic-bezier(.4,0,.2,1), transform .26s cubic-bezier(.34,1.2,.64,1);
}
.pls-wrap.pls-open .pls-panel {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Scrollbar ── */
.pls-panel::-webkit-scrollbar { width: 3px; }
.pls-panel::-webkit-scrollbar-track { background: transparent; }
.pls-panel::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.12);
  border-radius: 99px;
}
.pls-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(225,33,20,.28);
}

/* ── Panel header ── */
.pls-panel-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 16px 11px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #c0c8d4;
  background: linear-gradient(to bottom, rgba(248,249,250,.9), rgba(248,249,250,0));
  border-bottom: 1px solid rgba(0,0,0,.05);
  position: sticky;
  top: 0;
  z-index: 1;
}
.pls-panel-header svg {
  opacity: .65;
}
.pls-count {
  margin-left: auto;
  background: rgba(0,0,0,.06);
  color: #9aa3ae;
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 99px;
  letter-spacing: .04em;
}

/* ── List ── */
.pls-list {
  list-style: none;
  margin: 0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ── Item ── */
.pls-item {
  border-radius: 11px;
  overflow: hidden;
}

/* ── Link ── */
.pls-link {
  display: flex !important;
  align-items: center;
  gap: 11px;
  padding: 10px 12px 10px 16px;
  border-radius: 11px;
  text-decoration: none !important;
  color: #1a1a1a !important;
  font-size: 13.5px;
  font-weight: 500;
  transition: background .18s ease, color .15s ease;
  position: relative;
}
.pls-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: #e12114;
  border-radius: 0 3px 3px 0;
  transition: height .2s cubic-bezier(.34,1.56,.64,1);
}
.pls-link:hover {
  background: #fef2f2 !important;
  color: #c0160b !important;
}
.pls-link:hover::before {
  height: 55%;
}

/* ── Active item ── */
.pls-item.is-active .pls-link {
  background: #fee2e2 !important;
  color: #c0160b !important;
  font-weight: 700;
}
.pls-item.is-active .pls-link::before {
  height: 70%;
}
.pls-item.is-active .pls-item-flag-wrap {
  outline: 2px solid #e12114;
  outline-offset: 1px;
}

/* ── Flag in item ── */
.pls-item-flag-wrap {
  width: 26px;
  height: 18px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 5px rgba(0,0,0,.2), 0 0 0 1px rgba(0,0,0,.06);
  flex-shrink: 0;
  transition: box-shadow .18s ease, outline .18s ease;
}
.pls-item-flag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Name ── */
.pls-item-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: .01em;
}

/* ── Checkmark ── */
.pls-check {
  flex-shrink: 0;
  color: #e12114;
  margin-left: auto;
  filter: drop-shadow(0 1px 3px rgba(225,33,20,.45));
}

/* ── Drawer variants ── */
.pls-drawer-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pls-drawer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px 10px 16px;
  border-radius: 11px;
  text-decoration: none !important;
  color: #1a1a1a !important;
  font-size: 13.5px;
  font-weight: 500;
  transition: background .17s ease, color .15s ease;
  position: relative;
}
.pls-drawer-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: #e12114;
  border-radius: 0 3px 3px 0;
  transition: height .2s cubic-bezier(.34,1.56,.64,1);
}
.pls-drawer-item:hover {
  background: #fef2f2 !important;
  color: #c0160b !important;
}
.pls-drawer-item:hover::before {
  height: 55%;
}
.pls-drawer-item.is-active {
  background: #fee2e2 !important;
  color: #c0160b !important;
  font-weight: 700;
}
.pls-drawer-item.is-active::before {
  height: 70%;
}

/* ── RTL ── */
html[dir="rtl"] .pls-panel {
  right: auto;
  left: 0;
  transform-origin: top left;
}
html[dir="rtl"] .pls-link {
  padding: 10px 16px 10px 12px;
}
html[dir="rtl"] .pls-link::before {
  left: auto;
  right: 0;
  border-radius: 3px 0 0 3px;
}
html[dir="rtl"] .pls-check {
  margin-left: 0;
  margin-right: auto;
}
html[dir="rtl"] .pls-drawer-item {
  padding: 10px 16px 10px 13px;
}
html[dir="rtl"] .pls-drawer-item::before {
  left: auto;
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* ════════════════════════════════════════════════
   MERCHANT HERO — Natural Gradient Overlay
   ════════════════════════════════════════════════ */

.merchant-hero {
  margin-bottom: 0;
  position: relative;
}

/* ── Full-bleed banner — 520px, content stays on photo ── */
.merchant-hero__banner {
  position: relative;
  height: 560px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Clean cinematic gradient — no brand colour tint, no radial glow */
.merchant-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.10) 0%,
    rgba(0,0,0,.0)  25%,
    rgba(0,0,0,.22) 52%,
    rgba(0,0,0,.70) 72%,
    rgba(0,0,0,.88) 100%
  );
  z-index: 1;
}

/* Film-grain removed */
.merchant-hero__noise { display: none; }

/* Match banner container width to the rest of the page (nav + section-menu) */
.merchant-hero__top-container.container,
.merchant-hero__glass-bar .container {
  max-width: 1520px !important;
  width: 96% !important;
}

/* ── Top bar: breadcrumb + fav ── */
.merchant-hero__top-container {
  position: relative;
  z-index: 4;
}
.merchant-hero__top-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 0 0;
}

.merchant-hero__breadcrumb { padding: 0; }
.merchant-hero__breadcrumb .el-breadcrumb__inner,
.merchant-hero__breadcrumb .el-breadcrumb__inner a,
.merchant-hero__breadcrumb .el-breadcrumb__separator {
  color: rgba(255,255,255,.52) !important;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1px;
}
.merchant-hero__breadcrumb .el-breadcrumb__inner a:hover {
  color: rgba(255,255,255,.88) !important;
}

/* Fav button — clean dark circle, no frosted glass */
.merchant-hero__fav { position: relative; z-index: 4; }
.merchant-hero__fav .el-button,
.merchant-hero__fav button,
.merchant-hero__fav .save-store-btn {
  background: rgba(0,0,0,.40) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 50% !important;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease !important;
  color: #fff !important;
  box-shadow: none !important;
}
.merchant-hero__fav .el-button:hover,
.merchant-hero__fav button:hover,
.merchant-hero__fav .save-store-btn:hover {
  background: var(--brand) !important;
  border-color: var(--brand-dark) !important;
  transform: none !important;
  box-shadow: none !important;
}

/* ════════════════════════════════
   INFO BAR — floats on the photo gradient, no frosted glass
   ════════════════════════════════ */
.merchant-hero__glass-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.merchant-hero__glass-inner {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 28px 0 32px;
}

/* ── Logo — clean white card, static ── */
.merchant-hero__logo-wrap {
  flex-shrink: 0;
  align-self: center;
  width: 84px;
  height: 84px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.3);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  transition: none;
}
.merchant-hero__logo-wrap:hover { transform: none; }
.merchant-hero__logo-wrap .merchant-hero__logo,
.merchant-hero__logo-wrap .el-image {
  width: 84px !important;
  height: 84px !important;
  border-radius: 14px;
  display: block !important;
}
.merchant-hero__logo-wrap .el-image img {
  width: 84px !important;
  height: 84px !important;
  object-fit: cover !important;
  border-radius: 14px;
  display: block;
}

/* ── Loading skeleton rows ── */
.mh-skeleton-row {
  background: rgba(255,255,255,.12);
  display: block;
}

/* ── Info center block ── */
.merchant-hero__info {
  flex: 1;
  min-width: 0;
}

/* Row 1: name + status badge — inline, left-anchored */
.merchant-hero__name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}
.merchant-hero__name-row .merchant-hero__status-badge {
  flex-shrink: 0;
}

/* Legacy badges wrapper — unused */
.merchant-hero__badges { display: none; }

/* ── Cuisine tag — plain uppercase label ── */
.merchant-hero__cuisine-tag {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
  color: rgba(255,255,255,.45);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Hide open-badge when AJAX confirms store is actually closed */
body.merchant-store-is-closed #mh-badge-open { display: none !important; }

/* Status badge — solid, no blur */
.merchant-hero__status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(22,163,74,.25);
  border: 1px solid rgba(52,211,153,.38);
  color: #86efac;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05px;
}
.merchant-hero__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: none;
}
.merchant-hero__status-badge--closed {
  background: rgba(239,68,68,.18);
  border-color: rgba(239,68,68,.32);
  color: #fca5a5;
}
.merchant-hero__status-dot--closed {
  background: #f87171;
}

.merchant-hero__schedule-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: #dc2626;
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.merchant-hero__schedule-btn:hover {
  background: #b91c1c;
  color: #fff !important;
  text-decoration: none;
}
.merchant-hero__schedule-btn i {
  font-size: 14px;
}

/* Restaurant name — white, crisp, no text-shadow */
.merchant-hero__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  text-shadow: none;
  letter-spacing: -.3px;
  line-height: 1.15;
  margin: 0;
}

/* Address text */
.merchant-hero__address-text {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.62);
  text-shadow: none;
  line-height: 1.5;
  margin-bottom: 8px;
}
.merchant-hero__address-text i {
  font-size: 14px;
  color: rgba(255,255,255,.38);
  margin-top: 1px;
  flex-shrink: 0;
}

/* ── Meta row: flat single row, all items share same gap ── */
.merchant-hero__meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  row-gap: 6px;
}

/* Dot separator between items */
.mh-meta-sep {
  color: rgba(255,255,255,.28);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  user-select: none;
}

/* Star rating label — plain amber text, no pill */
.mh-rating-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fbbf24;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.mh-rating-label i { font-size: 12px; color: #fbbf24; }
.mh-rating-label strong { color: #fef3c7; }
.mh-rating-label:hover { color: #fde68a; text-decoration: none; }

/* Distance label — plain muted text, no pill */
.mh-distance-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,.45);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
}
.mh-distance-label i { font-size: 12px; color: rgba(255,255,255,.28); }

/* Ghost outline action button (Add Address) */
.mh-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 26px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1px solid rgba(255,255,255,.38);
  color: rgba(255,255,255,.80);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
  white-space: nowrap;
}
.mh-action-btn i { font-size: 12px; color: rgba(255,255,255,.5); }
.mh-action-btn:hover {
  border-color: rgba(255,255,255,.65);
  color: #fff;
  background: rgba(255,255,255,.08);
  text-decoration: none;
}
.mh-action-btn:hover i { color: rgba(255,255,255,.75); }

/* Solid red primary action button (Schedule Order) */
.mh-action-btn--primary {
  background: #dc2626;
  border-color: #dc2626;
  color: #fff;
}
.mh-action-btn--primary i { color: rgba(255,255,255,.8); }
.mh-action-btn--primary:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  color: #fff;
}

/* Legacy chip classes — kept for any other page usage */
.merchant-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  background: transparent;
  border: none;
  color: rgba(255,255,255,.45);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}
.merchant-hero__chip i { font-size: 12px; color: rgba(255,255,255,.28); }
.merchant-hero__chip:hover { color: rgba(255,255,255,.72); text-decoration: none; }
a.merchant-hero__chip { cursor: pointer; }
.merchant-hero__chip--star { color: #fbbf24; }
.merchant-hero__chip--star i { color: #fbbf24; }
.merchant-hero__chip--star strong { color: #fef3c7; font-weight: 700; }
.merchant-hero__chip--star span { color: rgba(253,230,138,.65); }
.merchant-hero__chip--add-address { color: rgba(255,255,255,.80); }

/* ── Right column: Delivery / Pickup toggle ── */
.merchant-hero__right-col {
  flex-shrink: 0;
  align-self: flex-start;
  display: flex;
  align-items: flex-start;
}

/* ── Delivery / Pickup segmented control (right column) ── */
.merchant-hero__right-col .btn-group.btn-group-rounded {
  background: rgba(0,0,0,.35) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 12px !important;
  min-height: 48px;
  padding: 4px;
  gap: 3px;
  backdrop-filter: none !important;
  box-shadow: none !important;
}
.merchant-hero__right-col .btn-group-rounded .btn {
  border-radius: 9px !important;
  padding: 6px 20px !important;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.45) !important;
  background: transparent !important;
  border: none !important;
  transition: color .15s, background .15s !important;
  box-shadow: none !important;
  line-height: 1.4;
  white-space: nowrap;
}
.merchant-hero__right-col .btn-group-rounded .btn .bold {
  font-weight: 700;
  color: rgba(255,255,255,.55);
  display: block;
}
.merchant-hero__right-col .btn-group-rounded .btn p {
  font-size: 10px;
  color: rgba(255,255,255,.32);
  margin: 0;
  font-weight: 500;
}
.merchant-hero__right-col .btn-group-rounded .btn:hover {
  color: rgba(255,255,255,.85) !important;
  background: rgba(255,255,255,.08) !important;
}
.merchant-hero__right-col .btn-group-rounded .btn.active {
  background: var(--brand) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(220,38,38,.4) !important;
}
.merchant-hero__right-col .btn-group-rounded .btn.active .bold { color: #fff; }
.merchant-hero__right-col .btn-group-rounded .btn.active p { color: rgba(255,255,255,.72); }
.merchant-hero__right-col .btn-group-rounded .btn.active:hover {
  background: var(--brand-dark) !important;
}

/* Single service in right-col: still shows as a compact indicator */
.merchant-hero__right-col .btn-group.btn-group-rounded:has(.btn:only-child) {
  background: rgba(220,38,38,.15) !important;
  border-color: rgba(220,38,38,.35) !important;
  min-height: auto;
  border-radius: 10px !important;
}
.merchant-hero__right-col .btn-group-rounded .btn.active:only-child {
  background: transparent !important;
  color: rgba(255,255,255,.85) !important;
  box-shadow: none !important;
  cursor: default !important;
  pointer-events: none;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px !important;
}
.merchant-hero__right-col .btn-group-rounded .btn.active:only-child .bold {
  color: rgba(255,255,255,.85);
  font-size: 12px;
}
.merchant-hero__right-col .btn-group-rounded .btn.active:only-child:hover {
  background: transparent !important;
}

/* ════════════════════════════════════════════════
   SCHEDULE ORDER BANNER — On-brand Red
   ════════════════════════════════════════════════ */

.schedule-banner {
  position: relative;
  z-index: 10;
  margin-top: 0;
  padding: 16px 0;
  background: linear-gradient(180deg, rgba(0,0,0,.06) 0%, transparent 100%);
}

.schedule-banner__card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  border-radius: 16px;
  background: #fff;
  border: 1.5px solid rgba(225,33,20,.12);
  box-shadow:
    0 2px 8px rgba(225,33,20,.06),
    0 8px 32px rgba(225,33,20,.08);
  position: relative;
  overflow: hidden;
}

.schedule-banner__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--brand-gradient);
  border-radius: 0 4px 4px 0;
}

.schedule-banner__card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -8%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225,33,20,.04) 0%, transparent 70%);
  pointer-events: none;
}

.schedule-banner__icon-wrap {
  position: relative;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-banner__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.schedule-banner__icon i {
  font-size: 22px;
  color: var(--brand);
}

.schedule-banner__pulse {
  position: absolute;
  inset: -3px;
  border-radius: 17px;
  border: 1.5px solid rgba(225,33,20,.15);
  animation: sched-pulse 2.8s ease-in-out infinite;
  z-index: 1;
}
@keyframes sched-pulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50% { opacity: 0; transform: scale(1.2); }
}

.schedule-banner__content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.schedule-banner__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 99px;
  background: var(--brand-light);
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.4;
}

.schedule-banner__title {
  font-family: var(--font-display) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  color: var(--text) !important;
  letter-spacing: -.02em;
  line-height: 1.3;
  margin: 0 0 4px !important;
}

.schedule-banner__desc {
  font-family: var(--font-display) !important;
  font-size: 13px !important;
  color: var(--text-muted) !important;
  line-height: 1.55;
  margin: 0 !important;
  max-width: 480px;
}

.schedule-banner__action {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.schedule-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  background: var(--brand-gradient);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-brand);
  transition: all .25s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.schedule-banner__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, rgba(255,255,255,.15) 0%, transparent 50%);
  pointer-events: none;
}

.schedule-banner__btn i {
  font-size: 16px;
  color: #fff;
}

.schedule-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand-lg);
  color: #fff !important;
}

.schedule-banner__btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .schedule-banner__card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 14px;
  }
  .schedule-banner__card::before { display: none; }
  .schedule-banner__desc { max-width: none; }
  .schedule-banner__btn { width: 100%; justify-content: center; }
}


/* ════════════════════════════════════════════════
   ADDRESS NEEDED BAR
   ════════════════════════════════════════════════ */
.address-bar {
  background: transparent;
  padding: 16px 0 20px;
}

.address-bar__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  border-radius: 20px;
  background: #ffffff;
  border: 1.5px solid rgba(225,33,20,.1);
  box-shadow:
    0 2px 8px rgba(0,0,0,.04),
    0 8px 28px rgba(225,33,20,.06);
  position: relative;
  overflow: hidden;
}

/* Subtle warm radial glow behind icon */
.address-bar__inner::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225,33,20,.07) 0%, transparent 70%);
  pointer-events: none;
}

.address-bar__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(225,33,20,.32), inset 0 1px 0 rgba(255,255,255,.2);
  flex-shrink: 0;
}

.address-bar__icon--warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 4px 16px rgba(245,158,11,.32), inset 0 1px 0 rgba(255,255,255,.2);
}
.address-bar--warning .address-bar__inner {
  border-color: rgba(245,158,11,.12);
  box-shadow: 0 2px 8px rgba(0,0,0,.04), 0 8px 28px rgba(245,158,11,.07);
}
.address-bar--warning .address-bar__inner::before {
  background: radial-gradient(circle, rgba(245,158,11,.08) 0%, transparent 70%);
}

.address-bar__text {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.address-bar__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 3px;
}
.address-bar__text span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

.address-bar__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 30px;
  border-radius: var(--radius-pill);
  background: var(--brand-gradient);
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .25px;
  text-decoration: none !important;
  box-shadow: var(--shadow-brand);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.address-bar__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.16) 0%, transparent 55%);
  pointer-events: none;
}
.address-bar__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transition: left .5s ease;
  pointer-events: none;
}
.address-bar__btn:hover {
  box-shadow: var(--shadow-brand-lg);
  transform: translateY(-2px);
  color: #fff !important;
}
.address-bar__btn:hover::after {
  left: 160%;
}

/* ════════════════════════════════════════════════
   MOBILE HERO — Premium Redesign
   ════════════════════════════════════════════════ */

/* ── Banner photo ── */
.merchant-hero-mobile__banner {
  position: relative;
  min-height: 270px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--dark);
  overflow: hidden;
}

/* ── Cinematic bottom-fade gradient (mobile only) ── */
.mhm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.0)  30%,
    rgba(0,0,0,.30) 65%,
    rgba(0,0,0,.62) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ── Fav button top-right ── */
.mhm-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  padding: 14px 14px 0;
}

.mhm-top-bar .save-store-btn,
.mhm-top-bar button,
.mhm-top-bar .el-button {
  background: rgba(0,0,0,.38) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: background .2s ease !important;
}

.mhm-top-bar .save-store-btn:hover,
.mhm-top-bar button:hover {
  background: rgba(225,33,20,.72) !important;
}

/* ════════════════════════════════════════════════
   MOBILE INFO CARD — Premium Redesign v4
   ════════════════════════════════════════════════ */

/* ── White card ── */
.mhm-info-card {
  background: #fff;
  border-radius: 24px 24px 0 0;
  margin-top: -24px;
  position: relative;
  z-index: 5;
  padding: 12px 16px 12px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.08);
  overflow: visible;
}

/* ── Logo: float left so text wraps naturally beside it ── */
.mhm-logo-wrap {
  float: left;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  overflow: hidden;
  background: #f9fafb;
  position: relative;
  z-index: 6;
  margin-top: -50px;
  margin-right: 12px;
  margin-bottom: 6px;
}

.mhm-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Name + badge on one line ── */
.mhm-name-badge {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 3px;
  padding-top: 2px;
}

.mhm-restaurant-name {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  letter-spacing: -.3px !important;
  line-height: 1.3 !important;
  flex: 1;
  min-width: 0;
}

.mhm-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 3px;
}

.mhm-status-badge--open  { background: #dcfce7; color: #15803d; }
.mhm-status-badge--closed { background: #fee2e2; color: #b91c1c; }

.mhm-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  flex-shrink: 0;
}
.mhm-status-dot--closed { background: #ef4444; }

/* ── Inline stats: ★ · Cuisine · € ── */
.mhm-stats-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
  font-size: 12px;
  margin-bottom: 0;
}

.mhm-stat         { font-weight: 500; color: #6b7280; }
.mhm-stat-sep     { color: #9ca3af; }
.mhm-stat--price  { color: #059669; font-weight: 700; }

.mhm-stat--rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #b45309;
}
.mhm-stat--rating .zmdi-star { color: #f59e0b; font-size: 12px; }
.mhm-stat-sub { color: #9ca3af; font-weight: 400; }

/* ── Clearfix after floated logo region ── */
.mhm-float-clear { clear: both; display: block; }

/* ── Bottom row: tap-row + service button side by side ── */
.mhm-bottom-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

/* ── Tap for hours row ── */
.mhm-info-tap-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 12px !important;
  background: #f9fafb !important;
  border-radius: 10px !important;
  border: 1px solid #f0f0f0 !important;
  text-decoration: none !important;
  color: #374151 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  flex: 1 !important;
  margin: 0 !important;
  transition: background .15s !important;
}
.mhm-info-tap-row:hover { background: #f3f4f6 !important; }
.mhm-info-tap-row .zmdi-pin    { color: #e12114; font-size: 14px; flex-shrink: 0; }
.mhm-info-tap-row span         { flex: 1; }
.mhm-info-tap-row .zmdi-chevron-right { color: #d1d5db; font-size: 15px; }

/* ── Mobile service toggle ── */
.mhm-service-wrap { padding-bottom: 0; flex-shrink: 0; }

.mhm-service-wrap .btn-group.btn-group-rounded {
  background: #f3f4f6 !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 4px !important;
  gap: 0 !important;
  box-shadow: none !important;
  min-height: unset !important;
  width: auto !important;
}

.mhm-service-wrap .btn-group-rounded .btn {
  flex: 1 !important;
  border-radius: 9px !important;
  border: none !important;
  background: transparent !important;
  color: #9ca3af !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 8px 6px !important;
  transition: all .2s !important;
  box-shadow: none !important;
  line-height: 1.3 !important;
  text-align: center !important;
  justify-content: center !important;
}
.mhm-service-wrap .btn-group-rounded .btn .bold { font-weight: 700 !important; color: inherit !important; font-size: 13px !important; display: block; }
.mhm-service-wrap .btn-group-rounded .btn p     { font-size: 11px !important; margin: 1px 0 0 !important; color: inherit !important; opacity: .7; font-weight: 400 !important; }

.mhm-service-wrap .btn-group-rounded .btn.active {
  background: #fff !important;
  color: #111827 !important;
  box-shadow: 0 1px 6px rgba(0,0,0,.10) !important;
}
.mhm-service-wrap .btn-group-rounded .btn.active .bold { color: #111827 !important; }
.mhm-service-wrap .btn-group-rounded .btn.active p     { color: #6b7280 !important; opacity: 1 !important; }

/* Single-service: compact pill (inline in bottom row) */
.mhm-service-wrap .btn-group.btn-group-rounded:has(.btn:only-child) {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.mhm-service-wrap .btn-group-rounded:has(.btn:only-child) .btn.active {
  background: #e12114 !important;
  border: none !important;
  color: #fff !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 8px rgba(225,33,20,.25) !important;
  padding: 8px 16px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  flex: unset !important;
  width: auto !important;
  white-space: nowrap !important;
}
.mhm-service-wrap .btn-group-rounded:has(.btn:only-child) .btn.active .bold { color: #fff !important; }
.mhm-service-wrap .btn-group-rounded:has(.btn:only-child) .btn.active p     { color: rgba(255,255,255,.8) !important; opacity: 1 !important; }

/* ── Kill old class ── */
.merchant-top-header { display: none !important; }

/* ════════════════════════════════════════════════
   MOBILE CATEGORY CAROUSEL — Premium Redesign
   ════════════════════════════════════════════════ */
@media (max-width: 991.98px) {

  /* ══ Widget sub-nav row — CSS Grid for guaranteed fill ══ */
  #vue-widget-nav-mobile {
    background: #fff !important;
    padding: 8px 12px 10px !important;
    border-bottom: 1px solid rgba(0,0,0,.07) !important;
    margin-top: 0 !important;
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    align-items: center !important;
    column-gap: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* widget-services hidden — out of grid flow */
  #vue-widget-nav-mobile .widget-services {
    display: none !important;
  }

  /* ── LEFT: "Delivery Now" — compact auto-width pill button ── */
  #vue-widget-nav-mobile .flexcol:first-child {
    min-width: 0 !important;
  }

  #vue-widget-nav-mobile .flexcol:first-child .position-relative {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0 !important;
    background: #fff !important;
    border: 1.5px solid #e2e4e7 !important;
    border-radius: 100px !important;
    padding: 0 12px !important;
    height: 40px !important;
    cursor: pointer !important;
    white-space: nowrap !important;
  }

  /* "Delivery Now" text */
  #vue-widget-nav-mobile .flexcol:first-child p.m-0 {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    line-height: 1 !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }

  #vue-widget-nav-mobile .flexcol:first-child .dropdown {
    display: flex !important;
    align-items: center !important;
  }

  /* Hide the address span — keep only the ▼ caret */
  #vue-widget-nav-mobile .flexcol:first-child .btn-text {
    font-size: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
  }

  #vue-widget-nav-mobile .flexcol:first-child .btn-text span.text-truncate {
    display: none !important;
  }

  /* ▼ caret */
  #vue-widget-nav-mobile .flexcol:first-child .btn-text.dropdown-toggle::after {
    font-size: 0 !important;
    margin-left: 5px !important;
    vertical-align: 2px !important;
    border-top: 5px solid #374151 !important;
    border-right: 4px solid transparent !important;
    border-left: 4px solid transparent !important;
    border-bottom: 0 !important;
    display: inline-block !important;
    opacity: 1 !important;
  }

  /* ── RIGHT: Search bar — fills the 1fr grid column ── */
  #vue-widget-nav-mobile .widget-search {
    min-width: 0 !important;
    width: 100% !important;
  }

  #vue-widget-nav-mobile .widget-search .btn {
    width: 100% !important;
    height: 40px !important;
    border-radius: 100px !important;
    background: #f4f5f7 !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 14px !important;
    gap: 8px !important;
    cursor: text !important;
    box-sizing: border-box !important;
  }

  /* Search icon on the left */
  #vue-widget-nav-mobile .widget-search .btn i {
    font-size: 17px !important;
    color: #9ca3af !important;
    flex-shrink: 0 !important;
  }

  /* "Search..." placeholder text via pseudo-element */
  #vue-widget-nav-mobile .widget-search .btn::after {
    content: 'Search...' !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #9ca3af !important;
    font-family: var(--font-display) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    flex: 1 !important;
    min-width: 0 !important;
  }

  /* ── "Search in menu" plain input inside mobile header ── */
  #vue-widget-nav-mobile .widget-search .menu-search-header {
    width: 100% !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 0 14px !important;
    background: #f4f5f7 !important;
    border-radius: 100px !important;
    box-sizing: border-box !important;
  }
  #vue-widget-nav-mobile .widget-search .menu-search-header .menu-search-header-icon {
    font-size: 17px !important;
    color: #9ca3af !important;
    flex-shrink: 0 !important;
  }
  #vue-widget-nav-mobile .widget-search .menu-search-header .menu-search-header-input {
    flex: 1 !important;
    min-width: 0 !important;
    height: 100% !important;
    border: 0 !important;
    outline: none !important;
    background: transparent !important;
    font-size: 14px !important;
    font-family: var(--font-display) !important;
    color: #111827 !important;
    padding: 0 !important;
  }
  #vue-widget-nav-mobile .widget-search .menu-search-header .menu-search-header-input::placeholder {
    color: #9ca3af !important;
  }
  #vue-widget-nav-mobile .widget-search .menu-search-header .menu-search-header-clear {
    font-size: 13px !important;
    color: var(--brand, #e12114) !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
  }

  /* ════════════════════════════════════════════════
     CATEGORY NAV — App-style scrollable tab bar
     ════════════════════════════════════════════════ */

  /* ── Sticky wrapper (el-affix) — full-bleed under header ── */
  .category-carousel-sticky {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    margin-top: 0 !important;
    z-index: 9 !important;
  }
  /* Kill spacing around the mobile carousel wrapper and the hidden desktop bar */
  .section-menu .col-lg-9 > div.d-block.d-lg-none {
    margin: 0 !important;
    padding: 0 !important;
  }
  /* Hide desktop topcategory bar entirely on mobile (incl. el-affix wrapper) */
  #vue-merchant-category > .el-affix,
  .section-menu .category-owlcarousel { display: none !important; }
  /* Trim padding on section-menu / container on mobile */
  .section-menu { padding-top: 0 !important; margin-top: 0 !important; }
  .section-menu > .container { padding-left: 0 !important; padding-right: 0 !important; padding-top: 0 !important; margin-top: 0 !important; }
  .section-menu > .container > .row { margin-top: 0 !important; }
  .section-menu .col-lg-9.menu-center { margin: 0 !important; padding: 0 !important; }
  #vue-merchant-category { margin-top: 0 !important; padding-top: 0 !important; }
  #vue-merchant-category > div[ref="search_result"],
  #vue-merchant-category > div:first-child { margin: 0 !important; padding: 0 !important; min-height: 0 !important; }
  /* Remove bottom space below the restaurant info card */
  #vue-merchant-details { margin-bottom: 0 !important; padding-bottom: 0 !important; }
  #vue-merchant-details + * { margin-top: 0 !important; }
  /* Make sure the carousel sits flush */
  .category-carousel-sticky { margin-top: 0 !important; padding-top: 0 !important; }
  .category-carousel-sticky .el-affix--fixed {
    width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
  }

  /* ── Bar container ── */
  .category-carousel {
    background: #fff !important;
    border-bottom: 1.5px solid #f0f0f0 !important;
    box-shadow: 0 2px 12px rgba(0,0,0,.06) !important;
    height: 50px !important;
    align-items: stretch !important;
    padding: 0 !important;
    flex-wrap: nowrap !important;
    position: relative !important;
    width: 100% !important;
    margin: 0 !important;
  }

  /* ── Hide < > arrow columns — touch swipe navigates ── */
  .category-carousel .col-1:nth-child(2),
  .category-carousel .col-1:nth-child(4) {
    display: none !important;
  }

  /* ── Hamburger column ── */
  .category-carousel .col-1:nth-child(1) {
    flex: 0 0 auto !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    background: #fff !important;
    position: relative !important;
    z-index: 5 !important;
    box-shadow: 6px 0 8px -4px rgba(0,0,0,.08) !important;
  }

  .category-carousel a.btn {
    width: 46px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 19px !important;
    color: #374151 !important;
    background: #fff !important;
    border: none !important;
    border-right: 1.5px solid #f0f0f0 !important;
    padding: 0 !important;
    transition: color .15s !important;
    flex-shrink: 0 !important;
  }

  .category-carousel a.btn:hover {
    color: #e12114 !important;
  }

  /* ── Tabs column — fills all remaining width ── */
  .category-carousel .col-9 {
    flex: 1 1 0 !important;
    max-width: 100% !important;
    width: 0 !important;
    min-width: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: stretch !important;
    overflow: hidden !important;
  }

  /* ── Owl wrapper ── */
  .category-carousel .owl-carousel {
    width: 100% !important;
  }

  .category-carousel .owl-carousel .owl-stage-outer {
    overflow: hidden !important;
    height: 50px !important;
  }

  .category-carousel .owl-carousel .owl-stage {
    display: flex !important;
    align-items: stretch !important;
    height: 50px !important;
    padding-left: 6px !important;
  }

  .category-carousel .owl-carousel .owl-item {
    width: auto !important;
    display: flex !important;
    align-items: stretch !important;
  }

  /* ── Tab link — full bar height, transparent bg ── */
  .category-carousel .nav-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 50px !important;
    padding: 0 16px !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: .2px !important;
    color: #adb5bd !important;
    white-space: nowrap !important;
    text-transform: none !important;
    position: relative !important;
    transition: color .2s ease !important;
    text-decoration: none !important;
  }

  .category-carousel .nav-link p {
    margin: 0 !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    color: inherit !important;
    line-height: 1 !important;
    position: relative !important;
    display: inline-block !important;
  }

  /* ── Active tab — dark bold text ── */
  .category-carousel .nav-link.active {
    color: #111827 !important;
    font-weight: 700 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  /* ── Active indicator — red underline matching text width ── */
  .category-carousel .nav-link.active::after { display: none !important; }
  .category-carousel .nav-link.active p::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: -10px !important;
    height: 3px !important;
    background: #e12114 !important;
    border-radius: 3px 3px 0 0 !important;
    display: block !important;
  }

  /* ── Hide header search icon on mobile ── */
  .header-search-btn {
    display: none !important;
  }
}

/* ════════════════════════════════════════════════
   CATEGORY DRAWER (bottom sheet) — Redesigned
   ════════════════════════════════════════════════ */

/* Drawer shell */
.el-drawer.drawer-category {
  border-radius: 24px 24px 0 0 !important;
  overflow: hidden !important;
  background: #ffffff !important;
  box-shadow: 0 -8px 40px rgba(0,0,0,.14) !important;
}

.el-drawer.drawer-category .el-drawer__body {
  padding: 0 !important;
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
}

/* ── Drag handle ── */
.dc-handle-bar {
  width: 36px !important;
  height: 4px !important;
  border-radius: 100px !important;
  background: #e5e7eb !important;
  margin: 12px auto 0 !important;
  flex-shrink: 0 !important;
}

/* ── Header ── */
.dc-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 20px 14px !important;
  border-bottom: 1px solid #f3f4f6 !important;
  flex-shrink: 0 !important;
}

.dc-header-left {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-width: 0 !important;
}

/* Red icon circle */
.dc-header-icon {
  width: 42px !important;
  height: 42px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #e12114 0%, #c8190e 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  color: #ffffff !important;
  font-size: 18px !important;
  box-shadow: 0 4px 12px rgba(225,33,20,.30) !important;
}

.dc-header-text {
  min-width: 0 !important;
}

.dc-header-name {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 200px !important;
  line-height: 1.2 !important;
}

.dc-header-sub {
  font-size: 12px !important;
  color: #9ca3af !important;
  font-weight: 400 !important;
  margin-top: 2px !important;
  line-height: 1 !important;
}

/* Close button */
.dc-close-btn {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  background: #f3f4f6 !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  color: #374151 !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  transition: background .15s, color .15s !important;
  padding: 0 !important;
}

.dc-close-btn:hover {
  background: #fee2e2 !important;
  color: #e12114 !important;
}

/* ── Category list ── */
.dc-list {
  flex: 1 !important;
  overflow-y: auto !important;
  padding: 8px 0 20px !important;
}

/* Each row */
.dc-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 20px !important;
  height: 58px !important;
  text-decoration: none !important;
  color: #111827 !important;
  border-bottom: 1px solid #f9fafb !important;
  transition: background .14s ease !important;
  gap: 12px !important;
}

.dc-row:last-child {
  border-bottom: none !important;
}

.dc-row:hover,
.dc-row:active {
  background: #fef2f2 !important;
}

.dc-row:hover .dc-row-name,
.dc-row:active .dc-row-name {
  color: #e12114 !important;
}

.dc-row:hover .dc-row-dot,
.dc-row:active .dc-row-dot {
  background: #e12114 !important;
  transform: scale(1.3) !important;
}

/* Left side */
.dc-row-left {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-width: 0 !important;
  flex: 1 !important;
}

/* Colored accent dot */
.dc-row-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #e5e7eb !important;
  flex-shrink: 0 !important;
  transition: background .14s, transform .14s !important;
}

/* Category name */
.dc-row-name {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  letter-spacing: .1px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-transform: uppercase !important;
  transition: color .14s !important;
}

/* Item count badge */
.dc-row-badge {
  min-width: 28px !important;
  height: 24px !important;
  border-radius: 100px !important;
  background: #fef2f2 !important;
  color: #e12114 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 9px !important;
  flex-shrink: 0 !important;
  letter-spacing: .2px !important;
}











/* ════════════════════════════════════════════════════════════════
   MENU SEARCH BAR — Premium Redesign
   ════════════════════════════════════════════════════════════════ */

.menu-search-wrap {
  position: relative;
}

.menu-search-wrap .el-input {
  --el-input-height: 56px !important;
  --el-input-border-radius: 14px !important;
  --el-input-border-color: #e8e3db !important;
  --el-input-hover-border-color: #c8c2b9 !important;
  --el-input-focus-border-color: #e12114 !important;
  --el-input-bg-color: #ffffff !important;
  --el-input-placeholder-color: #b0aaa3 !important;
  --el-input-text-color: #1a1a1a !important;
}

.menu-search-wrap .el-input__wrapper {
  border-radius: 14px !important;
  border: 1.5px solid #e8e3db !important;
  background: #ffffff !important;
  box-shadow: none !important;
  padding: 0 18px 0 14px !important;
  transition: border-color .2s ease, background .2s ease !important;
}

.menu-search-wrap .el-input__wrapper:hover {
  border-color: #c8c2b9 !important;
  box-shadow: none !important;
}

.menu-search-wrap .el-input__wrapper.is-focus {
  border-color: #e12114 !important;
  box-shadow: none !important;
  background: #ffffff !important;
}

.menu-search-wrap .el-input__inner {
  font-family: var(--font-display) !important;
  font-size: 14.5px !important;
  font-weight: 400 !important;
  color: #1a1a1a !important;
  letter-spacing: .01em !important;
  height: 56px !important;
  line-height: 56px !important;
}

.menu-search-wrap .el-input__inner::placeholder {
  color: #b0aaa3 !important;
  font-weight: 400 !important;
}

.menu-search-wrap .el-input__prefix {
  display: flex !important;
  align-items: center !important;
  margin-right: 4px !important;
}

.menu-search-wrap .el-input__prefix-inner {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
}

.menu-search-wrap .el-input__prefix-inner .zmdi-search,
.menu-search-wrap .el-input__prefix-inner i {
  font-size: 20px !important;
  color: #e12114 !important;
  opacity: .75 !important;
  transition: opacity .15s ease !important;
}

.menu-search-wrap .el-input__wrapper.is-focus .zmdi-search,
.menu-search-wrap .el-input__wrapper.is-focus i {
  opacity: 1 !important;
}

.menu-search-wrap .el-input__suffix {
  display: flex !important;
  align-items: center !important;
}

.menu-search-wrap .el-input__suffix .el-link {
  font-family: var(--font-display) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  color: #9a9490 !important;
}

.menu-search-wrap .el-input__suffix .el-link:hover {
  color: #e12114 !important;
}

/* ════════════════════════════════════════════════════════════════
   MENU PAGE v7 — Editorial Clean Premium
   Light · Airy · Professional · No dark gradients · No gloss
   ════════════════════════════════════════════════════════════════ */

/* ══ Page canvas ══ */
.section-menu {
  background: #f6f5f2;
  padding-top: 0;
  padding-bottom: 80px;
  position: relative;
}
.section-menu::before {
  display: none;
}
.section-menu > .container {
  padding-top: 36px;
  position: relative;
  max-width: 1520px !important;
  width: 96% !important;
}


/* ══════════════════════════════════════════════════
   SIDEBAR — Clean Editorial Card
   ══════════════════════════════════════════════════ */

.section-menu .menu-left {
  border-right: none !important;
  padding-right: 12px !important;
}

#sticky-sidebar {
  background: #ffffff !important;
  border-radius: 20px !important;
  padding: 26px 14px 22px !important;
  border: 1px solid #e8e6e1 !important;
  box-shadow: none !important;
  overflow: visible !important;
}
#sticky-sidebar:has(.inner-wrapper-sticky) {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

#sticky-sidebar .inner-wrapper-sticky {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px 14px 22px;
  border: 1px solid #e8e6e1;
  box-shadow: none;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,.07) transparent;
}
#sticky-sidebar .inner-wrapper-sticky::-webkit-scrollbar { width: 3px; }
#sticky-sidebar .inner-wrapper-sticky::-webkit-scrollbar-thumb { background: rgba(0,0,0,.07); border-radius: 3px; }

#sticky-sidebar h5 {
  font-family: var(--font-display) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .24em !important;
  text-transform: uppercase !important;
  color: #1a1a1a !important;
  margin: 0 0 18px !important;
  padding: 0 10px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}
#sticky-sidebar h5::before {
  content: '';
  width: 16px;
  height: 2px;
  background: #e12114;
  border-radius: 99px;
  flex-shrink: 0;
}
#vue-cart h5 .basket-icon {
  width: 40px;
  height: 40px;
  opacity: .9;
  flex-shrink: 0;
  margin-left: auto;
  display: inline-block;
  vertical-align: middle;
}
#vue-cart h5 .basket-icon [fill="#1c274c"],
#vue-cart .basket-header-right .basket-icon [fill="#1c274c"] { fill: #e12114 !important; }
#vue-cart h5 .basket-icon [fill="#8e93a6"],
#vue-cart .basket-header-right .basket-icon [fill="#8e93a6"] { fill: rgba(225,33,20,0.35) !important; }

#sticky-sidebar h5 .menu-cat-icon {
  width: 35px;
  height: 35px;
  fill: #e12114;
  opacity: .75;
  flex-shrink: 0;
  margin-left: auto;
  display: inline-block;
  vertical-align: middle;
}

ul#menu-category {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid #f0ede8;
  margin-left: 6px;
}

.menu-category a {
  font-family: var(--font-display) !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  color: #7c8494 !important;
  padding: 9px 10px 9px 16px !important;
  display: flex !important;
  align-items: center !important;
  border-radius: 0 8px 8px 0 !important;
  transition: all .15s ease !important;
  text-decoration: none !important;
  white-space: normal !important;
  word-break: break-word !important;
  line-height: 1.4 !important;
  position: relative;
  border: none !important;
  border-left: 2px solid transparent !important;
  margin-left: -2px;
  letter-spacing: .01em;
}
.menu-category a::before { display: none !important; }

.menu-category a:hover {
  background: rgba(0,0,0,.03) !important;
  color: #1a1a1a !important;
  border-left-color: rgba(225,33,20,.35) !important;
}

.menu-category li.active a,
.menu-category li a.active,
#menu-category .col a.active,
#sticky-sidebar a.nav-link.active,
#sticky-sidebar .menu-category a.active,
#sticky-sidebar .menu-category a.nav-link.active,
ul#menu-category li a.nav-link.active,
ul#menu-category a.active,
#sticky-sidebar .nav-pills .nav-link.active,
#sticky-sidebar .nav-link.active {
  background: rgba(225,33,20,.06) !important;
  color: #e12114 !important;
  font-weight: 600 !important;
  border-left-color: #e12114 !important;
  border-radius: 0 8px 8px 0 !important;
  box-shadow: none !important;
}

.menu-category li.active a::before,
.menu-category li a.active::before { display: none !important; }
.menu-category li.active a:hover { color: #e12114 !important; }
.menu-category li.active a:after,
.menu-category li a.active:after { display: none !important; }
#sticky-sidebar a.nav-link.active:hover,
ul#menu-category a.active:hover { color: #e12114 !important; }


/* ══════════════════════════════════════════════════
   CATEGORY SECTIONS — Clean Professional Cards
   ══════════════════════════════════════════════════ */

.menu-center section {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e8e6e1;
  box-shadow: none;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 0;
  scroll-margin-top: 120px;
}

.menu-center section > h5 {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  letter-spacing: .03em !important;
  text-transform: uppercase !important;
  margin: 0 !important;
  padding: 18px 28px 16px 24px !important;
  border-bottom: 1px solid #f0ede8 !important;
  border-left: 4px solid #e12114 !important;
  display: block !important;
  position: relative !important;
  background: #ffffff !important;
}
.menu-center section > h5::before {
  display: none !important;
}
.menu-center section > h5::after {
  display: none !important;
}

.cat-section-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  border-radius: 18px 18px 0 0;
}

.cat-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform .6s ease;
}

.cat-section-image:hover img {
  transform: scale(1.04);
}

.cat-section-image__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 20%,
    rgba(0,0,0,.30) 50%,
    rgba(0,0,0,.88) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 30px 26px 10px;
}

.cat-section-image__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.cat-section-image__name::before,
.cat-section-image__name::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,.55));
  border-radius: 99px;
}
.cat-section-image__name::before {
  background: linear-gradient(to left, rgba(255,255,255,0), rgba(255,255,255,.55));
}

.menu-center section > p {
  font-size: 13px !important;
  color: #9ca3af !important;
  margin: 0 !important;
  padding: 10px 28px 4px !important;
  border-bottom: none !important;
  font-style: normal;
}


/* ══════════════════════════════════════════════════
   FOOD ITEM ROWS — Clean Professional List
   ══════════════════════════════════════════════════ */

.list-item-rows .item-right-col {
  flex-shrink: 0 !important;
  width: 124px !important;
  padding: 16px 16px 16px 8px !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-end !important;
}

.list-item-rows .item-thumb-wrap {
  position: relative !important;
  display: inline-block !important;
  width: 100px !important;
  height: 100px !important;
}

.list-item-rows .item-thumb {
  width: 100px !important;
  height: 100px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  background: #f5f5f5 !important;
}

.list-item-rows .item-thumb img {
  width: 100px !important;
  height: 100px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

.list-item-rows .item-add-btn {
  position: absolute !important;
  bottom: 0px !important;
  right: 7px !important;
  filter: none !important;
  transform: translateY(50%) !important;
}

.list-item-rows .item-add-btn:has(.quantity-wrapper) {
  left: 0 !important;
  right: 0 !important;
  bottom: 8px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.list-item-rows .item-thumb-wrap:not(:has(.item-thumb)) {
  width: auto !important;
  height: auto !important;
}

.list-item-rows .item-thumb-wrap:not(:has(.item-thumb)) .item-add-btn {
  position: static !important;
}

.list-item-rows .col.fixed-height {
  padding: 22px 23px 22px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  min-width: 0 !important;
  align-items: stretch !important;
}

.list-item-rows .price-btn-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  margin-top: auto !important;
}

.list-item-rows .item-price-col {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}

.list-item-rows .item-btn-col {
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  padding-left: 12px !important;
  /* Desktop: image-btn right = item-right-col pad-right (16px) + item-add-btn right (7px) = 23px
     from row edge. col.fixed-height right pad is already 23px, so no extra offset needed. */
  padding-right: 0 !important;
}

.list-item-rows .item-right-col {
  padding-bottom: 28px !important;
}

.list-item-rows .col.fixed-height .center {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.list-item-rows {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid #f0ede8 !important;
  transition: background .15s ease !important;
  cursor: pointer;
  position: relative;
}
.list-item-rows:last-child { border-bottom: none !important; }
.list-item-rows:hover {
  background: #fdf9f8 !important;
  box-shadow: none !important;
}

.list-item-rows .row.m-0.p-0 {
  display: flex !important;
  align-items: stretch !important;
  flex-wrap: nowrap !important;
}



.list-item-rows .fixed-height {
  min-height: 0 !important;
}

.list-item-rows h6.m-0 {
  font-family: var(--font-display) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  line-height: 1.4 !important;
  letter-spacing: -.01em;
  margin: 0 0 5px !important;
  transition: color .15s ease;
}
.list-item-rows:hover h6.m-0 { color: #e12114 !important; }

.list-item-rows p {
  font-size: 13px !important;
  color: #9ca3af !important;
  line-height: 1.6 !important;
  margin: 0 0 8px !important;
}
.list-item-rows p.ellipsis-2-lines {
  font-size: 13px !important;
  color: #9ca3af !important;
  line-height: 1.6 !important;
  margin: 0 0 12px !important;
}

.list-item-rows .btn-group-toggle {
  display: flex; flex-wrap: wrap; align-items: center; gap: 4px;
}
.list-item-rows .btn-group-toggle .btn {
  background: transparent !important;
  color: #1a1a1a !important;
  border: none !important;
  padding: 0 !important;
  font-family: var(--font-display) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: -.01em;
  box-shadow: none !important;
  border-radius: 0 !important;
  cursor: default;
  pointer-events: none;
  line-height: 1;
}
.list-item-rows .btn-group-toggle .btn.active,
.list-item-rows .btn-group .btn.active {
  background: transparent !important;
  color: #1a1a1a !important;
  box-shadow: none !important;
}
.list-item-rows p.bold.m-0.prices,
.list-item-rows .prices {
  font-family: var(--font-display) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  letter-spacing: -.01em !important;
  margin: 0 !important;
  line-height: 1;
}
.list-item-rows p.bold.m-0.prices:empty {
  display: none !important;
  margin: 0 !important;
}


/* ADD TO CART — compact circle + button */
.btn-add-plus,
a.btn-add-plus {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  border-radius: 50% !important;
  background: #e12114 !important;
  color: #fff !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  padding: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease !important;
  flex-shrink: 0 !important;
}
.btn-add-plus:hover,
a.btn-add-plus:hover {
  background: #c51d12 !important;
  box-shadow: none !important;
  transform: scale(1.12) !important;
  color: #fff !important;
}

/* el-button circle + variant */
.list-item-rows .el-button.btn-add-plus,
.list-item-rows .el-button.btn-add-plus:focus,
.list-item-rows .el-button.btn-add-plus.is-active {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  border-radius: 50% !important;
  background: #e12114 !important;
  border-color: transparent !important;
  color: #fff !important;
  padding: 0 !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  box-shadow: none !important;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease !important;
  --el-button-bg-color: #e12114 !important;
  --el-button-border-color: transparent !important;
  --el-button-hover-bg-color: #c51d12 !important;
  --el-button-hover-border-color: transparent !important;
  --el-button-active-bg-color: #b01910 !important;
  --el-button-text-color: #fff !important;
}
.list-item-rows .el-button.btn-add-plus:hover {
  background: #c51d12 !important;
  box-shadow: none !important;
  transform: scale(1.12) !important;
  color: #fff !important;
}
.list-item-rows .el-button.btn-add-plus.is-disabled,
.list-item-rows .el-button.btn-add-plus[disabled] {
  background: #f3f4f6 !important;
  color: #b0b7c3 !important;
  box-shadow: none !important;
  border-color: transparent !important;
  cursor: not-allowed !important;
  transform: none !important;
}


/* Qty stepper */
.quantity-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  width: 100% !important;
}
.quantity-parent {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}
.quantity-parent .quantity,
.list-item-rows .quantity {
  width: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  background: #f7f6f3 !important;
  border: 1px solid #e8e6e1 !important;
  border-radius: 50px !important;
  padding: 4px !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.04) !important;
  transition: box-shadow .2s ease, border-color .2s ease !important;
}
.quantity-parent .quantity:hover,
.list-item-rows .quantity:hover {
  border-color: #d4d0ca !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.07) !important;
}
.quantity-wrapper .qty-btn,
.list-item-rows .quantity .qty-btn {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  background: #fff !important;
  border: none !important;
  color: #374151 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  border-radius: 50% !important;
  transition: all .18s ease !important;
  padding: 0 !important;
  box-shadow: 0 1px 2px rgba(0,0,0,.06) !important;
  text-decoration: none !important;
  line-height: 1 !important;
  cursor: pointer !important;
}
.quantity-wrapper .qty-btn:hover,
.list-item-rows .quantity .qty-btn:hover {
  background: #e12114 !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(225,33,20,.3) !important;
  transform: scale(1.08) !important;
}
.quantity-wrapper .quantity .qty,
.list-item-rows .quantity .qty {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  color: #1a1a1a !important;
  min-width: 28px !important;
  text-align: center !important;
  line-height: 1 !important;
  user-select: none !important;
}

.list-item-rows .item-right-col .text-muted {
  font-family: var(--font-display) !important;
  font-size: 12px !important;
  color: #c8cdd6 !important;
  font-style: normal;
}


/* ══════════════════════════════════════════════════
   CART PANEL — Premium Redesign
   ══════════════════════════════════════════════════ */

.sticky-cart {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.sticky-cart::before { display: none !important; }

.sticky-cart .inner-wrapper-sticky {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e8e6e1;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  overflow: hidden;
  min-height: 480px;
  max-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease;
  will-change: transform;
}

#vue-cart h5 {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  color: #e12114 !important;
  background: #ffffff !important;
  margin: 0 !important;
  padding: 14px 22px 0 !important;
  border-bottom: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  position: relative !important;
  border-radius: 20px 20px 0 0 !important;
  box-shadow: none !important;
}

/* ─────────────────────────────────────────────
   CHECKOUT CART — Full Redesign
   ───────────────────────────────────────────── */

/* ── Basket Header ── */
#vue-cart h5 {
  font-family: var(--font-display) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  color: #111827 !important;
  background: #fff !important;
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  position: static !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#vue-cart .basket-header-wrap {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background: #fff !important;
  border-radius: 0 !important;
  padding: 18px 22px 12px !important;
  border-bottom: none !important;
}

#vue-cart .basket-header-wrap h5 {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#vue-cart .basket-header-wrap .cart-subtitle {
  display: none !important;
}

#vue-cart .basket-header-right {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  flex-shrink: 0 !important;
  margin-left: 0 !important;
}

#vue-cart .basket-header-right .basket-icon {
  width: 34px !important;
  height: 34px !important;
  margin: 0 !important;
  opacity: .75;
}

#vue-cart .basket-header-right .basket-icon [fill="#1c274c"] { fill: #374151 !important; }
#vue-cart .basket-header-right .basket-icon [fill="#8e93a6"] { fill: #9ca3af !important; }

.basket-header-total {
  font-family: var(--font-display) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #fff !important;
  background: linear-gradient(135deg, #e12114, #b91c1c) !important;
  padding: 5px 12px !important;
  border-radius: 50px !important;
  white-space: nowrap !important;
  box-shadow: 0 3px 10px rgba(225,33,20,.3) !important;
}

#vue-cart h5::before {
  content: '' !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #e12114 !important;
  box-shadow: 0 0 0 3px rgba(225,33,20,.2) !important;
  display: block !important;
  flex-shrink: 0 !important;
  animation: cart-dot-blink 2.4s ease-in-out infinite !important;
}

@keyframes cart-dot-blink {
  0%, 100% { box-shadow: 0 0 0 2px rgba(225,33,20,.15); }
  50%       { box-shadow: 0 0 0 5px rgba(225,33,20,.0); }
}

#vue-cart .cart-subtitle {
  display: none !important;
}

/* ── Summary row (SUMMARY + Clear) ── */
#vue-cart .d-flex.justify-content-between.align-items-center.mb-1 {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 8px 22px 10px !important;
  margin-bottom: 0 !important;
  background: #fff !important;
  border-bottom: 1.5px solid #f3f4f6 !important;
}

#vue-cart .d-flex.justify-content-between.align-items-center.mb-1 h6 {
  font-family: var(--font-display) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  color: #9ca3af !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}

#vue-cart .d-flex.justify-content-between.align-items-center.mb-1 a p {
  font-family: var(--font-display) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #e12114 !important;
  margin: 0 !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
  transition: opacity .15s ease !important;
}

#vue-cart .d-flex.justify-content-between.align-items-center.mb-1 a:hover p {
  opacity: .65 !important;
}

/* ── Vue-cart flex container ── */
#vue-cart {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

/* ── Section cart (the real scrollable container) ── */
.section-cart {
  padding: 0 !important;
  margin: 0 !important;
  flex: 1 1 auto !important;
  min-height: 0 !important;
}

.sticky-cart .section-cart {
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

.section-cart .cart-items-scroll {
  flex: 0 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: #f0ede8 transparent;
  scroll-behavior: smooth;
  padding: 0 20px;
}

.section-cart .cart-items-scroll::-webkit-scrollbar {
  width: 4px;
}
.section-cart .cart-items-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.section-cart .cart-items-scroll::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 4px;
}

.section-cart .cart-bottom-fixed {
  flex-shrink: 0;
  background: #fff;
  padding: 10px 20px 16px;
  position: relative;
  border-top: 1.5px solid #f3f4f6;
}

/* ── Scroll hint ── */
.cart-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
}
.cart-scroll-hint .cart-scroll-arrow {
  font-size: 14px;
  color: #d1d5db;
  animation: cart-hint-bounce 1.6s ease-in-out infinite;
}
@keyframes cart-hint-bounce {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50%       { transform: translateY(3px); opacity: .9; }
}

/* ── Item rows ── */
.section-cart .items {
  border-bottom: 1px solid #f3f4f6 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.section-cart .line-items.row {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  padding: 14px 0 !important;
  border-bottom: none !important;
  margin: 0 !important;
  gap: 0 !important;
}
.section-cart .items + .cart-summary { border-top: none !important; }
.section-cart .items:last-child { border-bottom: none !important; }

/* Hide the image column */
.section-cart .line-items > .col-3:first-child {
  display: none !important;
}

/* Item name + price + qty column */
.section-cart .line-items > .col-6 {
  flex: 1 1 0% !important;
  max-width: none !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  gap: 0 !important;
}

/* Right column: remove btn + price */
.section-cart .line-items > .col-3.quantity,
.section-cart .line-items > .col-3.quantity.d-flex.justify-content-start.flex-column {
  flex: 0 0 auto !important;
  max-width: none !important;
  width: auto !important;
  padding: 0 0 0 10px !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  gap: 6px !important;
}

/* Item name */
.section-cart .line-items .col-6 p:first-child {
  font-family: var(--font-display) !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  line-height: 1.35 !important;
  margin: 0 0 2px !important;
  word-break: break-word !important;
}
.section-cart .line-items .col-6 p.mb-1 {
  margin-bottom: 2px !important;
}

/* Unit price (font11) - show it as small text */
.section-cart .line-items .font11,
.section-cart .line-items .col-6 p.font11,
.section-cart .line-items .col-6 p.m-0.font11 {
  font-family: var(--font-display) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  color: #9ca3af !important;
  margin: 0 0 4px !important;
  display: block !important;
}

/* ── Quantity pill ── */
.section-cart .col-6 .quantity,
.section-cart .col-6 .quantity.d-flex.justify-content-between {
  width: fit-content !important;
  display: inline-flex !important;
  align-items: center !important;
  align-self: flex-start !important;
  justify-content: center !important;
  gap: 0 !important;
  margin-top: 6px !important;
  background: #f3f4f6 !important;
  border: 1.5px solid #e9eaec !important;
  border-radius: 50px !important;
  padding: 2px !important;
  box-shadow: none !important;
  transition: border-color .18s ease, box-shadow .18s ease !important;
  flex-shrink: 0 !important;
}

.section-cart .col-6 .quantity:focus-within {
  border-color: rgba(225,33,20,.3) !important;
  box-shadow: 0 0 0 3px rgba(225,33,20,.06) !important;
}

.section-cart .col-6 .quantity > div {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Qty +/- buttons */
.section-cart .qty-btn {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  background: #fff !important;
  border: none !important;
  color: #374151 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 12px !important;
  transition: all .18s ease !important;
  padding: 0 !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.08) !important;
  text-decoration: none !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

.section-cart .qty-btn:hover {
  background: #e12114 !important;
  color: #fff !important;
  box-shadow: 0 3px 8px rgba(225,33,20,.35) !important;
  transform: scale(1.1) !important;
}

.section-cart .col-6 .quantity .qty {
  font-family: var(--font-display) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  min-width: 24px !important;
  text-align: center !important;
  line-height: 1 !important;
  user-select: none !important;
}

/* ── Remove button ── */
.section-cart .item-remove {
  width: 22px !important;
  height: 22px !important;
  background: #f3f4f6 !important;
  border: none !important;
  color: #9ca3af !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 12px !important;
  transition: all .18s ease !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 1 !important;
  flex-shrink: 0 !important;
}

.section-cart .item-remove:hover {
  background: #fee2e2 !important;
  color: #e12114 !important;
  transform: scale(1.1) !important;
}

/* ── Item total price ── */
.section-cart .line-items > .col-3.quantity > p,
.section-cart .line-items > .col-3.quantity p.mb-0 {
  font-family: var(--font-display) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  margin: 0 !important;
  white-space: nowrap !important;
  line-height: 1.3 !important;
}

/* ── Add-on items ── */
.section-cart .addon-items {
  padding: 4px 0 0 0 !important;
  margin: 0 !important;
}
.section-cart .addon-items .col-3:first-child { display: none !important; }
.section-cart .addon-items .col-9 {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}
.section-cart .addon-items p {
  font-family: var(--font-display) !important;
  font-size: 11px !important;
  color: #9ca3af !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}
.section-cart .addon-items p.bold {
  font-weight: 600 !important;
  color: #6b7280 !important;
  font-size: 11px !important;
}
.section-cart .addon-items .d-flex.justify-content-between.mb-1 {
  padding: 1px 0 !important;
  margin: 0 !important;
}

/* Special instructions */
.section-cart .line-items .col-6 p.mb-0[v-if] {
  font-size: 11px !important;
  color: #9ca3af !important;
  margin-top: 3px !important;
  font-style: italic !important;
}
.section-cart .line-items .col-6 .el-tag {
  font-size: 10px !important;
  margin: 4px 0 0 !important;
}

/* ── Cart Summary ── */
.section-cart .cart-summary {
  border-top: none !important;
  padding: 0 0 8px !important;
  margin: 0 !important;
  background: #fff !important;
}

.section-cart .cart-summary .d-flex {
  padding: 4px 0 !important;
}

.section-cart .cart-summary .d-flex > div {
  font-family: var(--font-display) !important;
  font-size: 13px !important;
  color: #6b7280 !important;
}

.section-cart .cart-summary .d-flex h6 {
  font-family: var(--font-display) !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  color: #111827 !important;
  margin: 0 !important;
  letter-spacing: -.025em !important;
}

/* ── Place Order button ── */
.section-cart .btn-green,
#vue-cart .btn-green {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  margin: 10px 0 0 !important;
  padding: 18px 22px !important;
  background: linear-gradient(135deg, #e12114 0%, #c01b10 100%) !important;
  border: none !important;
  border-radius: 16px !important;
  font-family: var(--font-display) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(225,33,20,.38), 0 2px 6px rgba(225,33,20,.2) !important;
  transition: all .25s ease !important;
  text-decoration: none !important;
  position: relative !important;
  overflow: hidden !important;
  letter-spacing: .005em !important;
}

.section-cart .btn-green::before,
#vue-cart .btn-green::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 50% !important;
  background: linear-gradient(180deg, rgba(255,255,255,.14) 0%, transparent 100%) !important;
  border-radius: 16px 16px 0 0 !important;
  pointer-events: none !important;
}

.section-cart .btn-green::after,
#vue-cart .btn-green::after { display: none !important; }

.section-cart .btn-green:hover,
#vue-cart .btn-green:hover {
  background: linear-gradient(135deg, #c91e12 0%, #a8170d 100%) !important;
  box-shadow: 0 12px 32px rgba(225,33,20,.50), 0 4px 10px rgba(225,33,20,.25) !important;
  transform: translateY(-2px) !important;
  color: #fff !important;
}

.section-cart .btn-green[disabled="disabled"],
.section-cart .btn-green[disabled=""]:not([disabled="false"]),
.section-cart .btn-green.disabled,
#vue-cart .btn-green[disabled="disabled"],
#vue-cart .btn-green[disabled=""]:not([disabled="false"]),
#vue-cart .btn-green.disabled {
  background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%) !important;
  color: #fff !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.section-cart .btn-green[disabled="false"],
#vue-cart .btn-green[disabled="false"] {
  background: linear-gradient(135deg, #e12114 0%, #c01b10 100%) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(225,33,20,.38), 0 2px 6px rgba(225,33,20,.2) !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

/* ── Sticky sidebar layout for always-visible button ── */
.ck-sidebar .sticky-cart {
  position: sticky;
  top: 20px;
  height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
}

.ck-cart-card {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ck-cart-merchant { flex-shrink: 0 !important; }
.ck-cart-divider  { flex-shrink: 0 !important; }

.ck-cart-items-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ck-cart-items-wrap > .sticky-cart {
  flex: 1 !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  background: transparent !important;
}

.ck-cart-items-wrap > .sticky-cart > #vue-cart {
  flex: 1 !important;
  min-height: 0 !important;
}


/* ═══════════════════════════════════════════════════════════
   CART PREVIEW DRAWER — Premium Redesign (cp-* namespace)
   ═══════════════════════════════════════════════════════════ */

.cp-merchant-block {
  padding: 16px 22px 14px;
  background: #fafafa;
  border-bottom: 1px solid #f0ede8;
  flex-shrink: 0;
}

.cp-your-cart-lbl {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  color: #b0b8c4;
  margin: 0 0 5px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.cp-merchant-name-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #111827;
  margin-bottom: 4px;
}

.cp-merchant-name-link:hover .cp-merchant-name-text {
  color: #e12114;
}

.cp-merchant-name-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.3;
  transition: color .15s ease;
}

.cp-chevron {
  color: #b0b8c4;
  flex-shrink: 0;
  transition: color .15s ease;
}

.cp-merchant-name-link:hover .cp-chevron {
  color: #e12114;
}

.cp-merchant-addr {
  font-size: 11.5px;
  color: #9ca3af;
  margin: 0;
  line-height: 1.55;
}

.cp-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px 11px;
  border-bottom: 1px solid #f3f3f3;
  flex-shrink: 0;
}

.cp-summary-lbl {
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.cp-clear-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 500;
  color: #b0b8c4;
  text-decoration: none;
  transition: color .15s ease;
  cursor: pointer;
}

.cp-clear-link:hover {
  color: #e12114;
}

.cp-items-wrap {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 22px;
  scrollbar-width: none;
  min-height: 0;
}

.cp-items-wrap::-webkit-scrollbar {
  display: none;
}

.cp-item-card {
  padding: 15px 0;
  border-bottom: 1px solid #f3f2ef;
}

.cp-item-card:last-child {
  border-bottom: none;
}

.cp-item-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cp-item-info {
  flex: 1 1 auto;
  min-width: 0;
}

.cp-iname {
  font-size: 13.5px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 3px;
  line-height: 1.4;
}

.cp-isize {
  font-weight: 400;
  color: #9ca3af;
  font-size: 12px;
}

.cp-iprice {
  font-size: 11.5px;
  color: #9ca3af;
  margin: 0 0 7px;
}

.cp-special,
.cp-attrs {
  font-size: 11px;
  color: #b0b8c9;
  margin: 2px 0 5px;
  font-style: italic;
  line-height: 1.5;
}

.cp-free-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 2px 8px;
  border-radius: 99px;
  margin: 2px 0 7px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.cp-qty-wrap {
  display: inline-flex;
  align-items: center;
  background: #f5f4f2;
  border: 1px solid #eae8e4;
  border-radius: 50px;
  padding: 3px;
  margin-top: 9px;
  transition: border-color .2s ease;
}

.cp-qty-wrap:hover {
  border-color: #d4d0ca;
}

.cp-qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  color: #374151;
  font-size: 12px;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0,0,0,.07);
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
  flex-shrink: 0;
  cursor: pointer;
  line-height: 1;
}

.cp-qty-btn:hover {
  background: #e12114;
  color: #fff;
  box-shadow: 0 2px 6px rgba(225,33,20,.3);
}

.cp-qty-val {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  min-width: 28px;
  text-align: center;
  line-height: 1;
  user-select: none;
}

.cp-item-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
  padding-top: 1px;
}

.cp-remove-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #9ca3af;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.cp-remove-btn:hover {
  background: #fee2e2;
  color: #e12114;
}

.cp-itotal {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  white-space: nowrap;
  letter-spacing: -.02em;
}

.cp-addons-wrap {
  margin-top: 8px;
  padding: 8px 10px;
  background: #fafaf9;
  border-radius: 8px;
  border: 1px solid #f0ede8;
}

.cp-addon-group {
  margin-bottom: 6px;
}

.cp-addon-group:last-child {
  margin-bottom: 0;
}

.cp-addon-cat {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cp-addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 0;
}

.cp-addon-name {
  font-size: 11.5px;
  color: #6b7280;
  line-height: 1.5;
}

.cp-addon-price {
  font-size: 11.5px;
  color: #6b7280;
  font-weight: 500;
  white-space: nowrap;
  margin-left: 8px;
}

.cp-footer {
  padding: 14px 22px 22px;
  background: #fff;
  border-top: 1px solid #f3f2ef;
  flex-shrink: 0;
}

.cp-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 22px;
  background: #e12114;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(225,33,20,.30);
  transition: background .18s ease, box-shadow .18s ease, transform .12s ease;
  cursor: pointer;
  letter-spacing: .01em;
}

.cp-checkout-btn:hover {
  background: #c51d12;
  box-shadow: 0 6px 24px rgba(225,33,20,.40);
  color: #fff !important;
  transform: translateY(-1px);
}

.cp-checkout-btn:active {
  transform: translateY(0) scale(0.99);
}

.cp-checkout-total {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -.02em;
}

.cp-checkout-btn[disabled="disabled"],
.cp-checkout-btn[disabled="true"] {
  background: #d1d5db !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  transform: none !important;
}

.cp-error-banner {
  margin: 0 22px 16px;
  padding: 11px 14px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 10px;
  font-size: 12.5px;
  color: #92400e;
  line-height: 1.6;
}

/* ══ Floating cart pill — premium redesign ══ */
.floating-cart {
  padding: 0 12px 14px;
}

.fc-pill {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 64px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #c0392b 0%, #e12114 60%, #e8341f 100%);
  border: none;
  border-radius: 20px;
  box-shadow: 0 -2px 0 rgba(0,0,0,.08), 0 8px 28px rgba(193,33,20,.45), 0 2px 8px rgba(0,0,0,.18);
  cursor: pointer;
  gap: 12px;
  text-align: left;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.fc-pill:active {
  transform: scale(0.98);
  box-shadow: 0 4px 16px rgba(193,33,20,.4);
}

.fc-left {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.18);
  border-radius: 14px;
  backdrop-filter: blur(4px);
}

.fc-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: #fff;
  color: #e12114;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.fc-icon {
  width: 22px;
  height: 22px;
  color: #fff;
  flex-shrink: 0;
}

.fc-center {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fc-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1;
}

.fc-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.fc-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.fc-total {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.fc-arrow {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,.75);
  flex-shrink: 0;
}

/* ══ Menu layout — balanced wider columns ══ */
@media (min-width: 992px) {
  .section-menu .menu-left {
    flex: 0 0 18% !important;
    max-width: 18% !important;
  }
  .section-menu .menu-center {
    flex: 0 0 55% !important;
    max-width: 55% !important;
  }
  .section-menu .menu-right {
    flex: 0 0 27% !important;
    max-width: 27% !important;
  }
}


/* ══════════════════════════════════════════════════
   MENU SEARCH BAR — Premium Pill
   ══════════════════════════════════════════════════ */

.menu-center .mb-4 {
  position: relative;
  margin-bottom: 28px !important;
}

.menu-center .el-input.el-input--large .el-input__wrapper {
  border-radius: 50px !important;
  padding: 0 20px 0 12px !important;
  background: #ffffff !important;
  border: 1.5px solid #eaecf0 !important;
  box-shadow: none !important;
  transition: border-color .25s ease !important;
  height: 56px !important;
}
.menu-center .el-input.el-input--large .el-input__wrapper.is-focus,
.menu-center .el-input.el-input--large .el-input__wrapper:focus-within {
  border-color: #e12114 !important;
  box-shadow: none !important;
}

.menu-center .el-input.el-input--large .el-input__inner {
  font-family: var(--font-display) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #111827 !important;
  caret-color: var(--brand) !important;
  height: 56px !important;
  line-height: 56px !important;
}
.menu-center .el-input.el-input--large .el-input__inner::placeholder {
  color: #b8bfc9 !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

.menu-center .el-input.el-input--large .el-input__prefix {
  margin-right: 8px !important;
  display: flex !important;
  align-items: center !important;
}
.menu-center .el-input.el-input--large .el-input__prefix-inner {
  display: flex !important;
  align-items: center !important;
}
.menu-center .el-input.el-input--large .el-input__prefix .zmdi-search {
  width: 36px !important;
  height: 36px !important;
  background: #e12114 !important;
  color: #fff !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 15px !important;
  box-shadow: none !important;
  flex-shrink: 0;
}

.menu-center .el-input.el-input--large .el-input__suffix .el-link {
  font-family: var(--font-display) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--brand) !important;
}


/* ══════════════════════════════════════════════════
   ENSURE STICKY WORKS
   ══════════════════════════════════════════════════ */

.section-menu,
.section-menu .container,
.section-menu .row,
.menu-left,
.menu-right {
  overflow: visible !important;
}


/* ══════════════════════════════════════════════════
   MOBILE RESPONSIVE REFINEMENTS
   ══════════════════════════════════════════════════ */

@media (max-width: 991px) {
  .section-menu { padding-bottom: 48px; }
  .menu-center section { border-radius: 14px; margin-bottom: 14px; scroll-margin-top: 86px; }
  .menu-center section > h5 { padding: 16px 20px 14px 20px !important; font-size: 16px !important; border-left-width: 3px !important; }
  .menu-center section > h5::after { display: none !important; }
  .list-item-rows .col.fixed-height { padding: 14px 6px 14px 16px !important; }
  /* Align no-image "+" button horizontally with the image "+" button on mobile.
     Empirical tweak: the visual position of the image button ends up ≈3px from
     the row edge once the thumb's border-radius / transform is factored in, so
     the no-image button needs only a small right-padding nudge. */
  .list-item-rows .item-btn-col { padding-right: 6px !important; }
  .list-item-rows .item-right-col { padding: 12px 12px 12px 6px !important; width: 96px !important; }
  .list-item-rows .item-thumb-wrap { width: 72px !important; height: 72px !important; }
  .list-item-rows .item-thumb { width: 72px !important; height: 72px !important; border-radius: 10px !important; }
  .list-item-rows h6.m-0 { font-size: 14px !important; }
  .section-cart { padding: 0 16px !important; }
  .section-cart .cart-bottom-fixed { margin: 0 -16px !important; padding-left: 16px !important; padding-right: 16px !important; }
  #vue-cart h5 { padding: 18px 18px 18px !important; }
}
@media (max-width: 767px) {
  .menu-center section { scroll-margin-top: 76px; }
}


/* ════════════════════════════════════════════════
   CHANGE ADDRESS MODAL — Premium Redesign
   ════════════════════════════════════════════════ */

.ca-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2050;
  padding: 16px;
}

.ca-modal-box {
  background: #fff;
  border-radius: 24px;
  width: 440px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  overflow: visible;
  box-shadow: 0 24px 80px rgba(0,0,0,.20);
  animation: schedModal-enter .32s cubic-bezier(.16,1,.3,1) both;
  position: relative;
}

.ca-fade-enter-active { transition: opacity .25s ease; }
.ca-fade-leave-active { transition: opacity .18s ease; }
.ca-fade-enter-from,
.ca-fade-leave-to { opacity: 0; }
.ca-fade-enter-to,
.ca-fade-leave-from { opacity: 1; }

.ca-inner {
  position: relative;
}

.ca-close-btn {
  position: absolute !important;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.05);
  color: #6b7280;
  border: none;
  border-radius: 50%;
  text-decoration: none !important;
  transition: background .15s, color .15s;
  z-index: 2;
  cursor: pointer;
  outline: none;
  padding: 0;
}
.ca-close-btn i { font-size: 15px; color: inherit; line-height: 1; }
.ca-close-btn:hover { background: rgba(0,0,0,.1); color: #111827; text-decoration: none !important; }

.ca-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 24px 0;
}

.ca-icon-wrap {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff1f0 0%, #ffe4e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(225,33,20,.10);
}
.ca-icon-wrap i { font-size: 22px; color: #e12114; line-height: 1; }

.ca-header-text {
  flex: 1;
  min-width: 0;
}

.ca-title {
  font-family: var(--font-display) !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  letter-spacing: -.02em !important;
  margin: 0 0 2px !important;
  line-height: 1.25 !important;
}

.ca-subtitle {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 400;
  color: #9ca3af;
  margin: 0;
  line-height: 1.4;
}

.ca-alert {
  margin: 16px 24px 0;
  background: #fef9f0;
  border: 1px solid #f3d48c;
  border-radius: 12px;
  color: #7c5515;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 16px;
}

.ca-search {
  padding: 20px 24px 0;
  position: relative;
}

.ca-autocomplete-popper {
  z-index: 2060 !important;
}

.ca-search .el-autocomplete {
  position: relative;
}

.ca-search .el-popper {
  z-index: 2060 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  left: 0 !important;
}

.ca-search .el-autocomplete-suggestion {
  max-height: 240px;
  overflow-y: auto;
}

.ca-search .el-autocomplete-suggestion li {
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.5;
  color: #374151;
}

.ca-search .el-autocomplete-suggestion li:hover {
  background: #f9fafb;
}

.ca-autocomplete .el-input__wrapper {
  background: #f9fafb !important;
  border: 1.5px solid #ebebeb !important;
  border-radius: 14px !important;
  box-shadow: none !important;
  padding: 4px 14px !important;
  min-height: 50px !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
}
.ca-autocomplete .el-input__wrapper:hover {
  border-color: #ddd !important;
}
.ca-autocomplete .el-input__wrapper.is-focus,
.ca-autocomplete .el-input__wrapper:focus-within {
  border-color: rgba(225,33,20,.4) !important;
  box-shadow: 0 0 0 3px rgba(225,33,20,.08) !important;
  background: #fff !important;
}
.ca-autocomplete .el-input__inner {
  font-family: var(--font-display) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #111827 !important;
}
.ca-autocomplete .el-input__inner::placeholder {
  color: #b0b0b0 !important;
  font-weight: 400 !important;
}

.ca-search-icon {
  font-size: 17px;
  color: #c0c0c0;
}

.ca-locate-btn {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  transition: background .15s;
}
.ca-locate-btn i {
  font-size: 19px;
  color: #e12114;
  line-height: 1;
}
.ca-locate-btn:hover {
  background: rgba(225,33,20,.06) !important;
}

.ca-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 18px 24px 0;
}

.ca-saved-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #b0b0b0;
  padding: 16px 24px 8px;
}

.ca-saved-list {
  padding: 0 16px 20px;
}

.ca-address-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background .15s;
  cursor: pointer;
}
.ca-address-item:hover {
  background: #f5f5f5;
}

.ca-addr-pin {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff1f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ca-addr-pin i { font-size: 16px; color: #e12114; line-height: 1; }

.ca-addr-text {
  flex: 1;
  min-width: 0;
  cursor: pointer;
}

.ca-addr-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ca-addr-actions {
  flex-shrink: 0;
  display: flex;
  gap: 4px;
}

.ca-addr-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: all .15s;
}
.ca-addr-btn i { font-size: 13px; line-height: 1; }

.ca-addr-edit {
  background: #f3f4f6;
  color: #6b7280;
}
.ca-addr-edit:hover {
  background: #e5e7eb;
  color: #111827;
  text-decoration: none !important;
}

.ca-addr-delete {
  background: #fef2f2;
  color: #ef4444;
}
.ca-addr-delete:hover {
  background: #fee2e2;
  color: #dc2626;
  text-decoration: none !important;
}

.ca-bottom-pad {
  height: 24px;
}

/* ════════════════════════════════════════════════
   SELECT ADDRESS / EXACT LOCATION MODAL — Premium
   ════════════════════════════════════════════════ */

.sa-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2050;
  padding: 16px;
}

.sa-fade-enter-active { transition: opacity .25s ease; }
.sa-fade-leave-active { transition: opacity .18s ease; }
.sa-fade-enter-from,
.sa-fade-leave-to { opacity: 0; }

.sa-modal-box {
  background: #fff;
  border-radius: 24px;
  width: 560px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
  animation: schedModal-enter .32s cubic-bezier(.16,1,.3,1) both;
  display: flex;
  flex-direction: column;
}

.sa-modal-box.sa-mobile {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  border-radius: 0;
}

.sa-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}

.sa-close-btn {
  position: absolute !important;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  color: #6b7280;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  padding: 0;
  z-index: 5;
  transition: background .15s, color .15s;
}
.sa-close-btn i { font-size: 16px; color: inherit; line-height: 1; }
.sa-close-btn:hover { background: rgba(0,0,0,.08); color: #111827; }

.sa-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 24px 0;
  flex-shrink: 0;
}

.sa-icon-wrap {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff1f0 0%, #ffe4e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(225,33,20,.10);
}
.sa-icon-wrap i { font-size: 22px; color: #e12114; line-height: 1; }

.sa-title {
  font-family: var(--font-display) !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  letter-spacing: -.02em !important;
  margin: 0 0 2px !important;
  line-height: 1.25 !important;
}

.sa-subtitle {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 400;
  color: #9ca3af;
  margin: 0;
  line-height: 1.4;
}

.sa-search {
  padding: 18px 24px 0;
  flex-shrink: 0;
}

.sa-search .search-geocomplete {
  width: 100% !important;
}

.sa-search .el-autocomplete {
  width: 100% !important;
}

.sa-search .el-input__wrapper {
  background: #f9fafb !important;
  border: 1.5px solid #ebebeb !important;
  border-radius: 14px !important;
  box-shadow: none !important;
  padding: 4px 14px !important;
  min-height: 48px !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
}
.sa-search .el-input__wrapper:hover {
  border-color: #ddd !important;
}
.sa-search .el-input__wrapper.is-focus,
.sa-search .el-input__wrapper:focus-within {
  border-color: rgba(225,33,20,.4) !important;
  box-shadow: 0 0 0 3px rgba(225,33,20,.08) !important;
  background: #fff !important;
}

.sa-search .el-popper,
.sa-search .el-autocomplete-suggestion__wrap {
  z-index: 2060 !important;
}

body > .el-popper.el-autocomplete__popper {
  z-index: 2060 !important;
}

.sa-search .el-autocomplete .el-input__inner {
  font-family: var(--font-display) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #111827 !important;
}
.sa-search .el-autocomplete .el-input__inner::placeholder {
  color: #b0b0b0 !important;
  font-weight: 400 !important;
}

.sa-map-zone {
  padding: 16px 24px 0;
  flex-shrink: 0;
  position: relative;
}

.sa-map-zone .map-lg-large {
  height: 300px !important;
  width: 100% !important;
  border: none !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  display: block !important;
}

.sa-map-zone .map-buttons-wrap {
  right: 14px !important;
  bottom: 14px !important;
  top: auto !important;
  z-index: 3;
}

.sa-map-zone .map-buttons-wrap .btn-group-vertical {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12), 0 1px 4px rgba(0,0,0,.06);
  overflow: hidden;
  padding: 0;
}

.sa-map-zone .map-buttons-wrap .mb-2 {
  margin-bottom: 0 !important;
}

.sa-map-zone .map-buttons-wrap .btn {
  width: 42px !important;
  height: 42px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #374151 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
  transition: background .15s, color .15s !important;
  position: relative;
}
.sa-map-zone .map-buttons-wrap .btn:hover {
  background: #f3f4f6 !important;
  color: #e12114 !important;
}
.sa-map-zone .map-buttons-wrap .btn:active {
  background: #e5e7eb !important;
}

.sa-map-zone .map-buttons-wrap .btn i {
  font-size: 18px !important;
  line-height: 1 !important;
  color: inherit !important;
}

.sa-map-zone .map-buttons-wrap .btn.rounded-circle {
  border-radius: 0 !important;
  border-bottom: 1px solid #f0f0f0 !important;
}

.sa-map-zone .map-buttons-wrap .divider {
  height: 1px !important;
  padding: 0 !important;
  margin: 0 8px !important;
  background: #e5e7eb !important;
}

.sa-footer {
  padding: 18px 24px 24px;
  flex-shrink: 0;
}

.sa-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #e12114 0%, #c91a0f 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  outline: none;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(225,33,20,.25);
}
.sa-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(225,33,20,.30);
}
.sa-submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  .sa-modal-box { width: 100%; border-radius: 20px; }
  .sa-map-zone .map-lg-large { height: 240px !important; }
  .sa-header { padding: 20px 20px 0; }
  .sa-search { padding: 14px 20px 0; }
  .sa-map-zone { padding: 12px 20px 0; }
  .sa-footer { padding: 14px 20px 20px; }
}

/* ════════════════════════════════════════════════
   DELIVERY DETAILS MODAL — Premium Redesign
   ════════════════════════════════════════════════ */

.modal-delivery-details .modal-dialog {
  max-width: 500px !important;
  margin: auto !important;
  display: flex !important;
  align-items: center !important;
  min-height: 100vh !important;
  padding: 20px !important;
}

.modal-delivery-details .modal-content {
  border: 0 !important;
  outline: 0 !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  box-shadow: 0 24px 80px rgba(0,0,0,.18) !important;
  animation: schedModal-enter .32s cubic-bezier(.16,1,.3,1) both;
  position: relative;
}

.dd-close-btn {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(0,0,0,.05) !important;
  color: #6b7280 !important;
  border: none !important;
  border-radius: 50% !important;
  box-shadow: none !important;
  transition: background .15s, color .15s !important;
  z-index: 2;
  text-decoration: none !important;
}
.dd-close-btn i {
  font-size: 16px !important;
  color: inherit !important;
  line-height: 1 !important;
}
.dd-close-btn:hover {
  background: rgba(0,0,0,.1) !important;
  color: #111827 !important;
  text-decoration: none !important;
}

.dd-icon-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 32px 0;
}

.dd-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  background: linear-gradient(135deg, #fff1f0 0%, #ffe4e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(225,33,20,.12);
}
.dd-icon-wrap i {
  font-size: 26px;
  color: #e12114;
  line-height: 1;
}

.dd-title {
  font-family: var(--font-display) !important;
  font-size: 23px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  letter-spacing: -.03em !important;
  margin: 0 0 5px !important;
  line-height: 1.2 !important;
}

.dd-subtitle {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: #9ca3af;
  margin: 0;
  line-height: 1.4;
}

.dd-body {
  padding: 22px 24px 8px;
}

.dd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dd-card {
  display: flex !important;
  flex-direction: column;
  padding: 16px;
  background: #f9fafb;
  border-radius: 16px;
  border: 1.5px solid #f0f0f0;
  text-decoration: none !important;
  transition: all .2s ease;
  cursor: pointer;
  min-height: 140px;
}
.dd-card:hover {
  background: #fff;
  border-color: rgba(225,33,20,.25);
  box-shadow: 0 4px 20px rgba(225,33,20,.08);
  text-decoration: none !important;
}

.dd-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.dd-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #fff1f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dd-card-icon i {
  font-size: 19px;
  color: #e12114;
  line-height: 1;
}

.dd-card-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0,0,0,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c0c0c0;
  font-size: 14px;
  transition: all .18s ease;
}
.dd-card:hover .dd-card-arrow {
  background: rgba(225,33,20,.08);
  color: #e12114;
}

.dd-card-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b0b0b0;
  line-height: 1.3;
  margin-bottom: 4px;
}

.dd-card-value {
  display: block;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
  word-break: break-word;
}

.dd-card-detail {
  display: block;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 400;
  color: #9ca3af;
  line-height: 1.3;
  margin-top: 2px;
  word-break: break-word;
}

.dd-footer {
  padding: 16px 24px 26px;
}

.dd-done-btn {
  display: block;
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 14px;
  background: var(--brand-gradient);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: box-shadow .2s, transform .15s;
  box-shadow: var(--shadow-brand);
}
.dd-done-btn:hover {
  box-shadow: var(--shadow-brand-lg);
  transform: translateY(-1px);
}
.dd-done-btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-brand);
}

.modal-delivery-details .modal-header,
.modal-delivery-details .modal-footer {
  display: none !important;
}

@media (max-width: 480px) {
  .modal-delivery-details .modal-dialog { max-width: 100% !important; padding: 12px !important; }
  .dd-grid { grid-template-columns: 1fr; }
  .dd-card { min-height: auto; }
}

/* ════════════════════════════════════════════════
   SCHEDULE TIME PICKER MODAL — Premium Redesign
   ════════════════════════════════════════════════ */

@keyframes schedModal-enter {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1);   }
}

/* ── Reset & dialog ── */
.modal { z-index: 1060 !important; }
.modal-backdrop { z-index: 1055 !important; }
.modal-trn-options { padding: 0 !important; }

.modal-trn-options .modal-dialog {
  max-width: 480px !important;
  margin: auto !important;
  display: flex !important;
  align-items: center !important;
  min-height: 100vh !important;
  padding: 20px !important;
}

/* ── Modal shell ── */
.modal-trn-options.el-dialog { border-radius: 32px !important; overflow: visible !important; border: none !important; }
.modal-trn-options .el-dialog__header { display: none !important; }
.modal-trn-options .el-dialog__body { padding: 0 !important; border-radius: 32px !important; overflow: visible !important; border: none !important; }
.el-overlay-dialog:has(.modal-trn-options) { overflow: visible !important; }
.modal-trn-options .modal-content,
.el-dialog.modal-trn-options .modal-content,
.el-overlay-dialog .modal-trn-options .modal-content,
body .modal-trn-options .modal-content,
body .el-overlay .modal-trn-options .modal-content {
  border: 0 !important;
  outline: 0 !important;
  border-radius: 32px !important;
  overflow: visible !important;
  background: #ffffff !important;
  box-shadow: none !important;
  animation: schedModal-enter .32s cubic-bezier(.16,1,.3,1) both;
}

/* ══════════════════════
   HEADER SECTION
══════════════════════ */
.sched-modal-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 28px 0;
  position: relative;
}

.sched-modal-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #fff1f0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sched-modal-icon-wrap i {
  font-size: 24px;
  color: #e12114;
  line-height: 1;
}

.sched-modal-header-text {
  flex: 1;
  padding-top: 2px;
}

.sched-modal-title {
  font-family: var(--font-display) !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  letter-spacing: -.04em !important;
  margin: 0 0 4px !important;
  line-height: 1.15 !important;
}

.sched-modal-subtitle {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 400;
  color: #9ca3af;
  margin: 0;
  line-height: 1.4;
}

.sched-modal-close {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #f3f4f6 !important;
  color: #6b7280 !important;
  border: none !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  transition: background .15s, color .15s !important;
  flex-shrink: 0;
}
.sched-modal-close i {
  font-size: 14px !important;
  color: inherit !important;
  line-height: 1 !important;
}
.sched-modal-close:hover {
  background: #e5e7eb !important;
  color: #111827 !important;
}

/* ══════════════════════
   BODY
══════════════════════ */
.modal-trn-options .modal-body {
  padding: 20px 28px 24px !important;
  border-bottom: none !important;
  overflow: visible !important;
  min-height: 160px;
}

/* ── Error alert ── */
.modal-trn-options .alert-warning {
  background: #fef9f0 !important;
  border: 1px solid #f3d48c !important;
  border-radius: 10px !important;
  color: #7c5515 !important;
  font-family: var(--font-display) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 12px 16px !important;
  margin-bottom: 16px !important;
}

/* ══════════════════════
   MODE CHIPS (Now / Schedule)
══════════════════════ */
.sched-mode-row {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.sched-mode-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 10px;
  background: #f3f4f6;
  border: 1.5px solid #e5e7eb;
  color: #6b7280;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s ease;
  user-select: none;
}
.sched-mode-chip input[type="radio"] {
  display: none;
}
.sched-mode-chip i {
  font-size: 14px;
}
.sched-mode-chip.active {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}
.sched-mode-chip:hover:not(.active) {
  border-color: #9ca3af;
  color: #374151;
}

/* ══════════════════════
   FIELDS
══════════════════════ */
.sched-fields-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sched-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sched-field-label {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #e12114;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sched-field-label::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #e12114;
  opacity: .7;
}

.sched-select-wrap {
  position: relative;
}

.sched-select-wrap::after {
  display: none;
}

.sched-select-wrap:focus-within::after {
  display: none;
}

.sched-select-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #e12114;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
  opacity: .8;
}

/* ── Custom Vue dropdown ── */
.sched-custom-select {
  position: relative;
  user-select: none;
}

.sched-custom-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 16px 0 46px;
  background: #f9fafb;
  border: none;
  border-radius: 14px;
  box-shadow: none;
  cursor: pointer;
  transition: background .2s;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: #111827;
  position: relative;
}

.sched-custom-trigger > .zmdi:first-child {
  position: absolute;
  left: 16px;
  font-size: 16px;
  color: #e12114;
  opacity: .8;
}

.sched-custom-trigger > span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sched-custom-trigger:hover {
  background: #f3f4f6;
}

.sched-custom-select--open .sched-custom-trigger {
  background: #f3f4f6;
}

.sched-custom-arrow {
  font-size: 14px !important;
  color: #e12114 !important;
  transition: transform .2s ease;
  flex-shrink: 0;
}

.sched-custom-select--open .sched-custom-arrow {
  transform: rotate(180deg);
}

.sched-custom-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1.5px solid #eaecf0;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  z-index: 9999;
  max-height: 220px;
  overflow: hidden;
  padding: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sched-custom-dropdown::-webkit-scrollbar { display: none; }
.sched-custom-dropdown-inner {
  max-height: 208px;
  overflow-y: auto;
  padding: 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sched-custom-dropdown-inner::-webkit-scrollbar {
  display: none;
}

.sched-custom-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: background .12s ease, color .12s ease;
}

.sched-custom-option:hover {
  background: rgba(225,33,20,.06);
  color: #e12114;
}

.sched-custom-option--selected {
  background: rgba(225,33,20,.08) !important;
  color: #e12114 !important;
  font-weight: 700 !important;
}

.sched-opt-check {
  font-size: 13px;
  color: #e12114;
  opacity: 0;
  flex-shrink: 0;
}

.sched-custom-option--selected .sched-opt-check {
  opacity: 1;
}

/* Override generic select styles for our wrapper */
.modal-trn-options .sched-select-wrap select.form-control,
.modal-trn-options .sched-select-wrap select.custom-select {
  width: 100% !important;
  height: 54px !important;
  padding: 0 32px 0 46px !important;
  font-family: var(--font-display) !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  color: #111827 !important;
  background-color: #ffffff !important;
  border: 1.5px solid #eaecf0 !important;
  border-radius: 14px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23e12114' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 10px !important;
  box-shadow: 0 1px 4px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.04) !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
  cursor: pointer;
  margin-bottom: 0 !important;
}
.modal-trn-options .sched-select-wrap select:hover {
  border-color: rgba(225,33,20,.3) !important;
  box-shadow: 0 2px 8px rgba(225,33,20,.08), 0 4px 16px rgba(0,0,0,.05) !important;
  background-color: #ffffff !important;
}
.modal-trn-options .sched-select-wrap select:focus {
  border-color: #e12114 !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(225,33,20,.12), 0 2px 8px rgba(225,33,20,.08) !important;
  outline: none !important;
}

/* ── Dropdown transition ── */
.sched-drop-enter-active {
  animation: schedDropIn .2s ease forwards;
}
.sched-drop-leave-active {
  animation: schedDropOut .15s ease forwards;
}
@keyframes schedDropIn {
  from { opacity: 0; transform: translateY(-6px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes schedDropOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(-6px) scale(.97); }
}

/* ══════════════════════
   FOOTER & SAVE BUTTON
══════════════════════ */
.modal-trn-options .modal-footer {
  padding: 0 28px 28px !important;
  border-top: none !important;
  background: transparent !important;
  display: block !important;
}

.sched-save-btn {
  width: 100% !important;
  height: 52px !important;
  border: none !important;
  border-radius: 14px !important;
  background: #e12114 !important;
  color: #ffffff !important;
  font-family: var(--font-display) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: .02em !important;
  box-shadow: none !important;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease !important;
  cursor: pointer;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.sched-save-btn::before { display: none !important; }
.sched-save-btn:hover {
  background: #c41c10 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(225,33,20,.28) !important;
}
.sched-save-btn:active {
  background: #b01a0e !important;
  transform: translateY(0) !important;
  box-shadow: none !important;
}
.sched-save-btn:disabled {
  background: #e5e7eb !important;
  color: #9ca3af !important;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ── Backdrop ── */
.modal-backdrop {
  background: rgba(17,24,39,.6) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}

/* ── Mobile ── */
@media (max-width: 520px) {
  .modal-trn-options .modal-dialog {
    max-width: 100% !important;
    padding: 12px !important;
  }
  .modal-trn-options .modal-content {
    border-radius: 20px !important;
  }
  .sched-modal-header {
    padding: 22px 22px 0;
  }
  .sched-modal-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 13px;
  }
  .sched-modal-icon-wrap i { font-size: 20px; }
  .sched-modal-title { font-size: 20px !important; }
  .modal-trn-options .modal-body {
    padding: 18px 22px 20px !important;
  }
  .modal-trn-options .modal-footer {
    padding: 0 22px 24px !important;
  }
  .sched-save-btn {
    height: 48px !important;
    border-radius: 12px !important;
  }
}

/* ═══════════════════════════════════════════════════════
   DELIVERY ADDRESS DIALOG  addr-*
   ═══════════════════════════════════════════════════════ */

.addr-dialog {
  --el-dialog-border-radius: 32px;
  border-radius: 32px !important;
  overflow: hidden !important;
  box-shadow:
    0 32px 80px rgba(0,0,0,.22),
    0 10px 28px rgba(0,0,0,.12) !important;
  border: none !important;
  width: 460px !important;
  max-width: 92vw !important;
  margin: 0 auto !important;
}

.el-dialog.addr-dialog,
.el-overlay .addr-dialog {
  border-radius: 32px !important;
  overflow: hidden !important;
}

.addr-dialog .el-dialog__header { display: none !important; }
.addr-dialog .el-dialog__body  { padding: 0 !important; border-radius: 32px !important; overflow: hidden !important; }
.addr-dialog { background: transparent !important; }

.el-overlay-dialog:has(.addr-dialog) {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Card */
.addr-card {
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

/* ── Floating close ── */
.addr-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,.06);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: background .18s, transform .14s;
}
.addr-close-btn:hover { background: rgba(0,0,0,.12); transform: scale(1.1); }
.addr-close-btn i { font-size: 15px; color: #52525b; }

/* ── Hero (centered) ── */
.addr-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 32px 28px;
  background: linear-gradient(180deg, #fff9f9 0%, #ffffff 100%);
}

.addr-hero-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #e12114;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow:
    0 0 0 10px rgba(225,33,20,.07),
    0 0 0 20px rgba(225,33,20,.035),
    0 12px 32px rgba(225,33,20,.38);
  animation: addr-icon-breathe 3s ease-in-out infinite;
}

@keyframes addr-icon-breathe {
  0%, 100% { box-shadow: 0 0 0 10px rgba(225,33,20,.07), 0 0 0 20px rgba(225,33,20,.035), 0 12px 32px rgba(225,33,20,.38); }
  50%       { box-shadow: 0 0 0 12px rgba(225,33,20,.10), 0 0 0 24px rgba(225,33,20,.05),  0 16px 40px rgba(225,33,20,.45); }
}

.addr-hero-icon i {
  font-size: 28px;
  color: #ffffff;
}

.addr-hero-title {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  margin: 0 0 10px !important;
  letter-spacing: -.025em !important;
  line-height: 1.2 !important;
}

.addr-hero-sub {
  font-size: 13.5px !important;
  color: #6b7280 !important;
  margin: 0 !important;
  line-height: 1.6 !important;
  max-width: 320px;
}

/* ── Body ── */
.addr-body {
  padding: 20px 24px 26px;
  border-top: 1px solid #f5f5f5;
}

/* Error */
.addr-error-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 10px 14px;
  background: rgba(225,33,20,.06);
  border: 1px solid rgba(225,33,20,.18);
  border-radius: 12px;
  font-size: 13px;
  color: #c41c10;
}
.addr-error-bar i { font-size: 16px; flex-shrink: 0; }

/* ── Search ── */
.addr-search-zone { display: flex; flex-direction: column; gap: 8px; }

.addr-autocomplete .el-input__wrapper {
  height: 52px !important;
  border-radius: 14px !important;
  border: 1.5px solid #e9eaec !important;
  box-shadow: 0 1px 4px rgba(0,0,0,.05), 0 4px 14px rgba(0,0,0,.04) !important;
  padding: 0 52px 0 18px !important;
  font-size: 14.5px !important;
  background: #fafafa !important;
  position: relative !important;
  transition: border-color .2s, box-shadow .2s, background .2s !important;
}
.addr-autocomplete .el-input__wrapper:hover {
  border-color: rgba(225,33,20,.3) !important;
  background: #fff !important;
}
.addr-autocomplete .el-input__wrapper.is-focus {
  border-color: #e12114 !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(225,33,20,.10), 0 4px 14px rgba(225,33,20,.08) !important;
}
.addr-autocomplete .el-input__inner {
  font-size: 14.5px !important;
  font-weight: 500 !important;
  color: #111827 !important;
}
.addr-autocomplete .el-input__inner::placeholder {
  color: #b0b7c3 !important;
  font-weight: 400 !important;
}

.addr-autocomplete .el-input__suffix {
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  align-items: center !important;
}

.addr-suffix-gps {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(225,33,20,.09);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background .18s, transform .12s;
}
.addr-suffix-gps:hover { background: rgba(225,33,20,.17); transform: scale(1.07); }
.addr-suffix-gps i { font-size: 16px; color: #e12114; }

/* Location row */
.addr-locate-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 16px;
  background: rgba(225,33,20,.03);
  border: 1.5px solid rgba(225,33,20,.15);
  border-radius: 13px;
  cursor: pointer;
  transition: background .18s, border-color .18s;
  text-align: left;
}
.addr-locate-row:hover {
  background: rgba(225,33,20,.06);
  border-color: rgba(225,33,20,.35);
}
.addr-locate-row-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(225,33,20,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.addr-locate-row-icon i { font-size: 15px; color: #e12114; }
.addr-locate-row-text { flex: 1; font-size: 13.5px; font-weight: 600; color: #e12114; }
.addr-locate-row-arrow { font-size: 15px; color: rgba(225,33,20,.4); flex-shrink: 0; }

/* ── Divider ── */
.addr-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 10px;
}
.addr-divider::before,
.addr-divider::after { content: ''; flex: 1; height: 1px; background: #f0f0f0; }
.addr-divider-label { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #adb5c0; white-space: nowrap; }

/* ── Saved list ── */
.addr-saved-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(225,33,20,.18) transparent;
}
.addr-saved-list::-webkit-scrollbar { width: 4px; }
.addr-saved-list::-webkit-scrollbar-thumb { background: rgba(225,33,20,.18); border-radius: 4px; }

.addr-saved-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 13px;
  border: 1.5px solid transparent;
  background: #fafafa;
  cursor: pointer;
  transition: background .14s, border-color .14s, box-shadow .14s, transform .12s;
}
.addr-saved-item:hover {
  background: #fff;
  border-color: rgba(225,33,20,.18);
  box-shadow: 0 3px 14px rgba(225,33,20,.08);
  transform: translateY(-1px);
}
.addr-saved-pin {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(225,33,20,.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.addr-saved-pin i { font-size: 16px; color: #e12114; }
.addr-saved-text {
  flex: 1; min-width: 0; font-size: 13px; font-weight: 500; color: #374151;
  line-height: 1.4; overflow: hidden;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.addr-saved-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.addr-action-btn {
  width: 28px; height: 28px; border-radius: 7px; background: #f3f4f6;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .14s, transform .12s; text-decoration: none !important;
}
.addr-action-btn:hover { background: #e5e7eb; transform: scale(1.1); }
.addr-action-btn i { font-size: 13px; color: #6b7280; }
.addr-action-del:hover { background: rgba(225,33,20,.1) !important; }
.addr-action-del:hover i { color: #e12114; }

/* ═══════════════════════════════════════════════════════
   ADDRESS SUGGESTIONS DROPDOWN  addr-suggestions-*
   ═══════════════════════════════════════════════════════ */

.addr-suggestions-popper {
  border-radius: 18px !important;
  border: 1.5px solid rgba(225,33,20,.13) !important;
  box-shadow:
    0 12px 40px rgba(0,0,0,.14),
    0 3px 10px rgba(0,0,0,.07),
    0 0 0 1px rgba(225,33,20,.04) !important;
  overflow: hidden !important;
  padding: 6px !important;
  margin-top: 8px !important;
  background: #ffffff !important;
  width: 460px !important;
  max-width: 92vw !important;
}

.addr-suggestions-popper .el-autocomplete-suggestion__wrap {
  padding: 0 !important;
  max-height: 272px !important;
}

.addr-suggestions-popper .el-scrollbar__view {
  padding: 0 !important;
}

.addr-suggestions-popper .el-autocomplete-suggestion__list {
  padding: 0 !important;
  margin: 0 !important;
}

.addr-suggestions-popper li {
  padding: 0 !important;
  border-radius: 12px !important;
  margin-bottom: 3px !important;
  line-height: 1 !important;
  transition: background .15s, box-shadow .15s !important;
  border: 1.5px solid transparent !important;
}

.addr-suggestions-popper li:last-child {
  margin-bottom: 0 !important;
}

.addr-suggestions-popper li.highlighted,
.addr-suggestions-popper li:hover {
  background: rgba(225,33,20,.055) !important;
  border-color: rgba(225,33,20,.16) !important;
  box-shadow: 0 2px 10px rgba(225,33,20,.07) !important;
}

.addr-suggestion-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 12px;
}

.addr-suggestion-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(225,33,20,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s;
}

.addr-suggestions-popper li.highlighted .addr-suggestion-icon,
.addr-suggestions-popper li:hover .addr-suggestion-icon {
  background: rgba(225,33,20,.16);
}

.addr-suggestion-icon i {
  font-size: 15px;
  color: #e12114;
}

.addr-suggestion-text {
  flex: 1;
  font-size: 13.5px;
  font-weight: 500;
  color: #374151;
  line-height: 1.45;
  white-space: normal;
  word-break: break-word;
}

.addr-suggestions-popper .el-scrollbar__bar.is-vertical {
  opacity: 1 !important;
  width: 4px !important;
  right: 3px !important;
}

.addr-suggestions-popper .el-scrollbar__thumb {
  background: rgba(225,33,20,.22) !important;
  border-radius: 4px !important;
}

/* ═══════════════════════════════════════════════════════
   SELECT ADDRESS / MAP DIALOG  cmap-*
   ═══════════════════════════════════════════════════════ */

.cmap-dialog,
.el-dialog.cmap-dialog,
.el-overlay .cmap-dialog,
.el-overlay-dialog .cmap-dialog,
.el-dialog:has(.cmap-card) {
  --el-dialog-border-radius: 32px;
  border-radius: 32px !important;
  overflow: hidden !important;
  border: none !important;
  box-shadow: 0 24px 72px rgba(0,0,0,.22), 0 8px 24px rgba(0,0,0,.10) !important;
  width: 560px !important;
  max-width: 94vw !important;
}
.cmap-dialog .el-dialog__header,
.el-dialog:has(.cmap-card) .el-dialog__header { display: none !important; }
.cmap-dialog .el-dialog__body,
.el-dialog:has(.cmap-card) .el-dialog__body {
  padding: 0 !important;
  border-radius: 32px !important;
  overflow: hidden !important;
  background: transparent !important;
}
.el-overlay-dialog:has(.cmap-dialog),
.el-overlay-dialog:has(.cmap-card) {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Card */
.cmap-card {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
}

/* Header */
.cmap-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px 18px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  border-bottom: 1px solid #f3f4f6;
}
.cmap-header-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #e12114;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(225,33,20,.32);
}
.cmap-header-icon i { font-size: 20px; color: #fff; }
.cmap-header-text { flex: 1; min-width: 0; }
.cmap-title {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  margin: 0 0 3px !important;
  letter-spacing: -.02em !important;
}
.cmap-subtitle {
  font-size: 12.5px !important;
  color: #6b7280 !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}
.cmap-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,.06);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background .16s, transform .12s;
}
.cmap-close-btn:hover { background: rgba(0,0,0,.12); transform: scale(1.08); }
.cmap-close-btn i { font-size: 15px; color: #52525b; }

/* Search zone */
.cmap-search-zone {
  padding: 14px 16px 12px;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}
.cmap-search-zone .search-geocomplete { width: 100% !important; }
.cmap-search-zone .el-input__wrapper {
  border-radius: 12px !important;
  border: 1.5px solid #e9eaec !important;
  box-shadow: 0 1px 4px rgba(0,0,0,.05) !important;
  height: 48px !important;
  background: #fafafa !important;
}
.cmap-search-zone .el-input__wrapper:hover { border-color: rgba(225,33,20,.3) !important; }
.cmap-search-zone .el-input__wrapper.is-focus {
  border-color: #e12114 !important;
  box-shadow: 0 0 0 3px rgba(225,33,20,.10) !important;
  background: #fff !important;
}
.cmap-search-zone .flex-enabled-locate { display: none !important; }

/* Map zone */
.cmap-map-zone { position: relative; }
.cmap-map-zone .map-lg-large { height: 340px !important; border: none !important; border-radius: 0 !important; }
.cmap-map-zone .map-buttons-wrap {
  right: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10;
}
.cmap-map-zone .btn-white {
  background: #fff !important;
  border: none !important;
  box-shadow: 0 2px 10px rgba(0,0,0,.14) !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  transition: background .15s, transform .12s !important;
}
.cmap-map-zone .btn-white:hover { background: #f5f5f5 !important; transform: scale(1.06) !important; }
.cmap-map-zone .btn-white i { font-size: 18px; color: #374151; }
.cmap-map-zone .rounded-circle { border-radius: 50% !important; }
.cmap-map-zone .divider { height: 1px !important; background: #e5e7eb !important; margin: 3px 0 !important; padding: 0 !important; }

/* Submit overlay */
.cmap-submit-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.45) 0%, transparent 100%);
  display: flex;
  justify-content: center;
}
.cmap-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 32px;
  height: 50px;
  border-radius: 14px;
  background: #e12114;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(225,33,20,.45);
  transition: background .18s, transform .14s, box-shadow .18s;
  min-width: 180px;
  justify-content: center;
}
.cmap-submit-btn:hover {
  background: #c41c10;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(225,33,20,.5);
}
.cmap-submit-btn i { font-size: 18px; }
.cmap-submit-btn .circle-loader { display: none; }
.cmap-submit-btn.loading .label { opacity: 0; }
.cmap-submit-btn.loading .circle-loader { display: block; }

@media (max-width: 600px) {
  .cmap-dialog { width: 100% !important; max-width: 100vw !important; border-radius: 20px 20px 0 0 !important; }
  .cmap-map-zone .map-lg-large { height: 280px !important; }
}

/* Map dialog autocomplete suggestions */
.cmap-addr-popper {
  border-radius: 14px !important;
  border: 1.5px solid rgba(225,33,20,.13) !important;
  box-shadow:
    0 12px 40px rgba(0,0,0,.14),
    0 3px 10px rgba(0,0,0,.07) !important;
  overflow: hidden !important;
  padding: 6px !important;
  margin-top: 6px !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
}

.cmap-addr-popper .el-autocomplete-suggestion__wrap {
  padding: 0 !important;
  max-height: 240px !important;
}

.cmap-addr-popper .el-scrollbar__view,
.cmap-addr-popper .el-autocomplete-suggestion__list {
  padding: 0 !important;
  margin: 0 !important;
}

.cmap-addr-popper li {
  padding: 0 !important;
  border-radius: 10px !important;
  margin-bottom: 3px !important;
  line-height: 1 !important;
  transition: background .15s !important;
  border: 1.5px solid transparent !important;
  white-space: normal !important;
  word-break: break-word !important;
}

.cmap-addr-popper li:last-child { margin-bottom: 0 !important; }

.cmap-addr-popper li.highlighted,
.cmap-addr-popper li:hover {
  background: rgba(225,33,20,.055) !important;
  border-color: rgba(225,33,20,.16) !important;
}

.cmap-addr-popper .el-autocomplete-suggestion__list > li > * {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 12px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #374151 !important;
  line-height: 1.45 !important;
  white-space: normal !important;
  word-break: break-word !important;
}

/* ═══════════════════════════════════════════════════════
   DELIVERY DETAILS DIALOG  ddetails-*
   ═══════════════════════════════════════════════════════ */

@keyframes ddetails-enter {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1);   }
}

.ddetails-dialog {
  --el-dialog-border-radius: 32px;
  border-radius: 32px !important;
  overflow: visible !important;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.06),
    0 8px 24px rgba(0,0,0,.08),
    0 24px 64px rgba(0,0,0,.12) !important;
  border: none !important;
  width: 440px !important;
  max-width: 92vw !important;
  margin: 0 auto !important;
  animation: ddetails-enter .32s cubic-bezier(.16,1,.3,1) both;
}

.el-dialog.ddetails-dialog,
.el-overlay .ddetails-dialog {
  border-radius: 32px !important;
  overflow: visible !important;
}

.ddetails-dialog .el-dialog__header { display: none !important; }
.ddetails-dialog .el-dialog__body  { padding: 0 !important; border-radius: 32px !important; overflow: hidden !important; }
.ddetails-dialog { background: transparent !important; }
.el-overlay .el-dialog.ddetails-dialog,
.el-overlay-dialog .el-dialog.ddetails-dialog,
.el-dialog__wrapper .ddetails-dialog,
div[class*="el-overlay"] .ddetails-dialog {
  border-radius: 32px !important;
  overflow: hidden !important;
}

.el-overlay-dialog:has(.ddetails-dialog) {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.ddetails-card {
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.ddetails-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f3f4f6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: background .15s, color .15s;
  color: #6b7280;
}
.ddetails-close-btn:hover { background: #e5e7eb; color: #111827; }
.ddetails-close-btn i { font-size: 14px; color: inherit; line-height: 1; }

.ddetails-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 32px 28px;
  background: linear-gradient(180deg, #fff9f9 0%, #ffffff 100%);
}

.ddetails-hero-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e12114;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow:
    0 0 0 10px rgba(225,33,20,.07),
    0 0 0 20px rgba(225,33,20,.035),
    0 12px 32px rgba(225,33,20,.38);
  animation: addr-icon-breathe 3s ease-in-out infinite;
}
.ddetails-hero-icon i {
  font-size: 30px;
  color: #ffffff;
}

.ddetails-hero-title {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  margin: 0 0 10px !important;
  letter-spacing: -.03em !important;
  line-height: 1.15 !important;
}

.ddetails-hero-sub {
  font-size: 13.5px !important;
  color: #6b7280 !important;
  margin: 0 !important;
  line-height: 1.55 !important;
  max-width: 300px;
}

.ddetails-body {
  padding: 20px 24px 24px;
  border-top: 1px solid #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ddetails-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1.5px solid #eaecf0;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.04);
  transition: border-color .2s, box-shadow .2s, transform .15s;
  text-decoration: none !important;
}
.ddetails-row:hover {
  border-color: rgba(225,33,20,.3);
  box-shadow: 0 2px 8px rgba(225,33,20,.08), 0 4px 16px rgba(0,0,0,.05);
  transform: translateY(-1px);
}
.ddetails-row:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}

.ddetails-row-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff1f0;
  border: 1px solid rgba(225,33,20,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.ddetails-row-icon i { font-size: 19px; color: #e12114; }
.ddetails-row:hover .ddetails-row-icon {
  background: rgba(225,33,20,.10);
  border-color: rgba(225,33,20,.22);
}

.ddetails-row-icon--time {
  background: #eff6ff;
  border-color: rgba(37,99,235,.12);
}
.ddetails-row-icon--time i { color: #2563eb; }
.ddetails-row:hover .ddetails-row-icon--time {
  background: rgba(37,99,235,.10);
  border-color: rgba(37,99,235,.22);
}

.ddetails-row-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ddetails-row-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #e12114;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}
.ddetails-row-eyebrow::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #e12114;
  opacity: .7;
}

.ddetails-row-label {
  font-size: 14.5px;
  font-weight: 600;
  color: #111827;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ddetails-row-meta {
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ddetails-row-arrow {
  font-size: 16px;
  color: #e12114;
  flex-shrink: 0;
  opacity: .45;
  transition: opacity .15s, transform .15s;
}
.ddetails-row:hover .ddetails-row-arrow {
  opacity: 1;
  transform: translateX(2px);
}

.ddetails-footer {
  padding: 0 24px 28px;
}

.ddetails-done-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 14px;
  background: #e12114;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.ddetails-done-btn:hover {
  background: #c81d12;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(225,33,20,.35);
}
.ddetails-done-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ══════════════════════════════════════════════════
   ITEM DETAILS MODAL — v5 (Premium Redesign)
   ══════════════════════════════════════════════════ */

@keyframes itemModal_entrance {
  from { opacity: 0; transform: translateY(40px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

#itemModal.show .modal-dialog {
  animation: itemModal_entrance .4s cubic-bezier(.16,1,.3,1) forwards !important;
}

#itemModal .modal-dialog {
  max-width: 480px !important;
  margin: 2rem auto !important;
}

#itemModal .modal-content {
  border: none !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.15) !important;
  background: #fff !important;
  display: flex !important;
  flex-direction: column !important;
  max-height: 90vh !important;
}

/* ── Close ── */
#itemModal .modal-header {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  z-index: 30 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  width: auto !important;
}

#itemModal .modal-header .close {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.9) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  color: #333 !important;
  opacity: 1 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.1) !important;
  transition: background .2s ease !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  text-shadow: none !important;
}

#itemModal .modal-header .close:hover {
  background: rgba(255,255,255,1) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.15) !important;
  transform: none !important;
}

/* ── Body scroll ── */
#itemModal .modal-body {
  padding: 0 !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
#itemModal .modal-body::-webkit-scrollbar {
  display: none !important;
}

/* ── Hero image ── */
#itemModal .item_s {
  position: relative !important;
  margin: 0 !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #f5f5f5, #ebebeb) !important;
  aspect-ratio: 4 / 3 !important;
  flex-shrink: 0 !important;
}

#itemModal .item_s .el-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
}

#itemModal .item_s .el-image img,
#itemModal .item_s .el-image__inner {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

#itemModal .item_s::after {
  content: none !important;
}

/* ── Title ── */
#itemModal h4 {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
  margin: 20px 24px 6px !important;
  line-height: 1.3 !important;
  letter-spacing: -.3px !important;
}

/* ── Description ── */
#itemModal .text-descriptions {
  font-size: 13px !important;
  color: #888 !important;
  line-height: 1.5 !important;
  margin: 0 24px 20px !important;
  padding: 0 !important;
}

#itemModal > * > p.text-muted {
  margin: 0 24px !important;
}

/* ── Size options – card style ── */
#itemModal .choose-sizex {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  padding: 0 24px 20px !important;
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
}

#itemModal .choose-sizex label.btn {
  border-radius: 12px !important;
  border: 1.5px solid #f0f0f0 !important;
  background: #fafafa !important;
  color: #333 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 12px 14px !important;
  transition: all .2s ease !important;
  box-shadow: none !important;
  outline: none !important;
  flex: 0 0 auto !important;
  line-height: 1.4 !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-align: left !important;
  width: 100% !important;
  justify-content: flex-start !important;
}

#itemModal .choose-sizex label.btn .size-label {
  flex: 1 !important;
  font-weight: 500 !important;
  color: #333 !important;
}

#itemModal .choose-sizex label.btn .size-price {
  margin-left: auto !important;
  font-weight: 600 !important;
  color: #555 !important;
  white-space: nowrap !important;
}

#itemModal .choose-sizex label.btn.active .size-price {
  color: #e12114 !important;
}

#itemModal .choose-sizex label.btn::before {
  content: '' !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  border: 2px solid #ccc !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  transition: all .2s ease !important;
  box-sizing: border-box !important;
  background: #fff !important;
}

#itemModal .choose-sizex label.btn:hover {
  border-color: #e0e0e0 !important;
  background: #fff !important;
  color: #333 !important;
}

#itemModal .choose-sizex label.btn.active {
  background: #fff5f2 !important;
  border-color: #e12114 !important;
  color: #1a1a1a !important;
  box-shadow: none !important;
}

#itemModal .choose-sizex label.btn.active::before {
  border-color: #e12114 !important;
  background: #e12114 !important;
  box-shadow: inset 0 0 0 3px #fff !important;
}

#itemModal .choose-sizex label.btn input {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ── Addon section wrapper ── */
#itemModal .addon-rows:first-of-type {
  margin-top: 0 !important;
  border-top: none !important;
}

#itemModal .addon-rows {
  border: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  margin: 0 !important;
  background: transparent !important;
}

/* ── Addon header ── */
#itemModal .addon-rows .heads {
  background: transparent !important;
  border-top: 1px solid #f0f0f0 !important;
  border-bottom: none !important;
  padding: 32px 24px 10px !important;
  display: flex !important;
  align-items: flex-start !important;
  flex-wrap: nowrap !important;
  gap: 10px !important;
  text-align: left !important;
}

#itemModal .addon-rows:first-of-type .heads {
  border-top: none !important;
  padding-top: 0 !important;
}

#itemModal .addon-rows .heads .flexcol:first-child {
  flex: 1 !important;
}

#itemModal .addon-rows .heads .flexcol:last-child {
  margin-top: 2px !important;
  flex-shrink: 0 !important;
}

#itemModal .addon-rows .heads h5 {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin: 0 0 1px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  border-top: none !important;
  padding: 0 !important;
  text-align: left !important;
}

#itemModal .addon-rows .heads p.text-grey {
  font-size: 12px !important;
  color: #999 !important;
  margin: -2px 0 0 !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

/* ── Required / Optional badge ── */
#itemModal .addon-required {
  background: #fff0ed !important;
  color: #e12114 !important;
  border: none !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  padding: 3px 10px !important;
  letter-spacing: .3px !important;
  text-transform: capitalize !important;
  white-space: nowrap !important;
  line-height: 1.4 !important;
}
#itemModal .addon-optional {
  background: #ecfdf5 !important;
  color: #059669 !important;
  border: none !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  padding: 3px 10px !important;
  letter-spacing: .3px !important;
  text-transform: capitalize !important;
  white-space: nowrap !important;
  line-height: 1.4 !important;
}

/* ── Addon option rows ── */
#itemModal .list-addon.list-selection {
  margin: 0 !important;
  padding: 0 24px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin-bottom: 20px !important;
}

#itemModal .list-addon.list-selection li {
  padding: 12px 14px !important;
  border: 1.5px solid #f0f0f0 !important;
  border-radius: 12px !important;
  background: #fafafa !important;
  transition: all .2s ease !important;
  display: flex !important;
  align-items: center !important;
  min-height: 48px !important;
  box-sizing: border-box !important;
}

#itemModal .list-addon.list-selection li:last-child {
  border-bottom: 1.5px solid #f0f0f0 !important;
}

#itemModal .list-addon.list-selection li:hover {
  border-color: #e0e0e0 !important;
  background: #fff !important;
}

#itemModal .list-addon.list-selection li:has(.custom-control-input:checked),
#itemModal .list-addon.list-selection li:has(.quantity-parent) {
  background: #fff5f2 !important;
  border-color: #e12114 !important;
}

/* ── Custom radio/checkbox ── */
#itemModal .custom-control {
  padding-left: 0 !important;
  min-height: auto !important;
}

#itemModal .custom-control-input {
  position: absolute !important;
  z-index: -1 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#itemModal .custom-control-label {
  padding-left: 34px !important;
  position: relative !important;
  cursor: pointer !important;
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  min-height: 22px !important;
}

#itemModal .custom-control-label::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  border: 2px solid #ccc !important;
  background: #fff !important;
  box-shadow: none !important;
  transition: all .2s ease !important;
}

#itemModal .custom-control-label::after {
  content: '' !important;
  background-image: none !important;
  background-color: transparent !important;
  position: absolute !important;
  left: 6px !important;
  top: 50% !important;
  transform: translateY(-50%) scale(0) !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  transition: transform .2s cubic-bezier(.4,0,.2,1) !important;
}

#itemModal .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #e12114 !important;
  background-image: none !important;
  border-color: #e12114 !important;
  box-shadow: none !important;
}

#itemModal .custom-control-input:checked ~ .custom-control-label::after {
  background-image: none !important;
  background-color: #fff !important;
  transform: translateY(-50%) scale(1) !important;
}

#itemModal .custom-control-input[type="checkbox"] ~ .custom-control-label::before {
  border-radius: 6px !important;
}

#itemModal .custom-control-input[type="checkbox"]:checked ~ .custom-control-label::after {
  background-color: transparent !important;
  background-image: none !important;
  left: 4px !important;
  width: 12px !important;
  height: 6px !important;
  border-radius: 0 !important;
  border-left: 2px solid #fff !important;
  border-bottom: 2px solid #fff !important;
  transform: translateY(-65%) rotate(-45deg) scale(1) !important;
}

#itemModal .custom-control-label h6 {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #333 !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

#itemModal .list-addon li > p.m-0 {
  font-size: 13px !important;
  color: #666 !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  margin-left: 12px !important;
}

/* ── Section labels (Special Instructions, If sold out) ── */
#itemModal h5.m-0 {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #9ca3af !important;
  text-transform: uppercase !important;
  letter-spacing: .1em !important;
  margin: 0 !important;
  padding: 20px 24px 8px !important;
  border-top: 1px solid #f0f0f0 !important;
}

#itemModal .form-label-group {
  padding: 0 24px 4px !important;
  margin: 0 !important;
}

#itemModal .form-control.form-control-text {
  border: 1.5px solid #f0f0f0 !important;
  border-radius: 12px !important;
  background: #fafafa !important;
  font-size: 14px !important;
  color: #374151 !important;
  padding: 12px 16px !important;
  resize: none !important;
  box-shadow: none !important;
  min-height: 72px !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
}

#itemModal .form-control.form-control-text:focus {
  background: #fff !important;
  outline: none !important;
  border-color: #e12114 !important;
  box-shadow: 0 0 0 3px rgba(225,33,20,.08) !important;
}

#itemModal .form-label-group select.form-control.custom-select {
  border: 1.5px solid #f0f0f0 !important;
  border-radius: 12px !important;
  background: #fafafa !important;
  font-size: 14px !important;
  color: #374151 !important;
  padding: 12px 16px !important;
  box-shadow: none !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
  -webkit-appearance: auto !important;
  appearance: auto !important;
  margin-bottom: 16px !important;
}

#itemModal .form-label-group select.form-control.custom-select:focus {
  background: #fff !important;
  outline: none !important;
  border-color: #e12114 !important;
  box-shadow: 0 0 0 3px rgba(225,33,20,.08) !important;
}

/* ── Footer ── */
#itemModal .item-modal-footer {
  background: #fff !important;
  border-top: 1px solid #f0f0f0 !important;
  padding: 16px 24px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  border-radius: 0 0 20px 20px !important;
  flex-shrink: 0 !important;
}

#itemModal .item-modal-footer .w-25 {
  width: auto !important;
  flex-shrink: 0 !important;
}

#itemModal .item-modal-footer .w-75 {
  width: 100% !important;
  flex: 1 !important;
}

/* ── Qty stepper (matches list pill style) ── */
#itemModal .item-modal-footer .quantity {
  background: #f7f6f3 !important;
  border: 1px solid #e8e6e1 !important;
  border-radius: 50px !important;
  padding: 4px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  width: auto !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.04) !important;
  transition: box-shadow .2s ease, border-color .2s ease !important;
}

#itemModal .item-modal-footer .quantity:hover {
  border-color: #d4d0ca !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.07) !important;
}

#itemModal .item-modal-footer .qty-btn {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  color: #374151 !important;
  box-shadow: 0 1px 2px rgba(0,0,0,.06) !important;
  transition: all .18s ease !important;
  padding: 0 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

#itemModal .item-modal-footer .qty-btn:hover {
  background: #e12114 !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(225,33,20,.3) !important;
  transform: scale(1.08) !important;
}

#itemModal .item-modal-footer .qty {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  min-width: 28px !important;
  text-align: center !important;
  line-height: 1 !important;
  user-select: none !important;
}

/* ── Add to cart CTA ── */
#itemModal .btn.btn-green.add_to_cart {
  background: #e12114 !important;
  border: none !important;
  border-radius: 14px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #fff !important;
  padding: 14px 20px !important;
  width: 100% !important;
  height: 48px !important;
  box-shadow: 0 4px 16px rgba(225,33,20,.3) !important;
  transition: all .2s ease !important;
  letter-spacing: .2px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
}

#itemModal .btn.btn-green.add_to_cart::before {
  content: none !important;
}

#itemModal .btn.btn-green.add_to_cart:hover:not(:disabled) {
  background: #c51d12 !important;
  box-shadow: 0 6px 20px rgba(225,33,20,.4) !important;
  transform: translateY(-1px) !important;
}

#itemModal .btn.btn-green.add_to_cart:active:not(:disabled) {
  background: #b01910 !important;
  transform: scale(.98) !important;
  box-shadow: 0 2px 8px rgba(225,33,20,.25) !important;
}

#itemModal .btn.btn-green.add_to_cart:disabled {
  background: #ccc !important;
  color: #fff !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
}

#itemModal .btn.btn-green.add_to_cart .label {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  gap: 8px !important;
}

#itemModal .btn.btn-green.add_to_cart .item-summary {
  font-weight: 800 !important;
  opacity: .95 !important;
}

/* ── Misc ── */
#itemModal .el-tag {
  border-radius: 99px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
}

#itemModal .owl-carousel {
  margin: 4px 24px 8px !important;
}

/* ── Quantity wrapper for multi-addons ── */
#itemModal .list-addon .quantity-wrapper {
  width: auto !important;
  flex-shrink: 0 !important;
}
#itemModal .list-addon .quantity-wrapper .quantity-parent {
  display: flex !important;
  align-items: center !important;
}
#itemModal .list-addon .quantity-wrapper .quantity {
  width: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
#itemModal .list-addon .quantity-wrapper .qty-btn {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  font-size: 12px !important;
  background: #f0f0f0 !important;
  border: none !important;
  color: #555 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 1 !important;
  transition: all .15s ease !important;
}
#itemModal .list-addon .quantity-wrapper .qty-btn:hover {
  background: #e12114 !important;
  color: #fff !important;
}
#itemModal .list-addon .quantity-wrapper .btn-plus-addon {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  font-size: 12px !important;
  background: #f0f0f0 !important;
  border: none !important;
  color: #555 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 1 !important;
  transition: all .15s ease !important;
}
#itemModal .list-addon .quantity-wrapper .btn-plus-addon:hover {
  background: #e12114 !important;
  color: #fff !important;
}
#itemModal .list-addon .quantity-wrapper .qty {
  font-size: 13px !important;
  font-weight: 600 !important;
  min-width: 20px !important;
  text-align: center !important;
  color: #1a1a1a !important;
  line-height: 1 !important;
}
#itemModal .list-addon li > .flexcol {
  flex: 1 !important;
  min-width: 0 !important;
}
#itemModal .list-addon li .addon-multi-price {
  font-size: 13px !important;
  color: #666 !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  margin-left: auto !important;
  flex-shrink: 0 !important;
}
#itemModal .list-addon .quantity-add-cart {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  background: transparent !important;
  color: #bbb !important;
  font-size: 22px !important;
  line-height: 1 !important;
  transition: color .2s ease, transform .15s ease !important;
}
#itemModal .list-addon .quantity-add-cart:hover {
  color: #e12114 !important;
  transform: scale(1.1) !important;
}

/* ── Mobile full-screen ── */
@media (max-width: 575.98px) {
  #itemModal .modal-dialog {
    margin: 0 !important;
    max-width: 100% !important;
    min-height: 100% !important;
  }
  #itemModal .modal-content {
    border-radius: 20px 20px 0 0 !important;
    min-height: auto !important;
    max-height: 95vh !important;
  }
  #itemModal .item_s {
    aspect-ratio: 4 / 3 !important;
  }
  #itemModal h4 {
    font-size: 19px !important;
    margin: 16px 18px 4px !important;
  }
  #itemModal .text-descriptions {
    margin: 0 18px 16px !important;
  }
  #itemModal .choose-sizex {
    padding: 0 18px 16px !important;
  }
  #itemModal .addon-rows .heads {
    padding: 18px 18px 10px !important;
  }
  #itemModal .addon-rows:first-of-type .heads {
    padding-top: 0 !important;
  }
  #itemModal .list-addon.list-selection {
    padding: 0 18px !important;
  }
  #itemModal h5.m-0 {
    padding: 16px 18px 8px !important;
  }
  #itemModal .form-label-group {
    padding: 0 18px 4px !important;
  }
  #itemModal .item-modal-footer {
    border-radius: 0 !important;
    position: sticky !important;
    bottom: 0 !important;
    padding: 14px 18px !important;
    padding-bottom: max(14px, env(safe-area-inset-bottom)) !important;
  }
  #itemModal .btn.btn-green.add_to_cart {
    height: 44px !important;
    font-size: 14px !important;
  }
}


/* ════════════════════════════════════════════════
   RESTAURANT DETAIL INFO — PREMIUM v3
   Full-width · On-theme red/white palette
   ════════════════════════════════════════════════ */

.rdi-wrap {
  margin-top: var(--space-4);
}

.rdi-anchor {
  display: block;
  position: relative;
  top: -110px;
  visibility: hidden;
}

.rdi-section {
  padding: 56px 0 64px;
  background: #f8f9fb;
  border-top: 1px solid rgba(17,24,39,.04);
  border-bottom: 1px solid rgba(17,24,39,.04);
}

.rdi-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
}

.rdi-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 36px;
}

.rdi-header-left {
  flex: 1;
  min-width: 0;
}

.rdi-header-right {
  flex-shrink: 0;
}

.rdi-title {
  margin: 16px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--text);
}

.description.rdi-desc {
  max-width: 640px;
  max-height: 4.5em;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  transition: max-height .3s ease;
}

.description.rdi-desc.expanded {
  max-height: none;
}

.rdi-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 0;
  background: transparent;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  transition: var(--transition);
}

.rdi-read-more .zmdi {
  font-size: 16px;
  transition: transform var(--transition);
}

.rdi-read-more:hover {
  color: var(--brand-dark);
  text-decoration: none;
}

.rdi-read-more:hover .zmdi {
  transform: translateX(4px);
}

.rdi-quick-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rdi-quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(17,24,39,.06);
  min-width: 220px;
}

.rdi-quick-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(225,33,20,.07);
  color: var(--brand);
  font-size: 16px;
  flex-shrink: 0;
}

.rdi-quick-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 2px;
}

.rdi-quick-value {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.rdi-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.rdi-map-wrapper {
  position: sticky;
  top: 88px;
}

.rdi-map-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #eef0f4;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.06);
}

.rdi-map-image {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.rdi-map-overlay {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
}

.rdi-map-overlay-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.rdi-map-tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 4px;
}

.rdi-map-addr {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-2);
}

.rdi-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: var(--text);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition);
}

.rdi-map-btn:hover {
  background: var(--brand);
  color: #fff;
  text-decoration: none;
}

.rdi-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rdi-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,.06);
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 6px 20px rgba(0,0,0,.04);
  overflow: hidden;
}

.rdi-card--hours {
  background: #fff;
}

.rdi-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px 0;
}

.rdi-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(225,33,20,.07);
  color: var(--brand);
  font-size: 19px;
  flex-shrink: 0;
}

.rdi-card-icon--hours {
  background: rgba(37,99,235,.07);
  color: #2563eb;
}

.rdi-card-title {
  margin: 0 0 2px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--text);
}

.rdi-card-sub {
  margin: 0;
  font-size: 13px;
  color: var(--text-faint);
}

.rdi-card-body {
  padding: 18px 24px 24px;
}

.rdi-card-footer {
  padding: 0 24px 22px;
}

.rdi-address-block {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #f8f9fb;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 16px;
}

.rdi-address-pin {
  color: var(--brand);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.rdi-info-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rdi-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(17,24,39,.05);
}

.rdi-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rdi-info-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: var(--text-muted);
  font-size: 15px;
  flex-shrink: 0;
}

.rdi-info-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1px;
}

.rdi-info-value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.rdi-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.rdi-link:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

.rdi-btn-direction {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}

.rdi-btn-direction:hover {
  background: var(--brand-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(225,33,20,.3);
}

.rdi-today-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(37,99,235,.06) 0%, rgba(37,99,235,.02) 100%);
  border: 1px solid rgba(37,99,235,.1);
  margin-bottom: 18px;
}

.rdi-today-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: rdi-pulse 2s ease-in-out infinite;
}

@keyframes rdi-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.rdi-today-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.rdi-today-value {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.rdi-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rdi-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background .2s ease;
}

.rdi-hours-row:hover {
  background: rgba(17,24,39,.02);
}

.rdi-hours-row--active {
  background: rgba(37,99,235,.05);
  border-radius: 8px;
}

.rdi-hours-row--active .rdi-hours-day,
.rdi-hours-row--active .rdi-hours-time {
  color: #2563eb;
}

.rdi-hours-day {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.rdi-hours-time {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.rdi-hours-sep {
  color: var(--text-faint);
  margin: 0 2px;
}

.rdi-gallery {
  padding: 10px 0 48px;
  background: #f8f9fb;
}

.rdi-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.rdi-gitem {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(17,24,39,.06);
}

.rdi-gitem figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: block;
  border-radius: 12px;
  position: relative;
}

.rdi-gitem figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.rdi-gitem figure:hover img {
  transform: scale(1.06);
}

.rdi-gitem figure::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(to top, rgba(15,17,24,.32) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.rdi-gitem figure:hover::after {
  opacity: 1;
}

@media (max-width: 1199px) {
  .rdi-content {
    grid-template-columns: 1fr 1fr;
  }

  .rdi-map-image {
    min-height: 460px;
  }
}

@media (max-width: 991px) {
  .rdi-content {
    grid-template-columns: 1fr;
  }

  .rdi-map-wrapper {
    position: static;
  }

  .rdi-map-image {
    min-height: 360px;
  }

  .rdi-header {
    flex-direction: column;
    gap: 20px;
  }

  .rdi-quick-info {
    flex-direction: row;
  }

  .rdi-quick-item {
    flex: 1;
  }

  .rdi-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .rdi-section {
    padding: 32px 0 40px;
  }

  .rdi-header {
    gap: 16px;
  }

  .rdi-quick-info {
    flex-direction: column;
  }

  .rdi-quick-item {
    min-width: 0;
  }

  .rdi-card-header {
    padding: 18px 18px 0;
  }

  .rdi-card-body {
    padding: 14px 18px 18px;
  }

  .rdi-card-footer {
    padding: 0 18px 18px;
  }

  .rdi-map-image {
    min-height: 260px;
  }

  .rdi-gallery {
    padding: 8px 0 32px;
  }

  .rdi-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ================================================================
   CHECKOUT 2.0 — Premium Redesign
   ================================================================ */

/* ── Page Layout ── */
.ck-page {
  background: #f2f3f7;
  background-image:
    radial-gradient(ellipse at 15% 70%, rgba(225,33,20,.045) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(225,33,20,.03) 0%, transparent 55%);
  min-height: 100vh;
  padding: 40px 0 80px;
}

.ck-row { align-items: flex-start; }
.ck-main { padding: 0 16px; }
.ck-sidebar { padding: 0 16px; }

/* ── Checkout Progress Stepper ── */
.ck-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
  padding: 20px 24px 16px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 4px 24px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.05);
}

.ck-stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}

.ck-stepper-step::after {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(50% + 20px);
  right: calc(-50% + 20px);
  height: 2px;
  background: linear-gradient(90deg, rgba(225,33,20,.5), #f0f0f0);
}

.ck-stepper-step:last-child::after { display: none; }

.ck-stepper-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e12114, #b91c1c);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(225,33,20,.4);
  position: relative;
  z-index: 1;
}

.ck-stepper-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: #4b5563;
  text-align: center;
  letter-spacing: .01em;
  line-height: 1.3;
}

/* ── Cards ── */
.ck-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,.055);
  box-shadow: 0 4px 20px rgba(0,0,0,.065), 0 1px 4px rgba(0,0,0,.04);
  margin-bottom: 20px;
  overflow: visible;
  transition: box-shadow .28s ease, transform .28s ease;
  position: relative;
}

.ck-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.09), 0 2px 8px rgba(0,0,0,.05);
  transform: translateY(-2px);
}

/* Left accent stripe for step cards */
.ck-card:has(.ck-step-badge)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  background: linear-gradient(180deg, #e12114, #b91c1c);
  border-radius: 0 4px 4px 0;
}

/* ── Card Head ── */
.ck-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px 0;
}

.ck-card-head-text {
  flex: 1;
  min-width: 0;
}

.ck-card-title {
  font-family: var(--font-display) !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  letter-spacing: -.028em !important;
  margin: 0 !important;
  line-height: 1.25 !important;
}

.ck-card-subtitle {
  font-family: var(--font-display);
  font-size: 13px;
  color: #9ca3af;
  margin: 3px 0 0;
  font-weight: 400;
  line-height: 1.4;
}

.ck-card-body {
  padding: 20px 32px 28px;
}

/* ── Step Badge (numbered) ── */
.ck-step-badge {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e12114 0%, #b91c1c 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(225,33,20,.45), 0 2px 6px rgba(225,33,20,.2);
  line-height: 1;
  position: relative;
}

.ck-step-badge::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(225,33,20,.22);
  animation: ck-badge-pulse 2.4s ease-in-out infinite;
}

@keyframes ck-badge-pulse {
  0%, 100% { opacity: .7; transform: scale(1); }
  50%       { opacity: 0; transform: scale(1.4); }
}

/* ── Step Icon (icon/non-numbered) ── */
.ck-step-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #ebebeb;
}

.ck-step-icon i {
  font-size: 21px;
  color: #6b7280;
}

/* ── Option Rows ── */
.ck-option-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1.5px solid #f0f0f0;
  background: #fafafa;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all .22s ease;
  text-decoration: none !important;
  color: inherit !important;
  position: relative;
  overflow: hidden;
}

a.ck-option-row::after { display: none !important; }

.ck-option-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(180deg, #e12114, #b91c1c);
  border-radius: 16px 0 0 16px;
  transition: width .2s ease;
}

.ck-option-row:hover {
  border-color: rgba(225,33,20,.18);
  background: #fff;
  box-shadow: 0 4px 18px rgba(225,33,20,.09), 0 1px 4px rgba(225,33,20,.05);
  transform: translateX(3px);
}

.ck-option-row:hover::before { width: 3px; }

.ck-option-row--static { cursor: default; }
.ck-option-row--static:hover {
  border-color: #f0f0f0;
  background: #fafafa;
  box-shadow: none;
  transform: none;
}
.ck-option-row--static:hover::before { width: 0; }
.ck-option-row--toggle { justify-content: space-between; }

/* ── Option Icons ── */
.ck-option-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(225,33,20,.09);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ck-option-icon i {
  font-size: 19px;
  color: #e12114;
}

.ck-option-icon--promo { background: #fef3c7 !important; }
.ck-option-icon--promo i { color: #d97706 !important; }

.ck-option-icon--gift { background: #ede9fe !important; }
.ck-option-icon--gift i { color: #7c3aed !important; }

/* ── Option Body ── */
.ck-option-body { flex: 1; min-width: 0; }

.ck-option-label {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: #111827;
  display: block;
  line-height: 1.4;
}

.ck-option-meta {
  font-family: var(--font-display);
  font-size: 12.5px;
  color: #9ca3af;
  margin: 2px 0 0;
  line-height: 1.4;
}

.ck-option-success {
  font-family: var(--font-display);
  font-size: 12.5px;
  color: #16a34a;
  background: #dcfce7;
  padding: 2px 8px;
  border-radius: 50px;
  display: inline-block;
  margin: 4px 0 0;
  font-weight: 600;
}

.ck-option-error { margin: 4px 0 0; }

.ck-option-error p {
  font-family: var(--font-display);
  font-size: 12px;
  color: #dc2626;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

.ck-option-arrow {
  font-size: 20px;
  color: #d1d5db;
  flex-shrink: 0;
  transition: transform .2s ease, color .2s ease;
}

.ck-option-row:hover .ck-option-arrow {
  color: #e12114;
  transform: translateX(3px);
}

/* ── Skeleton ── */
.ck-skeleton-row {
  border: 1.5px solid #f0f0f0;
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 10px;
  background: #fafafa;
}

/* ── Booking Block ── */
.ck-booking-block {
  padding: 20px;
  border-radius: 16px;
  border: 1.5px solid #f0f0f0;
  background: #fafafa;
  margin-top: 10px;
}

.ck-booking-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

/* ── Points Actions ── */
.ck-points-actions {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

/* ── Tips Block ── */
.ck-tips-block {
  padding: 22px;
  border-radius: 16px;
  border: 1.5px solid #f0f0f0;
  background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
  margin-top: 10px;
}

.ck-tips-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.ck-tips-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.ck-tip-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 50px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all .18s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}

.ck-tip-chip input { display: none; }

.ck-tip-chip:hover {
  border-color: #e12114;
  color: #e12114;
  background: rgba(225,33,20,.04);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(225,33,20,.12);
}

.ck-tip-chip.active {
  background: linear-gradient(135deg, #e12114, #b91c1c);
  border-color: #e12114;
  color: #fff;
  box-shadow: 0 5px 16px rgba(225,33,20,.35);
  transform: translateY(-1px);
}

.ck-tips-custom {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ck-tip-input {
  width: 100px !important;
  height: 44px !important;
  border-radius: 50px !important;
  border: 1.5px solid #e5e7eb !important;
  font-family: var(--font-display) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-align: center !important;
  background: #fafafa !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
}

.ck-tip-input:focus {
  border-color: #e12114 !important;
  box-shadow: 0 0 0 3px rgba(225,33,20,.1) !important;
  background: #fff !important;
}

.ck-tip-btn {
  height: 44px !important;
  border-radius: 50px !important;
  padding: 0 28px !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
}

/* ── Payment Section ── */
.ck-pay-section-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 12px;
}

.ck-pay-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid #f0f0f0;
  background: #fafafa;
  margin-bottom: 8px;
  transition: all .2s ease;
  cursor: default;
  text-decoration: none !important;
  color: inherit !important;
  position: relative;
  overflow: hidden;
}

a.ck-pay-row::after { display: none !important; }

.ck-pay-row--add { cursor: pointer; }

.ck-pay-row--add:hover {
  border-color: rgba(225,33,20,.2);
  background: #fff;
  box-shadow: 0 4px 18px rgba(225,33,20,.09);
  transform: translateX(3px);
}

.ck-pay-row--active {
  border-color: rgba(225,33,20,.3);
  background: rgba(225,33,20,.03);
}

.ck-pay-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.ck-pay-logo {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #fff;
  border: 1px solid #ebebeb;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
}

.ck-pay-logo i { font-size: 20px; color: #374151; }
.ck-pay-logo img { width: 28px; height: 28px; object-fit: contain; }

.ck-pay-info { flex: 1; min-width: 0; }

.ck-pay-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  display: block;
}

.ck-pay-fee {
  font-size: 11.5px;
  font-weight: 500;
  color: #9ca3af;
}

.ck-pay-detail {
  font-family: var(--font-display);
  font-size: 12px;
  color: #9ca3af;
  margin: 1px 0 0;
}

.ck-pay-row-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ck-pay-default-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 50px;
  background: #dcfce7;
  color: #16a34a;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.ck-pay-default-badge i { font-size: 12px; }

.ck-pay-more-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af !important;
  transition: background .15s ease;
}

.ck-pay-more-btn:hover { background: #f3f4f6; }
.ck-pay-more-btn i { font-size: 18px; }

/* ── Input ── */
.ck-input {
  height: 50px !important;
  border-radius: 14px !important;
  border: 1.5px solid #e5e7eb !important;
  font-family: var(--font-display) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 0 18px !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
  background: #fafafa !important;
}

.ck-input:focus {
  border-color: #e12114 !important;
  box-shadow: 0 0 0 3px rgba(225,33,20,.1) !important;
  background: #fff !important;
}

/* ── Wallet Alert ── */
.ck-wallet-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #fef2f2;
  border: 1.5px solid #fecaca;
  color: #dc2626;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  margin: 10px 0;
}

.ck-wallet-alert i { font-size: 16px; }

.ck-topup-btn {
  border-radius: 50px !important;
  border: 1.5px solid #e12114 !important;
  background: transparent !important;
  color: #e12114 !important;
  font-family: var(--font-display) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 10px 28px !important;
  transition: all .2s ease !important;
}

.ck-topup-btn:hover {
  background: linear-gradient(135deg, #e12114, #b91c1c) !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(225,33,20,.35) !important;
}

/* ── Cart Sidebar Card ── */
.ck-cart-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,.055);
  box-shadow: 0 4px 20px rgba(0,0,0,.065), 0 1px 4px rgba(0,0,0,.04);
  overflow: hidden;
  position: relative;
}

.ck-cart-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e12114, #ff7043, #e12114);
  background-size: 200% 100%;
  animation: ck-cart-shimmer 3.5s ease-in-out infinite;
}

@keyframes ck-cart-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.ck-cart-merchant {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 22px 14px;
  margin-top: 3px;
}

.ck-cart-merchant-logo {
  flex-shrink: 0;
  border: 2px solid #f0f0f0 !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.1) !important;
}

.ck-cart-merchant-info { flex: 1; min-width: 0; }

.ck-cart-merchant-name {
  font-family: var(--font-display) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  text-decoration: none !important;
  display: block;
  line-height: 1.3;
}

.ck-cart-merchant-name:hover { color: #e12114 !important; }

.ck-cart-cuisine {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ck-cart-address {
  font-family: var(--font-display);
  font-size: 12px;
  color: #9ca3af;
  margin: 5px 0 0;
  line-height: 1.45;
}

.ck-cart-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #efefef 20%, #efefef 80%, transparent);
  margin: 0 22px;
}

.ck-cart-items-wrap { padding: 0; }

.ck-cart-items-wrap .sticky-cart {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.ck-cart-items-wrap .sticky-cart::before { display: none !important; }

.ck-cart-items-wrap .card {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.ck-cart-items-wrap .card-body { padding: 16px 22px !important; }
.ck-cart-items-wrap .divider { display: none !important; }

/* ── Sticky Sidebar card overrides ── */
.ck-sidebar .sticky-cart .card {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}

/* ── Back Arrow ── */
.ck-page ~ .page-content,
.page-content:has(.ck-page) {
  padding: 0 !important;
  background: transparent !important;
}

.back-arrow {
  font-family: var(--font-display) !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #e12114 !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 50px;
  background: rgba(225,33,20,.07);
  transition: all .22s ease;
  border: 1.5px solid transparent;
}

.back-arrow:hover {
  background: rgba(225,33,20,.13);
  border-color: rgba(225,33,20,.15);
  text-decoration: none !important;
  transform: translateX(-2px);
}

.back-arrow::before {
  content: '\f2fa';
  font-family: 'Material-Design-Iconic-Font';
  font-size: 17px;
}

/* ── Override existing checkout layout items to fit premium cards ── */
.ck-card .card-body {
  padding: 20px 32px 28px !important;
  border: none !important;
}

.ck-card .card-body .badge.badge-dark {
  background: linear-gradient(135deg, #e12114, #b91c1c) !important;
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(225,33,20,.3);
}

.ck-card .section-title {
  font-family: var(--font-display) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  letter-spacing: -.02em !important;
}

.ck-card .chevron-section {
  border-radius: 16px !important;
  border: 1.5px solid #f0f0f0 !important;
  background: #fafafa !important;
  transition: all .22s ease !important;
}

.ck-card a.chevron-section:hover {
  border-color: rgba(225,33,20,.18) !important;
  background: #fff !important;
  box-shadow: 0 4px 18px rgba(225,33,20,.09) !important;
  transform: translateX(3px) !important;
}

.ck-card .border-green {
  border-radius: 16px !important;
  border: 1.5px solid rgba(225,33,20,.2) !important;
  background: rgba(225,33,20,.02) !important;
}

.ck-card .form-control,
.ck-card .form-control-text,
.ck-card .custom-select {
  border-radius: 13px !important;
  border: 1.5px solid #e5e7eb !important;
  font-family: var(--font-display) !important;
  background: #fafafa !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
}

.ck-card .form-control:focus,
.ck-card .custom-select:focus {
  border-color: #e12114 !important;
  box-shadow: 0 0 0 3px rgba(225,33,20,.1) !important;
  background: #fff !important;
}

.ck-card .btn-group-toggle .btn {
  border-radius: 50px !important;
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
  border: 1.5px solid #e5e7eb !important;
  transition: all .18s ease !important;
}

.ck-card .btn-group-toggle .btn.active {
  background: linear-gradient(135deg, #e12114, #b91c1c) !important;
  border-color: #e12114 !important;
  color: #fff !important;
  box-shadow: 0 5px 16px rgba(225,33,20,.35) !important;
}

.ck-card .btn-green {
  border-radius: 14px !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  height: 50px !important;
  font-size: 14.5px !important;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .ck-card-body { padding: 18px 26px 24px; }
  .ck-card-head { padding: 24px 26px 0; }
}

@media (max-width: 991px) {
  .ck-page { padding: 24px 0 60px; }
  .ck-card { border-radius: 18px; }
  .ck-cart-card { border-radius: 18px; }
  .ck-card .card-body { padding: 16px 22px 22px !important; }
  .ck-card-body { padding: 16px 22px 22px; }
  .ck-card-head { padding: 22px 22px 0; }

  .ck-pay-row {
    padding: 12px 14px;
  }
}

@media (max-width: 767px) {
  .ck-stepper { display: none; }
  .ck-card { border-radius: 16px; }
  .ck-cart-card { border-radius: 16px; }
  .ck-card:has(.ck-step-badge)::after { display: none; }
}

@media (max-width: 575px) {
  .ck-page { padding: 16px 0 48px; }
  .ck-main { padding: 0 10px; }
  .ck-sidebar { padding: 0 10px; }
  .ck-card .card-body { padding: 14px 18px 20px !important; }
  .ck-card-body { padding: 14px 18px 20px; }
  .ck-card-head { padding: 20px 20px 0; }
  .ck-step-badge { width: 42px; height: 42px; font-size: 17px; }
  .ck-step-icon { width: 42px; height: 42px; }
}

/* ── Checkout Layout Header ── */
.ck-layout-header {
  position: relative;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  z-index: 100;
}

.ck-layout-header #top-navigation {
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  min-height: 76px !important;
  padding: 0 28px !important;
}

.ck-nav-row { align-items: center; }

.ck-nav-secure {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 50px;
  background: #f9fafb;
  border: 1px solid #ebebeb;
}

.ck-nav-secure i {
  font-size: 14px;
  color: #16a34a;
}

.ck-header-accent {
  height: 3px;
  background: linear-gradient(90deg, #e12114 0%, #ff7043 50%, #b91c1c 100%);
  background-size: 200% 100%;
  animation: ck-header-shimmer 4s ease-in-out infinite;
}

@keyframes ck-header-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.ck-layout-header ~ .page-content {
  padding-top: 0 !important;
  background: transparent !important;
}

/* ─────────────────────────────────────────────────────
   CHECKOUT CART — Error & Notice States
   ───────────────────────────────────────────────────── */

/* ── Currently Closed Notice ── */
.ck-cart-card .cart-closed-notice {
  background: #fffbeb !important;
  border-top: 1.5px solid #fde68a !important;
  border-bottom: none !important;
  margin: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

.ck-cart-card .ccn-inner {
  padding: 16px 18px 14px !important;
  gap: 14px !important;
  align-items: flex-start !important;
}

.ck-cart-card .ccn-icon-wrap {
  width: 40px !important;
  height: 40px !important;
  border-radius: 12px !important;
  background: rgba(245,158,11,.12) !important;
  flex-shrink: 0 !important;
}

.ck-cart-card .ccn-icon-wrap i {
  font-size: 18px !important;
  color: #d97706 !important;
  z-index: 2 !important;
  position: relative !important;
}

.ck-cart-card .ccn-icon-pulse {
  display: none !important;
}

.ck-cart-card .ccn-body {
  flex: 1 !important;
  min-width: 0 !important;
}

.ck-cart-card .ccn-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-family: var(--font-display) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: #92400e !important;
  background: #fef3c7 !important;
  border: 1px solid #fde68a !important;
  padding: 3px 10px !important;
  border-radius: 50px !important;
  margin-bottom: 7px !important;
}

.ck-cart-card .ccn-badge::before {
  content: '';
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #d97706 !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
}

.ck-cart-card .ccn-msg {
  font-family: var(--font-display) !important;
  font-size: 12.5px !important;
  color: #78350f !important;
  margin: 0 !important;
  line-height: 1.55 !important;
  font-weight: 450 !important;
}

.ck-cart-card .ccn-btn {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 15px 18px !important;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: #fff !important;
  font-family: var(--font-display) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .10em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: none !important;
  border-radius: 0 0 22px 22px !important;
  transition: all .22s ease !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

.ck-cart-card .ccn-btn::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 50% !important;
  background: linear-gradient(180deg, rgba(255,255,255,.14) 0%, transparent 100%) !important;
  pointer-events: none !important;
}

.ck-cart-card .ccn-btn::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 60% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent) !important;
  animation: ccn-shimmer 2.8s ease-in-out infinite !important;
}

.ck-cart-card .ccn-btn i {
  font-size: 16px !important;
  color: #fff !important;
}

.ck-cart-card .ccn-btn-arrow {
  margin-left: auto !important;
  font-size: 16px !important;
  opacity: .85 !important;
  animation: ccn-nudge 1.8s ease-in-out infinite !important;
}

.ck-cart-card .ccn-btn:hover {
  background: linear-gradient(135deg, #e08e0a 0%, #c46d05 100%) !important;
  gap: 12px !important;
  color: #fff !important;
  text-decoration: none !important;
}

/* ── Payment / Place Order Error Alerts ── */
.ck-cart-card .cart-bottom-fixed .alert-warning,
.ck-cart-card .section-cart .alert-warning {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  background: #fffbeb !important;
  border: 1.5px solid #fde68a !important;
  border-radius: 14px !important;
  padding: 13px 16px !important;
  margin-top: 10px !important;
  margin-bottom: 0 !important;
  box-shadow: 0 2px 8px rgba(245,158,11,.12) !important;
  position: relative !important;
  overflow: hidden !important;
}

.ck-cart-card .cart-bottom-fixed .alert-warning::before,
.ck-cart-card .section-cart .alert-warning::before {
  content: '\f1f4' !important;
  font-family: 'Material-Design-Iconic-Font' !important;
  font-size: 18px !important;
  color: #d97706 !important;
  flex-shrink: 0 !important;
  line-height: 1.3 !important;
  margin-top: 0 !important;
}

.ck-cart-card .cart-bottom-fixed .alert-warning p,
.ck-cart-card .section-cart .alert-warning p {
  font-family: var(--font-display) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  color: #92400e !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* ── Place Order error_placeorder (red variant) ── */
.ck-cart-card .cart-bottom-fixed .alert-warning:has(p[v-for]) {
  background: #fef2f2 !important;
  border-color: #fecaca !important;
  box-shadow: 0 2px 8px rgba(225,33,20,.1) !important;
}

.ck-cart-card .cart-bottom-fixed .alert-warning:has(p[v-for])::before {
  content: '\f1f1' !important;
  color: #e12114 !important;
}

.ck-cart-card .cart-bottom-fixed .alert-warning:has(p[v-for]) p {
  color: #b91c1c !important;
}

/* ── "Please select valid payment method" — v-if="hasPayment" ── */
.ck-cart-card .cart-bottom-fixed [v-if="hasPayment"].alert-warning {
  background: #fffbeb !important;
  border-color: #fde68a !important;
}

/* ── Mobile: fixed Place Order button at bottom ── */
@media (max-width: 991px) {
  .ck-sidebar .section-cart .btn-green,
  .ck-sidebar #vue-cart .btn-green {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 18px 28px !important;
    box-shadow: 0 -4px 24px rgba(225,33,20,.25) !important;
  }
  .ck-page {
    padding-bottom: 90px !important;
  }
}

@media (max-width: 767px) {
  .ck-layout-header #top-navigation {
    padding: 0 16px !important;
    min-height: 64px !important;
  }
  .ck-nav-secure { display: none; }
}

@media (max-width: 575px) {
  .ck-layout-header #top-navigation {
    padding: 0 12px !important;
    min-height: 58px !important;
  }
}


/* ════════════════════════════════════════════════
   Hero search — red CTA button height fix (mobile)
   Not scoped to body.front-page (the class is
   conditionally added). Targets the actual rendered
   markup: #vm_home_search .flex-enabled-locate .btn
   ════════════════════════════════════════════════ */
#vm_home_search .home-search-wrap .flex-enabled-locate,
#vm_home_search .home-search-wrap .flex-enabled-locate .btn,
#vm_home_search .home-search-wrap .flex-enabled-locate button.btn-green {
  box-sizing: border-box !important;
}

@media (max-width: 575.98px) {
  #vm_home_search .home-search-wrap .flex-enabled-locate {
    width: 100% !important;
    margin-top: 10px !important;
  }
  #vm_home_search .home-search-wrap .flex-enabled-locate .btn,
  #vm_home_search .home-search-wrap .flex-enabled-locate button,
  #vm_home_search .home-search-wrap .flex-enabled-locate button.btn-green {
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    line-height: 1 !important;
    padding: 0 !important;
    border-radius: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  #vm_home_search .home-search-wrap .flex-enabled-locate .btn i,
  #vm_home_search .home-search-wrap .flex-enabled-locate button i {
    font-size: 20px !important;
    line-height: 1 !important;
  }
}

/* Mobile hero banner height override — matches/beats body.front-page specificity */
@media (max-width: 575.98px) {
  #main-search-banner,
  body.front-page #main-search-banner {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
  }
}
@media (max-width: 767px) {
  body.front-page #main-search-banner {
    height: 500px !important;
    min-height: 500px !important;
  }
}

/* Push hero content (title, input, button) down on mobile */
@media (max-width: 575.98px) {
  #main-search-banner,
  body.front-page #main-search-banner {
    align-items: flex-end !important;
  }
  #main-search-banner .banner-center,
  body.front-page #main-search-banner .banner-center {
    align-self: flex-end !important;
    padding-top: 0 !important;
    padding-bottom: 40px !important;
    margin-top: auto !important;
    margin-bottom: 0 !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  body.front-page #main-search-banner {
    align-items: flex-end !important;
  }
  body.front-page #main-search-banner .banner-center {
    align-self: flex-end !important;
    padding-top: 0 !important;
    padding-bottom: 40px !important;
    margin-top: auto !important;
    margin-bottom: 0 !important;
  }
}

/* Mobile logo height */
@media (max-width: 767px) {
  .top-logo img,
  .top-logo img.img-200,
  .footer-logo img {
    height: 75px !important;
    max-height: 75px !important;
    width: auto !important;
    max-width: none !important;
  }
  /* Accommodate taller logo in header on mobile */
  #top-navigation { min-height: 95px !important; }
  ul.top-menu     { height: 95px !important; }
  .page-content   { padding-top: 100px !important; }
  body.front-page .page-content { padding-top: 0 !important; }
  /* Auth/form pages (login, register, forgot, reset) — push form below taller header */
  .page-content .plp-wrap .plp-form-panel,
  .plp-wrap .plp-form-panel {
    padding-top: 120px !important;
  }
}
@media (max-width: 480px) {
  .plp-wrap .plp-form-panel {
    padding: 120px 20px 32px !important;
  }
}

/* Hide Sign in button in header on mobile */
@media (max-width: 767px) {
  ul.top-menu li.line-left,
  ul.top-menu li.line-left > a[href*="login"],
  ul.top-menu a[href*="login"] {
    display: none !important;
  }
}
