@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&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:   'Poppins', '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 44px; font-size: 16px; letter-spacing: 0.4px; }
.fe-btn--full { width: 100%; }

/* Icon-only pill */
.fe-btn--icon {
  width: 44px;
  height: 44px;
  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: 'Poppins', '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: sticky !important;
  top: 0;
  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;
}

/* ── HERO OVERLAP — hero image bleeds to top of viewport ── */
body.front-page #vm_home_search        { margin-top: -90px; }
body.front-page #main-search-banner    { height: calc(640px + 90px) !important; }
body.front-page #main-search-banner .banner-center { padding-top: 90px; }

/* ── Logo ── */
.top-logo {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.top-logo img.img-200 {
  max-height: 80px;
  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: 2px;
  margin-left: 20px;
}
.pnl-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--dark-3) !important;
  font-family: 'Poppins', '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); }

/* ── Right-side nav list ── */
ul.top-menu {
  display: flex !important;
  align-items: center;
  gap: 6px;
  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: 'Poppins', '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: 244px !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: 6px !important; }
ul.top-menu > li.ml-3           { margin-left: 6px !important; }

/* ── Gap between cart icon → Sign In → hamburger ── */
ul.top-menu > li.line-left      { margin-left: 15px !important; }
ul.top-menu > li.d-inline.d-lg-none,
ul.top-menu > li.ml-3.ml-xs-1  { margin-left: 15px !important; }

/* ── Responsive ── */
@media (max-width: 1199px) {
  .premium-nav-links { display: none !important; }
}
@media (max-width: 991px) {
  body.front-page #vm_home_search     { margin-top: -76px; }
  body.front-page #main-search-banner { height: calc(520px + 76px) !important; background-position: center 76px !important; }
  body.front-page #main-search-banner .banner-center { padding-top: 76px; }
  #top-navigation { padding: 0 16px; min-height: 76px; }
  ul.top-menu     { height: 76px; }
}
@media (max-width: 767px) {
  body.front-page #vm_home_search     { margin-top: -66px; }
  body.front-page #main-search-banner { height: calc(400px + 66px) !important; background-position: center 66px !important; }
  body.front-page #main-search-banner .banner-center { padding-top: 66px; }
  #top-navigation { min-height: 66px; }
  ul.top-menu     { height: 66px; }
}

/* ════════════════════════════════════════════════
   HERO BANNER
   ════════════════════════════════════════════════ */
body.front-page #main-search-banner {
  height: 640px;
  position: relative;
  background: url("../images/banner-home.jpg") center 90px / cover no-repeat;
  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: 0 20px;
}
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;
}

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

/* 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: 44px;
  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: 'Poppins', '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: 'Poppins', 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: 'Poppins', '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: 44px;
  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: 'Poppins', '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: 44px;
}
.jsh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--brand-light);
  color: var(--brand);
  font-family: 'Poppins', 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: 'Poppins', '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: 44px;
  height: 44px;
  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: 'Poppins', '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: 'Poppins', '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; }
}

/* 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: 'Poppins', 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: 'Poppins', '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: 'Poppins', 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: 'Poppins', 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: 'Poppins', 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 44px;
  border-radius: 20px;
  background: linear-gradient(135deg, #c0170d 0%, #e12114 45%, #b5230a 100%);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(225,33,20,.35);
}
.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: '🍕';
  position: absolute;
  right: 32px;
  bottom: -8px;
  font-size: 96px;
  opacity: 0.08;
  pointer-events: none;
  line-height: 1;
}
.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: 'Poppins', 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: 'Poppins', 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;
}

/* 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;
  gap: 8px;
  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; }
.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 { height: 520px; }
  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 { height: 400px; }
  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: 44px 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 { height: 340px; }
  body.front-page #main-search-banner h2 { font-size: 1.45rem; }
  .hero-stats-strip .stat-num { font-size: 1.15rem; }
  .hero-stats-strip .stat-label { font-size: 0.65rem; }
  .hiw-step { flex: 0 0 140px; }
  .hiw-step .hiw-icon-wrap { width: 72px; height: 72px; }
  .hiw-step .hiw-icon-wrap i { font-size: 24px; }
}
