
  :root {
      --ue-black: #000000;
      --ue-green: #05944F;
      --ue-gray-light: #F6F6F6;
      --ue-gray: #EEEEEE;
      --ue-gray-text: #6B6B6B;
      --ue-border: #E2E2E2;
  }

  * { box-sizing: border-box; }

  /* ── NAVBAR ── */
  .ue-navbar {
      background: #fff;
      border-bottom: 1px solid var(--ue-border);
      padding: 0;
      height: 64px;
      position: sticky;
      top: 0;
      z-index: 1050;
  }

  .ue-navbar .container-fluid {
      height: 100%;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 2px 3px;
  }

  .ue-logo {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--ue-black);
      text-decoration: none;
      white-space: nowrap;
      letter-spacing: -0.5px;
  }

  .ue-logo:hover { color: var(--ue-black); }

  /* Delivery/Pickup toggle */
  .ue-mode-toggle {
      display: flex;
      background: var(--ue-gray-light);
      border-radius: 500px;
      padding: 4px;
      gap: 2px;
  }

  .ue-mode-btn {
      border: none;
      background: transparent;
      padding: 8px 16px;
      border-radius: 500px;
      font-size: 14px;
      font-weight: 500;
      color: var(--ue-gray-text);
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.2s;
  }

  .ue-mode-btn.active {
      background: #000;
      color: #fff;
  }

  /* Address pill */
  .ue-address-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--ue-gray-light);
      border-radius: 500px;
      padding: 8px 16px;
      cursor: pointer;
      border: none;
      font-size: 14px;
      font-weight: 500;
      max-width: 250px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: background 0.2s;
  }

  .ue-address-pill:hover { background: var(--ue-gray); }

  .ue-address-pill i { font-size: 16px; flex-shrink: 0; }

  /* When dropdown */
  .ue-when-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      background: var(--ue-gray-light);
      border-radius: 500px;
      padding: 8px 16px;
      border: none;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s;
  }

  .ue-when-btn:hover { background: var(--ue-gray); }

  /* Search bar */
  .ue-search {
      flex: 1;
      min-width: 0;
      position: relative;
  }

  .ue-search input {
      width: 100%;
      background: var(--ue-gray-light);
      border: none;
      border-radius: 500px;
      padding: 10px 16px 10px 42px;
      font-size: 14px;
      outline: none;
      transition: background 0.2s;
  }

  .ue-search input:focus { background: var(--ue-gray); }

  .ue-search i {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 16px;
      color: var(--ue-gray-text);
  }

  /* Nav right buttons */
  .ue-nav-right {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
  }

  .ue-cart-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      background: #000;
      color: #fff;
      border: none;
      border-radius: 500px;
      padding: 8px 16px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
  }

  .ue-cart-btn .badge {
      background: #080808;
      color: #FFF;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
  }

  .ue-signin-btn {
      background: #000;
      color: #fff;
      border: none;
      border-radius: 500px;
      padding: 8px 16px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
  }

  /* ── CATEGORIES SCROLLBAR ── */
  .ue-categories-bar {
      border-bottom: 1px solid var(--ue-border);
      padding: 16px 0 0;
      position: sticky;
      top: 64px;
      background: #fff;
      z-index: 1040;
  }

  .ue-categories-scroll {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      scrollbar-width: none;
      padding-bottom: 0;
  }

  .ue-categories-scroll::-webkit-scrollbar { display: none; }

  .ue-cat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      padding: 8px 12px 12px;
      cursor: pointer;
      text-decoration: none;
      color: var(--ue-black);
      border-bottom: 2px solid transparent;
      flex-shrink: 0;
      transition: border-color 0.2s;
      min-width: 76px;
  }

  .ue-cat-item:hover { border-bottom-color: #000; color: #000; }
  .ue-cat-item.active { border-bottom-color: #000; font-weight: 600; }

  .ue-cat-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      background: var(--ue-gray-light);
  }

  .ue-cat-item span {
      font-size: 12px;
      font-weight: 500;
      white-space: nowrap;
  }

  /* ── SORT / FILTER BAR ── */
  .ue-filter-bar {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      scrollbar-width: none;
      flex-wrap: nowrap;
  }

  .ue-filter-bar::-webkit-scrollbar { display: none; }

  .ue-filter-pill {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      border: 1px solid var(--ue-border);
      border-radius: 500px;
      font-size: 14px;
      font-weight: 500;
      background: #fff;
      cursor: pointer;
      white-space: nowrap;
      flex-shrink: 0;
      transition: all 0.2s;
  }

  .ue-filter-pill:hover { background: var(--ue-gray-light); }
  .ue-filter-pill.active { background: #000; color: #fff; border-color: #000; }

  /* ── PROMO BANNER ── */
  .ue-promo-banner {
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 32px;
      position: relative;
      background: linear-gradient(135deg, #276148, #05944F);
      display: flex;
      align-items: center;
      min-height: 180px;
  }

  .ue-promo-banner .promo-content {
      padding: 32px;
      color: #fff;
      flex: 1;
  }

  .ue-promo-banner h2 {
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 8px;
  }

  .ue-promo-banner p {
      font-size: 14px;
      opacity: 0.9;
      margin-bottom: 16px;
  }

  .ue-promo-banner .btn-promo {
      background: #fff;
      color: #000;
      border: none;
      border-radius: 500px;
      padding: 10px 24px;
      font-weight: 700;
      font-size: 14px;
  }

  .ue-promo-banner .promo-img {
      width: 220px;
      height: 100%;
      object-fit: cover;
      flex-shrink: 0;
  }

  /* ── SECTION HEADER ── */
  .ue-section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
      margin-top: 8px;
  }

  .ue-section-header h2 {
      font-size: 24px;
      font-weight: 800;
      margin: 0;
      letter-spacing: -0.3px;
  }

  .ue-section-header .see-all {
      font-size: 14px;
      font-weight: 500;
      color: var(--ue-black);
      text-decoration: none;
      white-space: nowrap;
  }

  .ue-section-header .see-all:hover { text-decoration: underline; }

  /* ── HORIZONTAL SCROLL SECTION ── */
  .ue-hscroll {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      scrollbar-width: none;
      padding-bottom: 8px;
      margin-bottom: 32px;
  }

  .ue-hscroll::-webkit-scrollbar { display: none; }

  /* ── RESTAURANT CARD ── */
  .ue-card {
      border-radius: 12px;
      overflow: hidden;
      text-decoration: none;
      color: var(--ue-black);
      display: flex;
      flex-direction: column;
      background: #fff;
      transition: none;
      cursor: pointer;
  }

  .ue-card:hover { color: var(--ue-black); }

  .ue-hscroll .ue-card {
      min-width: 280px;
      max-width: 280px;
      flex-shrink: 0;
  }

  .ue-card-img {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      overflow: hidden;
      border-radius: 12px;
  }

  .ue-card-img img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
  }

  .ue-card:hover .ue-card-img img { transform: scale(1.03); }

  .ue-card-img .ue-badge-promo {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--ue-green);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 500px;
  }

  .ue-card-img .ue-badge-time {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: rgba(0,0,0,0.75);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 500px;
  }

  .ue-card-img .ue-fav-btn {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255,255,255,0.9);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 16px;
      transition: background 0.2s;
  }

  .ue-card-img .ue-fav-btn:hover { background: #fff; }

  .ue-card-body {
      padding: 12px 4px 4px;
  }

  .ue-card-title-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 8px;
  }

  .ue-card-title-row h3 {
      font-size: 16px;
      font-weight: 600;
      margin: 0;
      line-height: 1.3;
  }

  .ue-card-rating {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--ue-gray-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
  }

  .ue-card-meta {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-top: 4px;
      font-size: 14px;
      color: var(--ue-gray-text);
  }

  .ue-card-meta .dot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--ue-gray-text);
  }

  .ue-delivery-fee {
      font-size: 14px;
      color: var(--ue-gray-text);
      margin-top: 2px;
  }

  .ue-delivery-fee .free {
      color: var(--ue-green);
      font-weight: 600;
  }

  /* ── GRID LAYOUT ── */
  .ue-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px 16px;
      margin-bottom: 40px;
  }

  @media (max-width: 1199.98px) { .ue-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 991.98px)  { .ue-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 575.98px)  { .ue-grid { grid-template-columns: 1fr; } }

  /* ── FOOTER ── */
  .ue-footer {
      background: #000;
      color: #fff;
      padding: 48px 0 24px;
  }

  .ue-footer h5 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 16px;
  }

  .ue-footer a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      font-size: 14px;
      display: block;
      padding: 4px 0;
      transition: color 0.2s;
  }

  .ue-footer a:hover { color: #fff; }

  .ue-footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 24px;
      margin-top: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
  }

  .ue-footer-logo {
      font-size: 1.4rem;
      font-weight: 800;
      color: #fff;
  }

  .ue-footer .social-links {
      display: flex;
      gap: 12px;
  }

  .ue-footer .social-links a {
      display: flex;
      width: 36px;
      height: 36px;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      font-size: 16px;
      padding: 0;
  }

  .ue-footer .social-links a:hover { background: rgba(255,255,255,0.25); }

  .app-badge {
      display: inline-block;
      background: rgba(255,255,255,0.12);
      border-radius: 8px;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      transition: background 0.2s;
  }

  .app-badge:hover { background: rgba(255,255,255,0.2); color: #fff; }

  .app-badge i { font-size: 18px; vertical-align: -3px; margin-right: 6px; }

  /* ── MOBILE RESPONSIVE ── */
  @media (max-width: 991.98px) {
      .ue-address-pill { display: none; }
      .ue-when-btn { display: none; }
      .ue-promo-banner .promo-img { display: none; }
      .ue-promo-banner h2 { font-size: 22px; }
  }

  @media (max-width: 767.98px) {
      .ue-navbar .container-fluid { gap: 10px; }

      .ue-hscroll .ue-card {
          min-width: 240px;
          max-width: 240px;
      }

      .ue-promo-banner .promo-content { padding: 20px; }
      .ue-promo-banner h2 { font-size: 20px; }
  }

  @media (max-width: 575.98px) {
      .ue-cat-icon { width: 40px; height: 40px; font-size: 18px; }
      .ue-cat-item { min-width: 64px; padding: 6px 8px 10px; }
      .ue-cat-item span { font-size: 11px; }
  }

  /* ── MOBILE BOTTOM NAV ── */
  .ue-mobile-nav {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #fff;
      border-top: 1px solid var(--ue-border);
      z-index: 1050;
      padding: 6px 0 2px;
  }

  .ue-mobile-nav a {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      text-decoration: none;
      color: var(--ue-gray-text);
      font-size: 10px;
      font-weight: 500;
      padding: 4px 0;
  }

  .ue-mobile-nav a.active { color: #000; }
  .ue-mobile-nav a i { font-size: 20px; }

  @media (max-width: 767.98px) {
      .ue-mobile-nav { display: flex; }
      body { padding-bottom: 60px; }
      .ue-nav-right .ue-signin-btn span { display: none; }
  }