@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); }
}

/* ── 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: 1.5px solid rgba(225, 33, 20, .08);
  margin-top: 0 !important;
  box-shadow:
    0 2px 8px rgba(225, 33, 20, .06),
    0 6px 24px rgba(225, 33, 20, .08);
  overflow: hidden;
  position: relative;
  margin-left: -20px !important;
  margin-right: -20px !important;
  border-radius: 0;
}



.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;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 11px 14px;
  background: #e12114;
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-top: 1px solid rgba(225, 33, 20, .12);
  transition: background .2s, gap .2s;
}

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

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

.ccn-btn-arrow {
  margin-left: auto;
  opacity: .6;
  font-size: 13px !important;
}

/* ═══════════════════════════════════════════════════════
   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
   ════════════════════════════════════════════════ */
.merchant-hero-mobile__banner {
  position: relative;
  min-height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--dark);
}

/* ── Kill old class ── */
.merchant-top-header { display: none !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;
  z-index: 1;
  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"] { fill: #e12114 !important; }
#vue-cart h5 .basket-icon [fill="#8e93a6"] { fill: rgba(225,33,20,0.45) !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 > .row.m-0 > .col-3.p-0 {
  display: none !important;
}
.list-item-rows > .row.m-0 > .col-9.p-0 {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

.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 .col-lg-8.col-md-8 {
  flex: 1 1 auto !important;
  padding: 22px 18px 22px 28px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-width: 0;
  align-items: flex-start !important;
}
.list-item-rows .col-lg-8.col-md-8 .center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.list-item-rows .col-lg-4.col-md-4 {
  flex: 0 0 auto !important;
  width: auto !important;
  padding: 22px 28px 22px 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !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: 35px !important;
  height: 35px !important;
  min-width: 35px !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: 22px !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;
  margin-left: auto !important;
}
.btn-add-plus:hover,
a.btn-add-plus:hover {
  background: #c51d12 !important;
  box-shadow: 0 4px 16px rgba(225,33,20,.35) !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: 35px !important;
  height: 35px !important;
  min-width: 35px !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;
  margin-left: auto !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: 0 4px 16px rgba(225,33,20,.35) !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; align-items: center; justify-content: flex-end; width: 100%; }

.list-item-rows .col-lg-4.col-md-4 {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  padding-right: 16px !important;
  padding-left: 0 !important;
}
.quantity-parent .quantity { display: flex; align-items: center; gap: 14px; }
.quantity-wrapper .qty-btn {
  width: 36px !important;
  height: 36px !important;
  background: #f7f6f3 !important;
  border: 1px solid #e8e6e1 !important;
  color: #374151 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  border-radius: 10px !important;
  transition: all .18s ease !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.quantity-wrapper .qty-btn:hover {
  background: #e12114 !important;
  color: #fff !important;
  border-color: #e12114 !important;
  box-shadow: 0 2px 8px rgba(225,33,20,.25) !important;
  transform: none;
}
.quantity-wrapper .quantity .qty {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: #1a1a1a;
  min-width: 26px;
  text-align: center;
}

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


/* ══════════════════════════════════════════════════
   CART PANEL — Clean Professional Card
   ══════════════════════════════════════════════════ */

.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: none;
  overflow: hidden;
  max-height: calc(100vh - 140px);
}

#vue-cart h5 {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: -.01em !important;
  text-transform: uppercase !important;
  color: #1a1a1a !important;
  background: #ffffff !important;
  margin: 0 !important;
  padding: 22px 22px 22px !important;
  border-bottom: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  position: relative !important;
}
#vue-cart h5::before {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #e12114 !important;
  box-shadow: none !important;
  display: block !important;
  flex-shrink: 0 !important;
  animation: none !important;
}

#vue-cart .d-flex.justify-content-between.align-items-center.mb-1 {
  padding: 14px 22px 8px !important;
  margin-bottom: 0 !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: 700 !important;
  color: #9ca3af !important;
  letter-spacing: .16em !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: 500 !important;
  color: #e12114 !important;
  margin: 0 !important;
  transition: opacity .15s ease;
}
#vue-cart .d-flex.justify-content-between.align-items-center.mb-1 a:hover p {
  opacity: .7;
}

.section-cart { padding: 0 20px !important; margin: 0 !important; }

.sticky-cart .section-cart {
  max-height: calc(100vh - 240px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,.07) transparent;
}
.sticky-cart .section-cart::-webkit-scrollbar { width: 3px; }
.sticky-cart .section-cart::-webkit-scrollbar-thumb { background: rgba(0,0,0,.07); border-radius: 4px; }
.sticky-cart .section-cart::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,.12); }

.section-cart .line-items {
  padding: 14px 0 !important;
  border-bottom: 1px solid #f0ede8 !important;
  margin-bottom: 0 !important;
  transition: background .15s ease;
}
.section-cart .items:last-child .line-items { border-bottom: none !important; }

.cart-image-preview .el-image {
  border-radius: 10px !important;
  overflow: hidden !important;
  background: #f7f6f3 !important;
  box-shadow: none;
}

.section-cart .line-items .col-6 p:first-child {
  font-family: var(--font-display) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  line-height: 1.4 !important;
  margin-bottom: 3px !important;
}
.section-cart .line-items .font11 {
  font-family: var(--font-display) !important;
  font-size: 11.5px !important;
  font-weight: 400 !important;
  color: #9ca3af !important;
}

.section-cart .quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.section-cart .qty-btn {
  width: 26px !important;
  height: 26px !important;
  background: #f7f6f3 !important;
  border: 1px solid #e8e6e1 !important;
  color: #374151 !important;
  border-radius: 7px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 11px !important;
  transition: all .15s ease !important;
  padding: 0 !important;
}
.section-cart .qty-btn:hover {
  background: #e12114 !important;
  color: #fff !important;
  border-color: #e12114 !important;
  box-shadow: 0 2px 6px rgba(225,33,20,.25) !important;
}
.section-cart .quantity .qty {
  font-family: var(--font-display) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  min-width: 18px !important;
  text-align: center !important;
}

.section-cart .item-remove {
  width: 24px !important;
  height: 24px !important;
  background: transparent !important;
  border: 1px solid #e8e6e1 !important;
  color: #c4c9d4 !important;
  border-radius: 7px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 11px !important;
  transition: all .15s ease !important;
  padding: 0 !important;
  margin-left: auto !important;
  margin-bottom: 4px !important;
}
.section-cart .item-remove:hover {
  background: #fef2f2 !important;
  color: #e12114 !important;
  border-color: rgba(225,33,20,.2) !important;
}

.section-cart .cart-summary {
  border-top: 1px solid #f0ede8 !important;
  padding: 16px 0 8px !important;
  margin-top: 6px !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: 800 !important;
  color: #1a1a1a !important;
  margin: 0 !important;
  letter-spacing: -.02em;
}

.section-cart .btn-green,
#vue-cart .btn-green {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: calc(100% - 40px) !important;
  margin: 14px 20px 20px !important;
  padding: 15px 20px !important;
  background: #e12114 !important;
  border: none !important;
  border-radius: 14px !important;
  font-family: var(--font-display) !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #fff !important;
  box-shadow: 0 3px 12px rgba(225,33,20,.25) !important;
  transition: background .18s ease, box-shadow .18s ease !important;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  letter-spacing: .01em;
}
.section-cart .btn-green::after,
#vue-cart .btn-green::after {
  display: none;
}
.section-cart .btn-green:hover,
#vue-cart .btn-green:hover {
  background: #c51d12 !important;
  box-shadow: 0 6px 20px rgba(225,33,20,.35) !important;
  transform: none;
  color: #fff !important;
}


/* ══ Floating cart button — brand red ══ */
.floating-cart .btn.btn-black {
  background: #e12114 !important;
  border-color: #e12114 !important;
  box-shadow: 0 4px 16px rgba(225,33,20,.3) !important;
}
.floating-cart .btn.btn-black:hover {
  background: #c51d12 !important;
  border-color: #c51d12 !important;
}

/* ══ 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-lg-8.col-md-8 { padding: 16px 14px 16px 20px !important; }
  .list-item-rows .col-lg-4.col-md-4 { padding: 16px 20px 16px 8px !important; }
  .list-item-rows h6.m-0 { font-size: 14px !important; }
  .section-cart { padding: 0 16px !important; }
  #vue-cart h5 { padding: 18px 18px 0 !important; }
}
@media (max-width: 767px) {
  .menu-center section { scroll-margin-top: 76px; }
}


/* ════════════════════════════════════════════════
   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;
}

/* ══════════════════════
   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;
}
