:root {
      --bg: #f5f5f1;
      --page-background: linear-gradient(180deg, #f8edbd 0%, var(--bg) 150px, var(--bg) 100%);
      --surface: #ffffff;
      --surface-soft: #f8f8f4;
      --text: #171714;
      --text-secondary: #454942;
      --muted: #626963;
      --primary: #171714;
      --primary-strong: #000000;
      --primary-soft: #e7f9ed;
      --card: #ffffff;
      --line: #deddd6;
      --line-strong: #cbc9bf;
      --ok: #108a43;
      --warn: #a66b00;
      --danger: #b63b2b;
      --yellow: #ffd84d;
      --yellow-strong: #ffc928;
      --yellow-soft: #fff7d0;
      --header-warm: #f6d866;
      --accent: #bbf7cf;
      --accent-strong: #80e7a2;
      --coral: #ff7a59;
      --ring: 0 0 0 4px rgba(255, 216, 77, 0.22);
      --shadow: 0 1px 2px rgba(23, 23, 20, 0.08), 0 4px 12px rgba(23, 23, 20, 0.07);
      --shadow-hover: 0 2px 4px rgba(23, 23, 20, 0.10), 0 8px 20px rgba(23, 23, 20, 0.10);
      --radius: 11px;
      --radius-sm: 10px;
      --radius-lg: 16px;
      --radius-control: 10px;
      --radius-card: 16px;
      --radius-panel: 22px;
      --radius-pill: 999px;
      --space-1: 4px;
      --space-2: 8px;
      --space-3: 12px;
      --space-4: 16px;
      --space-5: 20px;
      --space-6: 24px;
      --font-xs: 11px;
      --font-sm: 13px;
      --font-md: 14px;
      --font-lg: 16px;
      --font-xl: 20px;
      --font-2xl: 24px;
      --line-tight: 1.25;
      --line-normal: 1.5;
      --control-height-sm: 36px;
      --control-height: 42px;
      --control-height-lg: 44px;
      --shadow-card: 0 1px 2px rgba(23, 23, 20, 0.08), 0 4px 12px rgba(23, 23, 20, 0.07);
      --shadow-modal: 0 12px 32px rgba(23, 23, 20, 0.20);
      --page-max: 1160px;
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: "Segoe UI", "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
      color: var(--text);
      background: var(--page-background);
      min-height: 100vh;
      line-height: 1.5;
      padding-bottom: calc(74px + env(safe-area-inset-bottom));
    }
    body.td-template-home { --page-max: 1160px; }
    body.td-template-list { --page-max: 1040px; }
    body.td-template-form { --page-max: 980px; }
    body.td-template-profile { --page-max: 1040px; }
    a { color: inherit; text-decoration: none; }
    .topbar {
      display: none;
    }
    .topbar-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      position: relative;
    }
    .topbar-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      min-width: 0;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 0.2px;
      min-width: 0;
    }
    .brand-title {
      display: inline-flex;
      align-items: baseline;
      gap: 10px;
      min-width: 0;
    }
    .brand-title > a {
      flex-shrink: 0;
    }
    .brand-slogan {
      color: #3d6b50;
      font-size: 13px;
      font-weight: 600;
      font-family: "STKaiti", "KaiTi", "STSong", "SimSun", serif;
      letter-spacing: 0.4px;
      white-space: nowrap;
      opacity: .92;
    }
    .mobile-menu-btn {
      display: inline-flex;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      color: var(--text);
      width: 34px;
      height: 34px;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      line-height: 1;
      cursor: pointer;
      flex-shrink: 0;
      position: absolute;
      right: 16px;
      top: 14px;
      z-index: 120;
    }
    .mobile-menu-btn:hover {
      border-color: #c8c6b8;
      transform: translateY(-1px);
    }
    .mobile-menu-panel {
      display: flex;
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      min-width: 210px;
      max-width: min(86vw, 260px);
      margin-top: 0;
      gap: 8px;
      flex-direction: column;
      align-items: stretch;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      padding: 10px;
      transform: translateX(22px);
      opacity: 0;
      pointer-events: none;
      transition: all .2s ease;
      z-index: 100;
    }
    .mobile-menu-panel.open {
      transform: translateX(0);
      opacity: 1;
      pointer-events: auto;
    }
    .mobile-menu-panel .pill { width: 100%; text-align: left; }
    .brand-logo {
      width: 34px;
      height: 34px;
      border-radius: var(--radius);
      object-fit: cover;
      box-shadow: var(--shadow);
      background: #fff;
      border: 1px solid var(--line);
    }
    .brand-badge {
      width: 34px;
      height: 34px;
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, var(--accent) 0 50%, #171714 50% 100%);
      box-shadow: inset 0 0 0 1px rgba(23, 23, 20, 0.16), var(--shadow);
    }
    .nav {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .pill {
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 7px 12px;
      font-size: 14px;
      background: #fff;
      color: #34342f;
      transition: all .2s;
    }
    .pill:hover {
      border-color: #bfbcae;
      background: #fbfaf2;
      transform: translateY(-1px);
    }
    .pill.primary {
      background: var(--yellow);
      color: #171714;
      border-color: transparent;
      box-shadow: 0 8px 18px rgba(255, 201, 40, 0.24);
    }
    .pill.primary:hover { background: var(--yellow-strong); }
    .container {
      max-width: var(--page-max);
      margin: 12px auto 20px;
      padding: 0 16px 40px;
    }
    .hero {
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 20px 22px;
      margin-bottom: 16px;
      position: relative;
      overflow: hidden;
    }
    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent), #f4d35e, var(--coral));
      opacity: 1;
    }
    .hero h1 {
      margin: 0 0 8px;
      font-size: clamp(22px, 3.5vw, 28px);
      letter-spacing: 0;
    }
    .hero p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: var(--space-4);
    }
    .grid.login-grid {
      grid-template-columns: minmax(300px, 1.25fr) minmax(240px, .9fr);
      align-items: start;
    }
    .card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-card);
      padding: var(--space-4);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
      border-color: var(--line-strong);
    }
    .card h3 {
      margin: 0 0 8px;
      font-size: 17px;
      letter-spacing: 0;
    }
    .search-card {
      padding: 0;
      align-items: stretch;
      gap: 8px;
    }
    .search-card input {
      border-color: var(--line);
      background: #fff;
      border-radius: 999px;
      box-shadow: 0 1px 2px rgba(23, 23, 20, 0.04);
    }
    .search-card .btn {
      min-width: 112px;
      justify-content: center;
      border-radius: 999px;
      background: var(--yellow);
      color: #171714;
      box-shadow: 0 8px 18px rgba(255, 201, 40, 0.24);
    }
    .search-card .btn:hover {
      background: var(--yellow-strong);
    }
    .home-search-card {
      margin: -4px 0 10px;
      display: block;
    }
    .home-search-field {
      position: relative;
      display: block;
      width: 100%;
    }
    .home-search-field input {
      width: 100%;
      padding: 9px 12px;
      padding-right: 44px;
      min-height: 38px;
    }
    .home-search-submit {
      position: absolute;
      right: 4px;
      top: 50%;
      width: 32px;
      height: 32px;
      transform: translateY(-50%);
      border: 0;
      border-radius: 50%;
      background: var(--yellow);
      cursor: pointer;
      box-shadow: 0 5px 12px rgba(255, 201, 40, .22);
    }
    .icon-round-button,
    .home-locate-icon,
    .store-back-pill,
    .dish-add-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .icon-round-button svg,
    .home-locate-icon svg,
    .store-back-pill svg,
    .dish-add-button svg,
    .home-category-icon svg {
      width: 19px;
      height: 19px;
      display: block;
      stroke: currentColor;
      stroke-width: 2.15;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }
    .icon-round-button img,
    .home-locate-icon img,
    .store-back-pill img,
    .dish-add-button img,
    .home-category-icon img {
      width: 19px;
      height: 19px;
      display: block;
    }
    .home-mobile-head {
      display: grid;
      gap: 8px;
      margin-bottom: 10px;
    }
    .home-location-line {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 8px;
    }
    .home-location-main {
      display: grid;
      gap: 2px;
      min-width: 0;
      flex: 1 1 auto;
    }
    .home-location-label {
      font-size: 11px;
      color: var(--muted);
    }
    .home-location-value {
      font-size: 15px;
      font-weight: 800;
      color: var(--text);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    a.home-location-value {
      text-decoration: none;
    }
    .home-location-status {
      display: none;
      font-size: 12px;
      color: var(--muted);
      line-height: 1.25;
    }
    .home-locate-icon {
      flex: 0 0 auto;
      border: 1px solid #efc836;
      background: var(--yellow);
      color: #171714;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      font-weight: 800;
      cursor: pointer;
      box-shadow: 0 6px 14px rgba(255, 201, 40, 0.2);
      margin-top: 2px;
    }
    .home-locate-icon:disabled {
      opacity: .68;
      cursor: not-allowed;
      box-shadow: none;
    }
    .campus-banner {
      min-height: 96px;
      border-radius: var(--radius);
      margin: 8px 6px 12px;
      padding: 14px 16px;
      background: linear-gradient(135deg, rgba(255, 246, 216, .98), rgba(232, 255, 245, .98));
      box-shadow: var(--shadow);
      border: 1px solid rgba(255, 255, 255, .72);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      overflow: hidden;
      position: relative;
    }
    .campus-banner::after {
      content: "";
      position: absolute;
      right: -38px;
      bottom: -62px;
      width: 132px;
      height: 132px;
      border-radius: 50%;
      background: rgba(255, 201, 40, .22);
    }
    .campus-banner-copy {
      position: relative;
      z-index: 1;
      min-width: 0;
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .campus-notice-link {
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #171714;
      text-decoration: none;
      text-align: center;
      font-size: 20px;
      font-weight: 900;
      line-height: 1.1;
    }
    .campus-banner-logo {
      position: relative;
      z-index: 1;
      width: 62px;
      height: 62px;
      object-fit: cover;
      border-radius: 16px;
      background: #fff;
      border: 2px solid rgba(255, 255, 255, .9);
      box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
      flex: 0 0 auto;
    }
    .delivery-wave-section {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 1px 2px rgba(23, 23, 20, .05);
      padding: 8px 10px 9px;
      margin: 0 2px 12px;
      overflow: hidden;
    }
    .campus-area-switch {
      flex: 0 0 auto;
      display: inline-grid;
      grid-template-columns: repeat(2, minmax(0, auto));
      gap: 2px;
      padding: 3px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 4px 12px rgba(23, 23, 20, .06);
    }
    .campus-area-option {
      min-height: 30px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      border: 0;
      background: transparent;
      color: #272721;
      padding: 5px 10px;
      font-size: 13px;
      font-weight: 900;
      cursor: pointer;
      white-space: nowrap;
      transition: background .18s ease, box-shadow .18s ease;
    }
    .campus-area-option.active {
      background: var(--yellow);
      box-shadow: 0 4px 10px rgba(255, 201, 40, .24);
    }
    .delivery-wave-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 8px;
    }
    .delivery-wave-head h3 {
      margin: 0;
      font-size: 17px;
    }
    .delivery-wave-head p {
      margin: 4px 0 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }
    .delivery-wave-head > span {
      flex: 0 0 auto;
      border-radius: 6px;
      background: #fff6d8;
      color: #755100;
      padding: 3px 6px;
      font-size: 11px;
      font-weight: 800;
      border: 0;
    }
    .delivery-slot-row {
      display: flex;
      gap: 7px;
      overflow-x: auto;
      padding: 2px 2px 7px;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }
    .delivery-slot-row::-webkit-scrollbar {
      display: none;
    }
    .delivery-slot-card {
      position: relative;
      flex: 0 0 76px;
      min-height: 62px;
      border: 1px solid #e4e0d5;
      background: linear-gradient(180deg, #fff 0%, #fcfbf6 100%);
      color: #171714;
      border-radius: 8px;
      padding: 7px 8px;
      text-align: center;
      display: grid;
      justify-items: center;
      gap: 5px;
      cursor: pointer;
      scroll-snap-align: start;
      transition: all .18s ease;
    }
    .delivery-slot-card.active {
      background: linear-gradient(145deg, #fffaf0 0%, #fff1bd 100%);
      border-color: #f1c94a;
      color: #171714;
      box-shadow: 0 4px 10px rgba(126, 91, 0, .07), inset 0 1px 0 rgba(255,255,255,.72);
      transform: none;
    }
    .delivery-slot-card.active::after {
      content: "✓";
      position: absolute;
      top: 4px;
      right: 4px;
      width: 18px;
      height: 18px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #f5bd00;
      border: 2px solid #fff;
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      line-height: 1;
      box-shadow: 0 3px 8px rgba(142, 102, 0, .16);
    }
    .delivery-slot-time {
      font-size: 18px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: 0;
    }
    .delivery-slot-label {
      font-size: 10px;
      line-height: 1;
      color: var(--muted);
      font-weight: 800;
    }
    .delivery-slot-desc,
    .delivery-slot-cutoff {
      font-size: 11px;
      line-height: 1.25;
    }
    .delivery-slot-desc {
      color: var(--muted);
      font-weight: 800;
    }
    .delivery-slot-cutoff {
      color: var(--muted);
    }
    .delivery-slot-card.active .delivery-slot-cutoff {
      color: #755100;
    }
    .delivery-slot-card.active .delivery-slot-label {
      color: #755100;
    }
    .delivery-slot-card.active .delivery-slot-desc {
      color: #5f4a00;
    }
    .store-card-link.store-closed-selected {
      opacity: .82;
    }
    .store-slot-note {
      color: #b24b1f;
      font-weight: 700;
    }
    .home-category-row {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
      margin: 8px 0 14px;
    }
    .home-category {
      min-height: 58px;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #fff;
      color: #2f2f2a;
      font-weight: 800;
      font-size: 14px;
      box-shadow: 0 1px 2px rgba(23, 23, 20, 0.04);
      cursor: pointer;
    }
    .home-category-icon {
      width: 24px;
      height: 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: currentColor;
    }
    .home-category-icon svg,
    .home-category-icon img {
      width: 22px;
      height: 22px;
    }
    .home-category.active {
      background: var(--yellow);
      border-color: #efc836;
      box-shadow: 0 8px 18px rgba(255, 201, 40, 0.2);
    }
    .section-title-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin: 10px 0;
    }
    .section-title-row h2 {
      margin: 0;
      font-size: 18px;
      letter-spacing: 0;
    }
    .store-card-link.filter-hidden,
    .home-empty-filter[hidden] {
      display: none;
    }
    .bottom-tabbar {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      display: grid;
      gap: 2px;
      padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
      background: rgba(255, 255, 255, 0.98);
      border-top: 1px solid var(--line);
      box-shadow: 0 -5px 18px rgba(23, 23, 20, 0.08);
      backdrop-filter: blur(12px);
      z-index: 80;
    }
    .bottom-tabbar.tabs-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .bottom-tabbar.tabs-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .bottom-tab {
      min-height: 44px;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3px;
      padding: 5px 4px;
      border-radius: 999px;
      color: #58584f;
      font-size: 11px;
      font-weight: 700;
      text-align: center;
      line-height: 1.15;
      transition: all .18s ease;
    }
    .tab-icon {
      position: relative;
      width: 24px;
      height: 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: currentColor;
    }
    .tab-icon svg {
      width: 22px;
      height: 22px;
      display: block;
      stroke: currentColor;
      stroke-width: 2.15;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }
    .tab-icon img {
      width: 22px;
      height: 22px;
      display: block;
    }
    .bottom-tab-dot {
      position: absolute;
      top: -2px;
      right: -2px;
      width: 7px;
      height: 7px;
      border: 2px solid #fff;
      border-radius: 50%;
      background: #e54832;
      box-sizing: content-box;
    }
    .bottom-tab > span:last-child {
      min-height: 13px;
      display: block;
    }
    .bottom-tab:hover {
      background: var(--yellow-soft);
      color: var(--text);
    }
    .bottom-tab.active {
      background: var(--yellow);
      color: #171714;
      box-shadow: inset 0 0 0 1px rgba(23, 23, 20, 0.08), 0 6px 16px rgba(218, 166, 0, .14);
    }
    .container.page-loading {
      opacity: .84;
      pointer-events: none;
      transition: opacity .1s ease;
    }
    .container.page-enter {
      animation: page-enter .16s ease-out;
    }
    @keyframes page-enter {
      from { opacity: .72; transform: translateY(3px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .route-loading-bar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      z-index: 120;
      background: linear-gradient(90deg, var(--yellow) 0%, #fff4a8 50%, var(--yellow) 100%);
      transform: scaleX(0);
      transform-origin: left center;
      opacity: 0;
      transition: transform .18s ease, opacity .18s ease;
    }
    .route-loading-bar.active {
      transform: scaleX(.82);
      opacity: 1;
    }
    body.is-navigating {
      cursor: progress;
    }
    .login-primary {
      border-color: #bfe9ca;
      background: linear-gradient(180deg, #ffffff 0%, #f4fff7 100%);
    }
    .login-secondary,
    .admin-entry {
      min-height: 164px;
    }
    .login-page-shell {
      width: min(100%, 440px);
      margin: 26px auto 10px;
    }
    .login-compact-card {
      padding: 34px 36px 28px;
      border: 1px solid #deddd5;
      border-radius: 24px;
      background: #fff;
      box-shadow: 0 14px 38px rgba(23, 23, 20, .10);
    }
    .login-compact-card:hover {
      transform: none;
      border-color: #deddd5;
      box-shadow: 0 14px 38px rgba(23, 23, 20, .10);
    }
    .login-compact-head {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 29px;
      text-align: center;
    }
    .login-platform-logo {
      width: 82px;
      height: 82px;
      margin-bottom: 16px;
      object-fit: contain;
      border-radius: 18px;
    }
    .login-compact-head h1 {
      margin: 0 0 11px;
      color: #171714;
      font-size: 25px;
      line-height: 1.2;
      font-weight: 900;
    }
    .login-campus-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      min-height: 27px;
      padding: 4px 10px 4px 6px;
      overflow: hidden;
      border: 1px solid #dfddd3;
      border-radius: 999px;
      background: #fafaf7;
      color: #17558a;
      font-size: 11px;
      line-height: 1;
      white-space: nowrap;
    }
    .login-sztu-emblem {
      position: relative;
      width: 15px;
      height: 17px;
      flex: 0 0 15px;
      overflow: hidden;
    }
    .login-sztu-emblem img {
      position: absolute;
      left: -1px;
      top: -2px;
      width: 91px;
      height: 20px;
      max-width: none;
    }
    .login-field {
      margin: 0 0 17px;
    }
    .login-field label {
      margin-bottom: 8px;
      color: #42433d;
      font-size: 13px;
      font-weight: 800;
    }
    .login-field input {
      width: 100%;
      min-height: 47px;
      border: 1px solid #d5d4cc;
      border-radius: 12px;
      background: #fbfbf8;
    }
    .login-field input:focus {
      border-color: #d6a900;
      background: #fff;
      box-shadow: 0 0 0 3px rgba(255, 201, 40, .15);
    }
    .login-code-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 112px;
      gap: 10px;
    }
    .login-code-button {
      min-height: 47px;
      padding: 0 12px;
      border: 1px solid #ded6b7;
      border-radius: 12px;
      background: #fff8dc;
      color: #70540d;
      font-size: 13px;
      font-weight: 800;
      cursor: pointer;
    }
    .login-code-button:hover {
      border-color: #d4bd61;
      background: #fff2bd;
    }
    .login-code-button:disabled {
      cursor: not-allowed;
      opacity: .62;
    }
    .login-code-hint {
      margin: 7px 0 0;
      color: #85867f;
      font-size: 11px;
      line-height: 1.4;
    }
    .login-submit {
      width: 100%;
      min-height: 48px;
      margin-top: 2px;
      border-radius: 12px;
      background: var(--yellow);
      color: #171714;
      font-size: 15px;
      box-shadow: 0 7px 16px rgba(190, 145, 0, .17);
    }
    .login-register-hint {
      margin: 10px 0 0;
      color: #85867f;
      text-align: center;
      font-size: 11px;
      line-height: 1.5;
    }
    .login-method-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 25px 0 17px;
      color: #9a9b94;
      font-size: 11px;
      white-space: nowrap;
    }
    .login-method-divider::before,
    .login-method-divider::after {
      content: "";
      height: 1px;
      flex: 1;
      background: #e8e7e0;
    }
    .login-wechat-form {
      display: flex;
      justify-content: center;
    }
    .login-wechat-entry {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 7px;
      padding: 2px 18px;
      border: 0;
      background: transparent;
      color: #4b4d47;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
    }
    .login-wechat-entry img {
      width: 42px;
      height: 42px;
    }
    .login-wechat-entry:hover {
      color: #07a951;
    }
    .login-agreement {
      margin: 21px 0 0;
      color: #969791;
      text-align: center;
      font-size: 10px;
      line-height: 1.55;
    }
    .muted {
      color: var(--muted);
      font-size: 13px;
    }
    .row {
      display: flex;
      gap: 10px;
      align-items: center;
      flex-wrap: wrap;
    }
    .space-between { justify-content: space-between; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid transparent;
      border-radius: var(--radius-control);
      padding: 10px 14px;
      background: var(--primary);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0;
      cursor: pointer;
      box-shadow: 0 8px 18px rgba(23, 23, 20, 0.16);
      transition: all .2s;
    }
    .btn:disabled {
      cursor: not-allowed;
      opacity: .58;
      transform: none;
      box-shadow: none;
    }
    .btn:active,
    .pill:active,
    .bottom-tab:active {
      transform: scale(.98);
    }
    .btn.is-loading,
    .dish-add-button.is-loading,
    button.is-loading {
      cursor: progress;
      opacity: .72;
      pointer-events: none;
    }
    .btn.is-loading::after,
    button.is-loading::after {
      content: "";
      width: 12px;
      height: 12px;
      margin-left: 7px;
      border: 2px solid currentColor;
      border-right-color: transparent;
      border-radius: 50%;
      animation: spin .7s linear infinite;
    }
    .dish-add-button.is-loading::after {
      margin-left: 0;
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    .btn:hover {
      background: var(--primary-strong);
      transform: translateY(-1px);
    }
    .btn.secondary {
      background: #fff;
      color: var(--text);
      border: 1px solid var(--line);
      box-shadow: none;
    }
    .btn.secondary:hover { background: #f2f1e8; border-color: #c8c6b8; }
    .btn.ok {
      background: #0f7a3f;
      box-shadow: 0 8px 16px rgba(16, 138, 67, 0.18);
    }
    .btn.ok:hover { background: #0b6333; }
    .btn.danger {
      background: var(--danger);
      box-shadow: 0 8px 14px rgba(182, 59, 43, 0.18);
    }
    .btn.danger:hover { background: #963022; }
    input, textarea, select {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: var(--radius-control);
      padding: 10px 12px;
      min-height: var(--control-height);
      font-size: 14px;
      outline: none;
      color: var(--text);
      transition: border-color .2s, box-shadow .2s, background-color .2s;
      background: #fff;
    }
    input:focus, textarea:focus, select:focus {
      border-color: var(--yellow-strong);
      box-shadow: var(--ring);
      background: #fff;
    }
    label {
      font-size: 13px;
      margin-bottom: 6px;
      display: block;
      color: #43433d;
    }
    .field { margin-bottom: 12px; }
    .form-note {
      margin-top: 4px;
      color: var(--muted);
      font-size: 12px;
    }
    .merchant-hours-form {
      display: grid;
      gap: 10px;
    }
    .merchant-hours-fields {
      display: grid;
      grid-template-columns: 1fr 1fr minmax(220px, 1.35fr);
      gap: 10px;
      align-items: end;
    }
    .merchant-hours-fields .field {
      margin-bottom: 0;
    }
    .merchant-dish-toolbar {
      align-items: flex-start;
      margin-bottom: 10px;
    }
    .merchant-dish-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 10px;
    }
    .merchant-dish-card {
      position: relative;
      display: grid;
      gap: 10px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      padding: 12px;
      box-shadow: 0 1px 2px rgba(23, 23, 20, 0.04);
    }
    .merchant-dish-card-head {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      align-items: flex-start;
    }
    .merchant-dish-card h4 {
      margin: 0 0 4px;
      font-size: 16px;
      line-height: 1.25;
    }
    .merchant-dish-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .merchant-dish-note {
      color: var(--muted);
      font-size: 12px;
      min-height: 18px;
      overflow-wrap: anywhere;
    }
    .merchant-dish-actions {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      align-items: center;
      padding-top: 8px;
      border-top: 1px solid var(--line);
    }
    .merchant-dish-actions .btn,
    .merchant-dish-actions .pill {
      min-height: 34px;
      padding: 7px 11px;
      font-size: 13px;
    }
    .merchant-dish-check {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 1;
      padding: 6px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 1px 4px rgba(23, 23, 20, .08);
    }
    .merchant-dish-form-card {
      max-width: 880px;
    }
    .merchant-dish-form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 12px;
    }
    .merchant-dish-form-grid .field {
      margin-bottom: 0;
    }
    .merchant-dish-form-wide {
      grid-column: 1 / -1;
    }
    .dish-tag-picker {
      display: grid;
      gap: 10px;
      margin-top: 7px;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface-soft);
    }
    .dish-tag-group {
      display: grid;
      grid-template-columns: 76px minmax(0, 1fr);
      gap: 8px;
      align-items: start;
    }
    .dish-tag-group-title {
      padding-top: 7px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }
    .dish-tag-options {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .dish-tag-option {
      position: relative;
      cursor: pointer;
    }
    .dish-tag-option input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }
    .dish-tag-option span {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 5px 10px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
      color: var(--muted);
      font-size: 12px;
      font-weight: 650;
      transition: border-color .16s ease, background .16s ease, color .16s ease;
    }
    .dish-tag-option input:checked + span {
      border-color: #efbd28;
      background: #fff4c7;
      color: #5f4700;
    }
    .dish-tag-option input:disabled + span {
      opacity: .45;
      cursor: not-allowed;
    }
    .dish-tag-summary {
      color: var(--muted);
      font-size: 12px;
      text-align: right;
    }
    @media (max-width: 640px) {
      .dish-tag-group { grid-template-columns: 1fr; gap: 5px; }
      .dish-tag-group-title { padding-top: 0; }
    }
    .option-group-card {
      margin-bottom: 12px;
      background: var(--surface-soft);
      border-style: dashed;
    }
    .option-group-head {
      margin-bottom: 10px;
      align-items: flex-start;
    }
    .option-choice-row {
      align-items: flex-end;
      margin-bottom: 10px;
      padding: 10px 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }
    .option-choice-main {
      flex: 1;
      min-width: 180px;
      margin: 0;
    }
    .option-price-field {
      width: 170px;
      margin: 0;
    }
    .option-add-row {
      margin-top: 8px;
      align-items: center;
      justify-content: flex-start;
    }
    .option-add-btn {
      min-width: 0;
      padding-left: 12px;
      padding-right: 12px;
    }
    .option-pill-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 12px;
    }
    .option-pill-list.text-options {
      grid-template-columns: repeat(3, minmax(72px, max-content));
      justify-content: start;
    }
    .option-pill-list.priced-options {
      grid-template-columns: repeat(2, minmax(118px, max-content));
      justify-content: start;
    }
    .option-pill {
      display: block;
      margin: 0;
      cursor: pointer;
      min-width: 0;
    }
    .option-pill input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
      width: 0;
      height: 0;
    }
    .option-pill-body {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      min-height: 38px;
      border: 1px solid #d8d8d8;
      border-radius: 8px;
      padding: 7px 14px;
      background: #fff;
      color: #222;
      font-size: 14px;
      line-height: 1.2;
      transition: all .2s ease;
    }
    .option-pill-list.text-options .option-pill-body {
      min-width: 74px;
      min-height: 38px;
      justify-content: center;
      padding: 7px 12px;
    }
    .option-pill-list.priced-options .option-pill-body {
      min-width: 118px;
      min-height: 38px;
      padding: 7px 12px;
    }
    .option-pill input:checked + .option-pill-body {
      border-color: #ff7a00;
      background: #fffaf2;
      color: #ff7a00;
      box-shadow: none;
    }
    .option-pill-price {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #ff4d2f;
      font-weight: 700;
      white-space: nowrap;
    }
    .option-pill-price::before {
      content: "";
      width: 1px;
      height: 18px;
      background: #dedede;
      display: inline-block;
    }
    .dish-option-group-card {
      margin: 0;
      padding: 12px 20px 18px;
      background: #fff;
    }
    #dish-option-title {
      font-size: 22px;
      line-height: 1.25;
      font-weight: 900;
    }
    #dish-option-subtitle {
      margin-top: 4px;
      font-size: 13px;
    }
    .dish-option-group-title {
      color: #888;
      font-size: 15px;
      font-weight: 800;
      line-height: 1.25;
    }
    .option-selected-line {
      position: sticky;
      bottom: 72px;
      z-index: 1;
      padding: 10px 20px;
      background: rgba(255, 255, 255, 0.96);
      border-top: 1px solid #f0f0f0;
      color: #666;
      font-size: 14px;
      line-height: 1.35;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .option-total-block .price {
      color: #111;
      font-size: 24px;
      font-weight: 900;
    }
    .option-add-cart-btn {
      min-height: 44px;
      border-radius: 8px;
      background: var(--yellow);
      color: #111;
      font-weight: 900;
      box-shadow: none;
      padding: 10px 16px;
    }
    .option-add-cart-btn span {
      font-size: 26px;
      line-height: 0;
      margin-right: 2px;
    }
    .option-add-cart-btn img {
      width: 22px;
      height: 22px;
      display: block;
    }
    .dish-option-footer {
      margin-top: 14px;
      align-items: center;
    }
    .merchant-dish-form-actions {
      margin-top: 4px;
    }
    .modal-shell {
      min-height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px;
    }
    .modal-card {
      width: min(94vw, 540px);
      max-height: 90vh;
      overflow: auto;
    }
    .dish-order-form {
      margin-top: 12px;
      align-items: center;
      justify-content: space-between;
    }
    .dish-order-qty[type="number"] {
      max-width: 86px;
      flex: 0 0 86px;
    }
    .merchant-order-tag-cell {
      white-space: nowrap;
      text-align: center;
    }
    .merchant-order-tag-cell .tag {
      display: inline-flex;
      justify-content: center;
      min-width: 74px;
    }
    .merchant-order-card-list {
      display: grid;
      gap: 12px;
      margin-top: 12px;
    }
    .merchant-order-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 1px 2px rgba(23, 23, 20, 0.04);
      padding: 14px;
    }
    .merchant-order-card-head {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: flex-start;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--line);
    }
    .merchant-order-title-wrap {
      display: flex;
      gap: 8px;
      align-items: flex-start;
      min-width: 0;
    }
    .merchant-order-check {
      padding-top: 2px;
    }
    .merchant-order-title {
      font-weight: 800;
      font-size: 16px;
    }
    .merchant-order-head-tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 6px;
    }
    .merchant-order-head-side {
      display: grid;
      justify-items: end;
      gap: 6px;
      flex: 0 0 auto;
    }
    .merchant-order-head-side .price {
      font-size: 18px;
      line-height: 1.1;
    }
    .merchant-order-brief {
      display: grid;
      gap: 8px;
      padding: 12px 0;
      border-bottom: 1px solid var(--line);
    }
    .merchant-order-items-brief {
      display: grid;
      gap: 8px;
      color: #171714;
      font-size: 15px;
      font-weight: 800;
      line-height: 1.35;
    }
    .merchant-order-item-brief {
      display: grid;
      gap: 3px;
      min-width: 0;
      overflow-wrap: anywhere;
    }
    .merchant-order-item-main-line {
      font-weight: 800;
      color: #171714;
    }
    .merchant-order-item-option-line {
      color: var(--muted);
      font-size: 12px;
      font-weight: 600;
    }
    .merchant-order-sep {
      color: var(--muted);
      font-weight: 500;
    }
    .merchant-order-meta-line {
      display: flex;
      flex-wrap: wrap;
      gap: 6px 12px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }
    .merchant-order-note {
      border-radius: 10px;
      background: #fff8eb;
      border: 1px solid #ffe1ac;
      color: #745000;
      padding: 8px 10px;
      font-size: 13px;
      line-height: 1.35;
    }
    .danger-text {
      color: #8d2f23;
      background: #fff0ee;
      border-color: #f1bbb3;
    }
    .merchant-order-main {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, .8fr);
      gap: 12px;
      padding: 12px 0;
    }
    .merchant-order-block {
      min-width: 0;
      display: grid;
      align-content: start;
      gap: 5px;
    }
    .merchant-order-block-title {
      font-size: 12px;
      font-weight: 800;
      color: #34342f;
    }
    .merchant-order-item-list {
      display: grid;
      gap: 8px;
    }
    .merchant-order-item {
      padding: 8px 10px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface-soft);
    }
    .merchant-order-item-name {
      font-weight: 600;
      color: var(--text);
    }
    .merchant-order-item-option {
      margin-top: 4px;
      color: var(--muted);
      font-size: 12px;
    }
    .merchant-order-actions {
      padding-top: 10px;
    }
    .merchant-order-action-form {
      display: grid;
      grid-template-columns: auto auto minmax(160px, 1fr);
      gap: 8px;
      align-items: center;
    }
    .merchant-campus-entry {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    .merchant-campus-entry .btn {
      flex-shrink: 0;
    }
    .delivery-dashboard {
      display: grid;
      gap: 14px;
    }
    .delivery-order-section {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      padding: 14px;
      box-shadow: var(--shadow);
    }
    .delivery-order-section-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }
    .delivery-order-section-head h3 {
      margin: 0;
      font-size: 17px;
      line-height: 1.2;
    }
    .delivery-order-section-head p {
      margin: 4px 0 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.3;
    }
    .delivery-order-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 10px;
      align-items: stretch;
    }
    .delivery-order-grid.compact {
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    .delivery-order-card {
      min-width: 0;
      display: grid;
      gap: 9px;
      align-content: start;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #fff;
      padding: 12px;
      box-shadow: 0 1px 2px rgba(23, 23, 20, .04);
    }
    .delivery-order-card.active {
      border-color: #ffd24f;
      background: #fffdf4;
    }
    .delivery-order-card.done {
      background: var(--surface-soft);
      box-shadow: none;
    }
    .delivery-order-card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }
    .delivery-order-card-head strong {
      font-size: 16px;
      line-height: 1.1;
    }
    .delivery-order-store {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      color: #171714;
      font-size: 15px;
      font-weight: 900;
    }
    .delivery-order-info {
      display: grid;
      grid-template-columns: 38px minmax(0, 1fr);
      gap: 8px;
      align-items: start;
      font-size: 13px;
      line-height: 1.35;
    }
    .delivery-order-info span {
      color: var(--muted);
      font-weight: 700;
    }
    .delivery-order-info strong {
      min-width: 0;
      color: #34342f;
      font-weight: 700;
      word-break: break-word;
    }
    .delivery-order-done-time {
      margin-top: 10px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 400;
      line-height: 1.35;
    }
    .delivery-order-fee {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }
    .delivery-order-fee strong {
      color: #c6452d;
      font-size: 16px;
      font-weight: 900;
    }
    .delivery-order-items {
      display: flex;
      flex-wrap: wrap;
      gap: 4px 6px;
      color: #171714;
      font-size: 13px;
      font-weight: 800;
      line-height: 1.35;
    }
    .delivery-order-items span {
      min-width: 0;
    }
    .delivery-order-actions {
      margin: 2px 0 0;
    }
    .delivery-order-actions .btn {
      width: 100%;
      min-height: 36px;
      padding: 8px 12px;
      font-size: 13px;
    }
    .delivery-empty {
      margin: 0;
      border-radius: 12px;
      background: var(--surface-soft);
      color: var(--muted);
      padding: 12px;
      font-size: 13px;
    }
    .delivery-available-empty {
      min-height: 480px;
      padding: 34px 24px 28px;
      border-radius: 18px;
      background: var(--surface-soft);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
    }
    .delivery-available-empty-art {
      display: block;
      width: min(560px, 82%);
      max-height: 240px;
      margin: 0 auto 18px;
      object-fit: contain;
    }
    .delivery-available-empty h3 {
      margin: 0;
      color: var(--text);
      font-size: 28px;
      line-height: 1.2;
      font-weight: 900;
    }
    .delivery-available-empty > p {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.5;
    }
    .delivery-notice-action {
      min-height: 48px;
      margin-top: 26px;
      padding: 9px 24px;
      border: 0;
      border-radius: 999px;
      background: #fff0bd;
      color: #6d5010;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 900;
      cursor: pointer;
    }
    .delivery-notice-action img {
      width: 20px;
      height: 20px;
      object-fit: contain;
    }
    .delivery-application-entry,
    .delivery-application-form {
      max-width: 720px;
      margin: 0 auto 12px;
    }
    .delivery-application-entry {
      padding: 18px;
      border-color: var(--line);
      border-radius: var(--radius-lg);
      background: #fff;
      box-shadow: var(--shadow);
    }
    .delivery-application-form {
      padding: 18px;
      border-radius: var(--radius-lg);
    }
    .delivery-application-entry-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .delivery-application-entry-head > strong {
      font-size: 17px;
    }
    .delivery-application-entry > p {
      margin: 7px 0 14px;
    }
    .delivery-application-toggle {
      width: 100%;
      min-height: 44px;
      background: var(--yellow);
      color: #171714;
      box-shadow: 0 8px 18px rgba(190, 145, 0, .14);
    }
    .delivery-application-toggle:hover {
      background: var(--yellow-strong);
      color: #171714;
    }
    .delivery-application-review {
      margin: -5px 0 12px !important;
      padding: 8px 10px;
      border-radius: 10px;
      background: var(--surface-soft);
      color: var(--muted);
      font-size: 12px;
      line-height: 1.5;
    }
    .price { color: #bd492f; font-weight: 700; }
    .table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      background: #fff;
      border-radius: var(--radius);
      overflow: hidden;
    }
    .table th, .table td {
      padding: 10px 8px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: middle;
    }
    .table th {
      background: #f3f2e8;
      color: #34342f;
      font-weight: 700;
      position: sticky;
      top: 0;
      z-index: 1;
    }
    .table tbody tr:nth-child(even) {
      background: #fbfaf2;
    }
    .table tbody tr:hover {
      background: #edf8f1;
    }
    .platform-review-page {
      --review-ink: #1d1d1f;
      --review-muted: #6e6e73;
      --review-line: #e7e4da;
      --review-soft: #f7f6f1;
      display: grid;
      gap: 14px;
    }
    .platform-review-page > .card,
    .platform-review-page > details.card,
    .platform-review-page > section > .card {
      margin: 0 !important;
      border: 1px solid var(--review-line);
      border-radius: 18px;
      box-shadow: 0 8px 24px rgba(28, 28, 24, .055);
    }
    .platform-review-page .platform-review-hero {
      margin-bottom: 0;
      padding: 26px 28px;
      border: 1px solid #e8d896;
      background:
        radial-gradient(circle at 86% 18%, rgba(255, 222, 92, .58), transparent 31%),
        linear-gradient(135deg, #fffdf4 0%, #f7edbf 100%);
      color: var(--review-ink);
      box-shadow: 0 12px 30px rgba(112, 85, 0, .08);
    }
    .platform-review-page .platform-review-hero::after {
      opacity: .22;
    }
    .platform-review-page .platform-review-hero h1 {
      color: var(--review-ink);
      letter-spacing: -.02em;
    }
    .platform-review-page .platform-review-hero p {
      color: #5f5a48;
    }
    .platform-review-page .platform-review-tabs {
      gap: 6px !important;
      padding: 4px;
      border-radius: 14px;
      background: var(--review-soft);
    }
    .platform-review-page .platform-review-tabs .pill {
      min-height: 38px;
      padding: 8px 14px;
      border-color: transparent;
      background: transparent;
      color: #55554f;
      font-weight: 650;
      box-shadow: none;
    }
    .platform-review-page .platform-review-tabs .pill.primary {
      border-color: #e8ca5d;
      background: #fff;
      color: var(--review-ink);
      box-shadow: 0 4px 12px rgba(64, 52, 12, .08);
    }
    .platform-review-page .platform-review-tools {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    .platform-review-page input,
    .platform-review-page select,
    .platform-review-page textarea {
      border-color: #dcd9ce;
      background: #fff;
      box-shadow: inset 0 1px 0 rgba(0, 0, 0, .02);
    }
    .platform-review-page input:focus,
    .platform-review-page select:focus,
    .platform-review-page textarea:focus {
      border-color: #c6a62f;
      box-shadow: 0 0 0 3px rgba(232, 194, 57, .16);
    }
    .platform-review-page .table {
      border: 1px solid var(--review-line);
      border-radius: 14px;
      color: var(--review-ink);
    }
    .platform-review-page .table th {
      padding: 12px 10px;
      background: #f6f5f0;
      color: #55554f;
      font-size: 12px;
      letter-spacing: .02em;
    }
    .platform-review-page .table td {
      padding: 12px 10px;
    }
    .platform-review-page .table tbody tr:nth-child(even) {
      background: #fcfcfa;
    }
    .platform-review-page .table tbody tr:hover {
      background: #fffaf0;
    }
    .platform-review-page .merchant-order-card {
      border: 1px solid var(--review-line);
      border-radius: 15px;
      background: #fff;
      box-shadow: none;
    }
    .platform-review-nav-groups {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }
    .platform-review-nav-group > span {
      display: block;
      margin: 0 0 7px 5px;
      color: var(--review-muted);
      font-size: 12px;
      font-weight: 700;
    }
    .platform-review-nav-group .platform-review-tabs {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .platform-review-nav-group .pill {
      justify-content: center;
      white-space: nowrap;
    }
    .review-settings-content { margin-top: 14px; }
    .review-section-tabs {
      width: fit-content;
      display: flex;
      gap: 6px;
      padding: 5px;
      border: 1px solid var(--review-line);
      border-radius: 14px;
      background: #f5f4ef;
    }
    .review-section-tab {
      min-width: 110px;
      padding: 9px 18px;
      border-radius: 10px;
      color: #686761;
      text-align: center;
      font-size: 14px;
      font-weight: 700;
    }
    .review-section-tab.active {
      background: #fff;
      color: var(--review-ink);
      box-shadow: 0 3px 10px rgba(39, 35, 20, .08);
    }
    .roster-panel { padding: 22px; }
    .roster-panel-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 16px;
    }
    .roster-panel-head h3,
    .roster-panel-head p { margin: 0; }
    .roster-panel-head p { margin-top: 5px; }
    .roster-filter-bar {
      display: grid;
      grid-template-columns: repeat(3, minmax(130px, .7fr)) minmax(220px, 1.5fr) auto;
      gap: 9px;
      margin-bottom: 16px;
      padding: 12px;
      border-radius: 13px;
      background: #f7f6f1;
    }
    .review-table-scroll { overflow: auto; }
    .roster-table { min-width: 980px; }
    .roster-table td { vertical-align: middle; }
    .roster-actions { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; min-width: 210px; }
    .roster-actions form { margin: 0; }
    .roster-actions .btn { min-height: 34px; padding: 7px 11px; font-size: 12px; }
    .roster-history-link { color: #776014; font-size: 12px; font-weight: 700; }
    .roster-empty { padding: 34px 10px; text-align: center; }
    .roster-detail-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      padding: 0;
      overflow: hidden;
      background: var(--line);
    }
    .roster-detail-grid > div { min-height: 100px; padding: 20px; display: grid; align-content: center; gap: 7px; background: #fff; }
    .roster-detail-grid span { color: var(--muted); font-size: 13px; }
    .roster-detail-grid strong { font-size: 17px; }
    .platform-section-title {
      margin: 22px 0 10px;
      padding-top: 18px;
      border-top: 1px solid var(--review-line);
      font-size: 16px;
      letter-spacing: -.01em;
    }
    .support-role-tabs {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
      margin: 18px 0 16px;
      padding: 5px;
      border: 1px solid var(--review-line);
      border-radius: 14px;
      background: var(--review-soft);
    }
    .support-role-tab {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      min-height: 42px;
      padding: 8px 12px;
      border: 1px solid transparent;
      border-radius: 10px;
      color: #5c5c57;
      font-size: 14px;
      font-weight: 650;
      text-decoration: none;
    }
    .support-role-tab strong {
      min-width: 22px;
      padding: 2px 7px;
      border-radius: 999px;
      background: #e9e7df;
      color: #6a6963;
      font-size: 11px;
      text-align: center;
    }
    .support-role-tab.active {
      border-color: #ead172;
      background: #fff;
      color: #1d1d1f;
      box-shadow: 0 4px 12px rgba(52, 45, 20, .07);
    }
    .support-role-tab.active strong {
      background: #ffd84d;
      color: #302700;
    }
    .support-role-badge {
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding: 3px 9px;
      border-radius: 999px;
      background: #eef3ff;
      color: #315a9b;
      font-size: 11px;
      font-weight: 700;
      white-space: nowrap;
    }
    .support-role-badge.role-merchant {
      background: #fff3cf;
      color: #785b00;
    }
    .support-role-badge.role-rider {
      background: #eaf8ee;
      color: #237341;
    }
    .support-state-stack {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px;
    }
    .platform-user-lookup {
      padding: 22px;
    }
    .platform-user-lookup-form {
      max-width: 760px;
      margin-top: 20px;
      padding: 18px;
      border: 1px solid var(--review-line);
      border-radius: 15px;
      background: var(--review-soft);
    }
    .platform-user-lookup-form > label {
      display: block;
      margin-bottom: 8px;
      color: #55554f;
      font-size: 13px;
      font-weight: 700;
    }
    .platform-user-lookup-form .row {
      align-items: stretch;
      flex-wrap: nowrap;
    }
    .platform-user-lookup-form input {
      min-width: 0;
      flex: 1;
    }
    .platform-user-lookup-form .btn {
      min-width: 116px;
    }
    .platform-user-empty {
      display: flex;
      flex-direction: column;
      gap: 5px;
      margin-top: 18px;
      padding: 20px;
      border: 1px dashed #d9d5c8;
      border-radius: 14px;
      background: #fcfbf7;
      color: var(--review-ink);
    }
    .platform-user-empty span {
      color: var(--review-muted);
      font-size: 13px;
    }
    .platform-user-result {
      margin-top: 18px;
      overflow: hidden;
      border: 1px solid var(--review-line);
      border-radius: 16px;
      background: #fff;
    }
    .platform-user-result-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 18px 20px;
      border-bottom: 1px solid var(--review-line);
      background: linear-gradient(135deg, #fffdf5, #f8f2d8);
    }
    .platform-user-result-head > div {
      display: flex;
      align-items: baseline;
      gap: 10px;
    }
    .platform-user-result-head strong {
      color: var(--review-ink);
      font-size: 22px;
      letter-spacing: -.02em;
    }
    .platform-user-report-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin: 0;
    }
    .platform-user-report-grid > div {
      min-width: 0;
      padding: 15px 18px;
      border-right: 1px solid #eeece4;
      border-bottom: 1px solid #eeece4;
    }
    .platform-user-report-grid > div:nth-child(3n) {
      border-right: 0;
    }
    .platform-user-report-grid dt {
      margin-bottom: 5px;
      color: var(--review-muted);
      font-size: 12px;
      font-weight: 650;
    }
    .platform-user-report-grid dd {
      margin: 0;
      overflow-wrap: anywhere;
      color: var(--review-ink);
      font-size: 14px;
      font-weight: 650;
      line-height: 1.5;
    }
    .platform-user-privacy-note {
      margin: 0;
      padding: 12px 18px;
      background: #faf9f5;
      color: var(--review-muted);
      font-size: 12px;
    }
    .flash-wrap {
      display: grid;
      gap: 8px;
      margin-bottom: 14px;
    }
    .flash {
      border-radius: 10px;
      padding: 10px 12px;
      font-size: 13px;
      border: 1px solid;
      transition: opacity .22s ease, transform .22s ease;
    }
    .flash.is-dismissing { opacity: 0; transform: translateY(-5px); }
    .flash.success { background: #edfff3; border-color: #b7efc6; color: #1d7d39; box-shadow: 0 6px 14px rgba(38, 153, 84, 0.09); }
    .flash.warning { background: #fff8eb; border-color: #ffe1ac; color: #8e5a06; box-shadow: 0 6px 14px rgba(212, 138, 7, 0.1); }
    .flash.error { background: #fff1f0; border-color: #ffc8c2; color: #a12f20; box-shadow: 0 6px 14px rgba(195, 58, 39, 0.1); }
    .tag {
      display: inline-flex;
      align-items: center;
      padding: 4px 8px;
      border-radius: 999px;
      background: #f3f2e8;
      color: #34342f;
      border: 1px solid var(--line);
      font-size: 12px;
    }
    .tag.pending { background: #fff6da; color: #7b5200; border-color: #ead184; }
    .tag.approved { background: #e8f8ee; color: #0f6f37; border-color: #b7e8c8; }
    .tag.rejected { background: #fff0ee; color: #8d2f23; border-color: #f1bbb3; }
    .tag.pickup { background: #edf2ff; color: #334a8d; border-color: #cdd8f4; }
    .notice {
      border: 1px dashed #e1c565;
      background: #fff9df;
      color: #765000;
      border-radius: var(--radius);
      padding: 10px 12px;
      font-size: 13px;
    }
    .login-nudge {
      display: grid;
      gap: 4px;
      border: 1px solid #ffe1ac;
      background: #fff8eb;
      color: #745000;
      border-radius: var(--radius);
      padding: 12px;
      margin-bottom: 12px;
    }
    .login-nudge strong {
      color: #4d3700;
    }
    .stars {
      display: inline-flex;
      flex-direction: row-reverse;
      gap: 4px;
    }
    .stars input { display: none; }
    .stars label {
      margin: 0;
      font-size: 22px;
      color: #c9c8bd;
      cursor: pointer;
      line-height: 1;
    }
    .stars input:checked ~ label,
    .stars label:hover,
    .stars label:hover ~ label {
      color: #e7a400;
    }
    .footer-note {
      text-align: center;
      color: var(--muted);
      font-size: 11px;
      margin-top: 42px;
    }
    .footer-note-link {
      border: 0;
      background: transparent;
      color: var(--muted);
      font: inherit;
      text-decoration: underline;
      text-underline-offset: 3px;
      cursor: pointer;
      padding: 4px 6px;
    }
    .footer-note-separator {
      color: #c8c3b7;
      padding: 0 1px;
    }
    .info-sheet {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 140;
      padding: 18px;
      background: rgba(15, 23, 42, .42);
    }
    .info-sheet.open {
      display: flex;
    }
    .info-sheet-panel {
      width: min(92vw, 520px);
      max-height: min(78vh, 640px);
      overflow: auto;
      border-radius: 18px;
      background: #fff;
      box-shadow: 0 18px 42px rgba(23, 23, 20, .22);
      padding: 16px;
    }
    .info-sheet-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }
    .info-sheet-head h3 {
      margin: 0;
      color: #171714;
      font-size: 18px;
      line-height: 1.2;
    }
    .info-sheet-body {
      display: grid;
      gap: 10px;
      color: #34342f;
      font-size: 14px;
      line-height: 1.55;
    }
    .info-sheet-actions {
      display: flex;
      justify-content: center;
      margin-top: 16px;
    }
    .info-sheet-actions .btn {
      min-width: 168px;
    }
    .info-sheet-actions .btn:not(.secondary) {
      background: var(--yellow);
      color: var(--text);
    }
    .info-rule-list {
      display: grid;
      gap: 8px;
      margin: 0;
      padding-left: 20px;
    }
    .hours-avatar-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-bottom: 12px;
      align-items: start;
    }
    .hours-avatar-row > .card {
      width: 100%;
      min-width: 0;
    }
    .store-card-top {
      display: block;
    }
    .store-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }
    .store-card-link {
      color: inherit;
      text-decoration: none;
      cursor: pointer;
    }
    .store-card-link:focus-visible {
      outline: none;
      box-shadow: var(--ring), var(--shadow-hover);
      border-color: #80e7a2;
    }
    .store-card-avatar {
      width: 100%;
      aspect-ratio: 16 / 9;
      height: auto;
      object-fit: cover;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      margin-bottom: 10px;
      display: block;
    }
    .store-card-placeholder,
    .dish-card-placeholder {
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #fff7d0 0%, #edf8f1 100%);
      color: #735000;
      font-weight: 800;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      text-align: center;
    }
    .store-card-placeholder {
      width: 100%;
      aspect-ratio: 16 / 9;
      margin-bottom: 10px;
      display: flex;
    }
    .store-card-main {
      min-width: 0;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .store-card-title-row {
      min-width: 0;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 10px;
    }
    .store-card-title-row h3 {
      min-width: 0;
      margin: 0;
      overflow: hidden;
      color: var(--text);
      font-size: 18px;
      line-height: 1.25;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .store-card-title-row .tag {
      flex: 0 0 auto;
    }
    .store-card-name-group {
      min-width: 0;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .store-card-name-group h3 {
      flex: 0 1 auto;
    }
    .store-area-tag {
      min-height: 22px;
      padding: 3px 8px;
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      border: 1px solid #ead99d;
      border-radius: 999px;
      background: #fff8dc;
      color: #735711;
      font-size: 11px;
      font-weight: 800;
      line-height: 1;
    }
    .store-card-desc {
      display: -webkit-box;
      margin: 0;
      overflow: hidden;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }
    .store-card-facts {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
    }
    .store-card-facts span {
      min-height: 24px;
      padding: 3px 9px;
      border-radius: 999px;
      background: var(--surface-soft);
      color: #555a53;
      display: inline-flex;
      align-items: center;
      font-size: 11px;
      font-weight: 750;
      line-height: 1;
      white-space: nowrap;
    }
    .store-card-location {
      overflow: hidden;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .store-card-actions {
      margin-top: auto;
      padding-top: 12px;
    }
    .store-card-actions .btn {
      width: 100%;
    }
    .store-card-meta-line h3 {
      overflow-wrap: anywhere;
    }
    .dish-card-top {
      display: block;
    }
    .dish-card-avatar {
      width: 100%;
      height: 156px;
      object-fit: cover;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      margin-bottom: 10px;
      display: block;
    }
    .dish-card-placeholder {
      width: 100%;
      height: 156px;
      margin-bottom: 10px;
      display: flex;
    }
    .dish-card-main {
      min-width: 0;
      width: 100%;
    }
    .store-menu-hero {
      margin-bottom: 12px;
    }
    .mini-store-head {
      display: grid;
      gap: 0;
      padding: 18px;
      margin-bottom: 12px;
      background: linear-gradient(145deg, #fff 0%, #fffdf6 100%);
      border: 1px solid #e8e3d4;
      border-radius: var(--radius);
      box-shadow: 0 10px 28px rgba(52, 44, 22, .075);
    }
    .mini-store-profile {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
    .mini-store-avatar-wrap {
      width: 82px;
      height: 82px;
      flex: 0 0 82px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #e7dfc7;
      border-radius: 18px;
      background: #fff9e8;
      box-shadow: 0 6px 16px rgba(52, 44, 22, .08);
    }
    .mini-store-avatar {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }
    .mini-store-avatar-placeholder {
      width: 100%;
      height: 100%;
      align-items: center;
      justify-content: center;
    }
    .mini-store-avatar-placeholder img {
      width: 38px;
      height: 38px;
      opacity: .72;
    }
    .mini-store-copy {
      min-width: 0;
      flex: 1;
    }
    .mini-store-title-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .mini-store-title-row h1 {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      margin: 0;
      font-size: 22px;
      line-height: 1.25;
      letter-spacing: 0;
    }
    .mini-store-status {
      flex: 0 0 auto;
      padding: 3px 8px;
      border: 1px solid;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 750;
      line-height: 1.4;
    }
    .mini-store-status.is-open {
      color: #24744a;
      border-color: #c9ead6;
      background: #edf9f1;
    }
    .mini-store-status.is-closed {
      color: #a25242;
      border-color: #f0d3cc;
      background: #fff2ef;
    }
    .mini-store-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 9px;
    }
    .mini-store-meta span {
      padding: 3px 8px;
      border: 1px solid #eee7d6;
      border-radius: 999px;
      background: rgba(255, 250, 235, .86);
      color: #746849;
      font-size: 11px;
      line-height: 1.35;
    }
    .mini-store-desc {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
      margin: 6px 0 0;
      display: -webkit-box;
      overflow: hidden;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }
    .mini-store-notice {
      min-width: 0;
      display: flex;
      align-items: center;
      gap: 7px;
      margin-top: 15px;
      padding-top: 12px;
      border-top: 1px solid #f0ece2;
      color: #625f55;
      font-size: 12px;
      line-height: 1.4;
      overflow: hidden;
    }
    .mini-store-notice img {
      width: 15px;
      height: 15px;
      flex: 0 0 15px;
      opacity: .68;
    }
    .mini-store-notice-viewport {
      min-width: 0;
      flex: 1;
      overflow: hidden;
    }
    .mini-store-notice-track {
      width: max-content;
      display: flex;
      align-items: center;
      white-space: nowrap;
    }
    .mini-store-notice-text {
      flex: 0 0 auto;
      white-space: nowrap;
    }
    .mini-store-notice-copy {
      margin-left: 40px;
    }
    .mini-store-notice-track.is-scrolling {
      animation: mini-store-notice-marquee var(--notice-duration) linear infinite;
      will-change: transform;
    }
    .mini-store-notice-track.is-scrolling:hover {
      animation-play-state: paused;
    }
    @keyframes mini-store-notice-marquee {
      from { transform: translate3d(0, 0, 0); }
      to { transform: translate3d(var(--notice-shift), 0, 0); }
    }
    @media (prefers-reduced-motion: reduce) {
      .mini-store-notice-track.is-scrolling {
        animation: none;
      }
    }
    .store-search-bar {
      position: sticky;
      top: 0;
      z-index: 12;
      display: grid;
      grid-template-columns: 44px minmax(0, 1fr);
      gap: 8px;
      align-items: center;
      margin: -4px 0 12px;
      padding: 10px 0;
      background: rgba(246, 245, 236, .96);
      backdrop-filter: blur(10px);
    }
    .store-search-field {
      position: relative;
      display: block;
      min-width: 0;
    }
    .store-search-field input {
      width: 100%;
      min-height: 42px;
      border-radius: 999px;
      border-color: var(--line);
      background: #fff;
      padding: 9px 44px 9px 16px;
      box-shadow: 0 1px 2px rgba(23, 23, 20, .04);
    }
    .store-search-submit {
      position: absolute;
      right: 5px;
      top: 50%;
      width: 32px;
      height: 32px;
      transform: translateY(-50%);
      border: 0;
      border-radius: 50%;
      background: var(--yellow);
      cursor: pointer;
      box-shadow: 0 5px 12px rgba(255, 201, 40, .22);
    }
    .store-back-pill {
      width: 44px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, .86);
      border: 1px solid var(--line);
      color: #171714;
      font-size: 34px;
      line-height: 1;
      text-decoration: none;
      box-shadow: var(--shadow);
    }
    .store-back-pill svg {
      width: 24px;
      height: 24px;
    }
    .store-search-empty {
      margin-bottom: 92px;
      text-align: center;
    }
    .store-menu-layout {
      display: grid;
      grid-template-columns: 96px minmax(0, 1fr);
      gap: 10px;
      align-items: start;
    }
    .store-category-nav {
      position: sticky;
      top: 58px;
      display: grid;
      max-height: calc(100vh - 170px);
      overflow: auto;
      padding: 2px 0 8px;
      background: #f0f0ef;
      border-radius: 0;
    }
    .store-category-nav a {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 58px;
      padding: 9px 8px;
      border: 0;
      border-radius: 0;
      background: transparent;
      color: #64645c;
      font-size: 13px;
      font-weight: 800;
      text-align: center;
      line-height: 1.28;
    }
    .store-category-nav a.active {
      background: #fff;
      color: #171714;
    }
    .store-category-nav a.active::before {
      content: "";
      position: absolute;
      left: 0;
      top: 18px;
      bottom: 18px;
      width: 4px;
      border-radius: 0 4px 4px 0;
      background: var(--yellow);
    }
    .dish-category-section {
      display: grid;
      gap: 12px;
      margin-bottom: 18px;
      scroll-margin-top: 90px;
    }
    .dish-category-title {
      margin: 0;
      font-size: 16px;
      font-weight: 800;
    }
    .dish-list {
      display: grid;
      gap: 12px;
    }
    .dish-list .dish-card {
      padding: 8px 0 10px;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }
    .dish-list .dish-card:hover { transform: none; border-color: transparent; box-shadow: none; }
    .dish-card-main .space-between {
      align-items: flex-start;
      gap: 8px;
      flex-wrap: nowrap;
    }
    .dish-card-main .space-between h3 {
      min-width: 0;
      overflow-wrap: anywhere;
    }
    .dish-buy-row {
      margin-top: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .dish-add-button {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid #efc836;
      background: var(--yellow);
      color: #171714;
      cursor: pointer;
      display: inline-flex;
      flex: 0 0 36px;
      box-shadow: 0 6px 14px rgba(255, 201, 40, .22);
    }
    .dish-add-button svg {
      width: 20px;
      height: 20px;
      stroke-width: 2.7;
    }
    .dish-add-button:disabled {
      opacity: .45;
      cursor: not-allowed;
      box-shadow: none;
    }
    .floating-cart {
      position: fixed;
      left: 50%;
      bottom: 74px;
      transform: translateX(-50%);
      width: min(520px, calc(100vw - 24px));
      z-index: 79;
      border-radius: 20px;
      padding: 9px 12px;
      background: #191814;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      box-shadow: 0 14px 28px rgba(23, 23, 20, 0.24);
    }
    .floating-cart-main {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }
    .floating-cart-icon {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: var(--yellow);
      color: #171714;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: inset 0 -2px 0 rgba(23, 23, 20, .12);
    }
    .floating-cart-icon svg {
      width: 25px;
      height: 25px;
      display: block;
      stroke: currentColor;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }
    .floating-cart-icon img {
      width: 25px;
      height: 25px;
      display: block;
    }
    .floating-cart-title {
      font-weight: 800;
      line-height: 1.2;
    }
    .floating-cart-subtitle {
      color: #d8d8cf;
      font-size: 12px;
      line-height: 1.25;
    }
    .floating-cart .btn {
      background: var(--yellow);
      color: #171714;
      box-shadow: none;
      white-space: nowrap;
    }
    .floating-cart.is-empty {
      background: #3a3933;
    }
    .delivery-queue-web .floating-cart-title,
    .delivery-queue-web .floating-cart-subtitle {
      display: block;
    }
    .floating-cart.delivery-queue-web {
      left: auto;
      right: 18px;
      transform: none;
      width: auto;
      min-width: 300px;
    }
    .cart-expand-btn {
      border: 0;
      background: transparent;
      color: inherit;
      padding: 0;
      text-align: left;
      cursor: pointer;
      min-width: 0;
    }
    .cart-sheet,
    .option-sheet {
      position: fixed;
      inset: 0;
      display: none;
      background: rgba(15, 23, 42, 0.42);
      z-index: 120;
      align-items: flex-end;
    }
    .option-sheet {
      align-items: center;
      justify-content: center;
      padding: 22px 14px;
      background: rgba(0, 0, 0, 0.58);
    }
    .cart-sheet.open,
    .option-sheet.open {
      display: flex;
    }
    .cart-sheet-panel,
    .option-sheet-panel {
      width: 100%;
      max-width: 560px;
      margin: 0 auto;
      background: #fff;
      border-radius: 18px 18px 0 0;
      box-shadow: 0 -12px 28px rgba(23, 23, 20, 0.18);
      padding: 14px;
      max-height: min(76vh, 640px);
      overflow: auto;
    }
    .option-sheet-panel {
      max-width: 430px;
      max-height: min(82vh, 620px);
      border-radius: 18px;
      padding: 0;
      overflow: hidden;
      box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    }
    #dish-option-form {
      display: flex;
      flex-direction: column;
      max-height: calc(min(82vh, 620px) - 84px);
    }
    #dish-option-groups {
      overflow: auto;
      padding-bottom: 2px;
    }
    .cart-sheet-head,
    .option-sheet-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 10px;
    }
    .option-sheet-head {
      position: relative;
      align-items: flex-start;
      margin: 0;
      padding: 20px 20px 10px;
    }
    .option-sheet-close {
      border: 0;
      background: transparent;
      color: #242424;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      font-size: 28px;
      line-height: 30px;
      cursor: pointer;
      flex-shrink: 0;
    }
    .cart-line-list {
      display: grid;
      gap: 8px;
      margin: 10px 0 12px;
    }
    .cart-line {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      padding: 10px;
      border-radius: 12px;
      background: #fbfaf2;
      border: 1px solid var(--line);
    }
    .cart-line-title {
      font-weight: 800;
      line-height: 1.25;
    }
    .cart-line-actions,
    .cart-line-quantity {
      display: flex;
      align-items: center;
    }
    .cart-line-actions {
      gap: 14px;
    }
    .cart-line-quantity {
      gap: 8px;
      min-width: 60px;
      justify-content: flex-end;
    }
    .cart-line-minus {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 28px;
      width: 28px;
      min-width: 28px;
      max-width: 28px;
      height: 28px;
      min-height: 28px;
      max-height: 28px;
      padding: 0;
      border: 1px solid #ddd8c9;
      border-radius: 50%;
      background: #faf8f1;
      box-shadow: 0 1px 3px rgba(54, 49, 36, 0.06);
      cursor: pointer;
    }
    .cart-line-minus-mark {
      width: 10px;
      height: 2px;
      border-radius: 999px;
      background: #56534b;
    }
    .cart-line-minus:hover {
      border-color: #c9b663;
      background: #fffaf0;
    }
    .cart-sheet-foot,
    .option-sheet-foot {
      position: sticky;
      bottom: -14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin: 12px -14px -14px;
      padding: 12px 14px;
      background: rgba(255, 255, 255, 0.96);
      border-top: 1px solid var(--line);
      backdrop-filter: blur(10px);
    }
    .option-sheet-foot {
      bottom: 0;
      margin: 0;
      padding: 14px 20px 18px;
      background: #fff;
      border-top: 1px solid #f0f0f0;
    }
    .cart-toast {
      position: fixed;
      left: 50%;
      bottom: 132px;
      transform: translateX(-50%);
      max-width: calc(100vw - 32px);
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(23, 23, 20, 0.9);
      color: #fff;
      font-size: 13px;
      z-index: 140;
      opacity: 0;
      pointer-events: none;
      transition: opacity .18s ease, transform .18s ease;
    }
    .cart-toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(-4px);
    }
    .checkout-grid {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
      gap: 12px;
      align-items: start;
    }
    .checkout-grid.clean {
      max-width: 940px;
      margin: 0 auto;
    }
    .checkout-stack {
      display: grid;
      gap: 12px;
    }
    .checkout-card {
      padding: 14px;
    }
    .checkout-store-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding-bottom: 12px;
      margin-bottom: 8px;
      border-bottom: 1px solid var(--line);
    }
    .checkout-store-line strong {
      font-size: 17px;
      line-height: 1.25;
    }
    .checkout-section-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 8px;
    }
    .checkout-section-title h3 {
      margin: 0;
      font-size: 15px;
      font-weight: 600;
    }
    .checkout-item {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      padding: 9px 0;
      border-bottom: 1px solid var(--line);
    }
    .checkout-item:last-child {
      border-bottom: 0;
    }
    .checkout-item[hidden] {
      display: none;
    }
    .checkout-item-main {
      min-width: 0;
    }
    .checkout-item-main strong {
      display: block;
      overflow-wrap: anywhere;
    }
    .checkout-item-main .checkout-line-label {
      font-weight: 500;
    }
    .checkout-item-price {
      min-width: 74px;
      text-align: right;
      white-space: nowrap;
    }
    .checkout-item-price .price {
      color: var(--text);
      font-weight: 600;
    }
    .checkout-fulfillment-title {
      margin: 0 0 10px;
      font-size: 15px;
      font-weight: 600;
    }
    .checkout-section-heading {
      color: var(--text-secondary);
      font-size: 15px;
      font-weight: 600;
      line-height: 1.35;
    }
    .checkout-card label.checkout-section-heading {
      font-weight: 600;
    }
    .checkout-choice-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4px;
      margin-bottom: 12px;
      padding: 4px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: var(--surface-soft);
    }
    .checkout-choice-row-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .checkout-recommend {
      margin-left: 3px;
      color: #9a6500;
      font-size: 10px;
      font-style: normal;
      font-weight: 700;
      vertical-align: 1px;
    }
    .checkout-choice {
      position: relative;
      display: block;
      padding: 0;
      border: 0;
      border-radius: 10px;
      background: transparent;
      cursor: pointer;
    }
    .checkout-choice input {
      position: absolute;
      width: 1px;
      height: 1px;
      min-height: 0;
      margin: 0;
      opacity: 0;
      pointer-events: none;
    }
    .checkout-choice > span {
      min-height: 58px;
      padding: 9px 12px;
      border: 1px solid transparent;
      border-radius: 10px;
      display: grid;
      align-content: center;
      justify-items: center;
      text-align: center;
      transition: background-color .16s ease, border-color .16s ease, box-shadow .16s ease;
    }
    .checkout-choice input:checked + span {
      border-color: rgba(188, 143, 18, .28);
      background: #fff7d6;
      box-shadow: 0 2px 7px rgba(100, 76, 12, .10);
    }
    .checkout-choice strong {
      display: block;
      font-size: 14px;
      font-weight: 600;
    }
    .checkout-choice input:checked + span strong { font-weight: 800; }
    .checkout-choice small {
      display: block;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
      margin-top: 2px;
    }
    .checkout-address-list {
      display: grid;
      gap: 8px;
      margin-bottom: 10px;
    }
    .checkout-address-option {
      display: flex;
      gap: 10px;
      align-items: center;
      padding: 11px 12px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: var(--surface);
      cursor: pointer;
      transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
    }
    .checkout-address-option input {
      width: auto;
      min-height: 0;
      margin: 0;
      accent-color: #bc8f12;
    }
    .checkout-address-option:has(input:checked) {
      border-color: rgba(188, 143, 18, .42);
      background: #fffaf0;
      box-shadow: 0 2px 7px rgba(100, 76, 12, .08);
    }
    .checkout-address-body {
      min-width: 0;
      flex: 1;
      display: block;
    }
    .checkout-address-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .checkout-address-label {
      min-width: 0;
      color: var(--text);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.35;
    }
    .checkout-address-option .muted {
      display: block;
      line-height: 1.45;
    }
    .checkout-address-option .checkout-address-detail {
      margin-top: 7px;
      color: var(--text-secondary);
      font-size: 14px;
      font-weight: 600;
    }
    .checkout-address-option .checkout-address-phone {
      margin-top: 7px;
      color: var(--muted);
      font-size: 12px;
    }
    .checkout-manage-link {
      display: inline-flex;
      margin-top: 8px;
      color: #3a3a34;
      font-size: 13px;
      font-weight: 800;
      text-decoration: none;
    }
    .checkout-eta-panel {
      margin-top: 12px;
      padding: 12px 13px;
      border: 1px solid #ead99d;
      border-radius: var(--radius-control);
      background: #fff9e3;
    }
    .checkout-eta-main {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--text-secondary);
      font-size: 15px;
      font-weight: 600;
    }
    .checkout-eta-main strong {
      color: #6f5108;
      font-size: 18px;
      white-space: nowrap;
    }
    .checkout-eta-panel p {
      margin: 5px 0 0;
      color: var(--muted);
      font-size: 11px;
      line-height: 1.45;
    }
    .checkout-eta-panel .checkout-eta-busy {
      color: #925500;
      font-weight: 800;
    }
    .checkout-contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .checkout-contact-grid textarea {
      min-height: 64px;
      padding-top: 8px;
      padding-bottom: 8px;
    }
    .checkout-submit-bar {
      position: sticky;
      bottom: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 12px;
      padding: 10px 12px;
      border-radius: 14px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 8px 22px rgba(23, 23, 20, 0.12);
    }
    .checkout-submit-bar .price {
      font-size: 22px;
      line-height: 1;
    }
    .order-timeline {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 4px;
      margin: 12px 0;
    }
    .timeline-step {
      position: relative;
      display: grid;
      justify-items: center;
      gap: 5px;
      color: #9a998f;
      font-size: 11px;
      text-align: center;
      line-height: 1.2;
    }
    .timeline-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #d7d5c7;
      box-shadow: 0 0 0 3px #f3f2e8;
    }
    .timeline-step.done,
    .timeline-step.current {
      color: #171714;
      font-weight: 800;
    }
    .timeline-step.done .timeline-dot,
    .timeline-step.current .timeline-dot {
      background: var(--yellow-strong);
      box-shadow: 0 0 0 3px var(--yellow-soft);
    }
    .timeline-step.cancelled {
      color: var(--danger);
    }
    .timeline-step.cancelled .timeline-dot {
      background: var(--danger);
      box-shadow: 0 0 0 3px #fff0ee;
    }
    .order-card-head {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      align-items: flex-start;
      margin-bottom: 8px;
    }
    .order-page-head {
      margin: -12px -16px 12px;
      background: var(--header-warm);
      border-bottom: 1px solid rgba(133, 105, 38, .12);
      box-shadow: 0 1px 0 rgba(23, 23, 20, .04);
    }
    .order-title-bar {
      position: relative;
      overflow: hidden;
      min-height: 60px;
      padding: 10px 18px 8px;
      display: grid;
      grid-template-columns: 56px minmax(0, 1fr) 56px;
      align-items: center;
      gap: 8px;
    }
    .order-title-bar h1 {
      margin: 0;
      text-align: center;
      font-size: 22px;
      line-height: 1.1;
      font-weight: 900;
      color: #171714;
    }
    .order-title-spacer {
      min-width: 0;
    }
    .consumer-order-head {
      overflow: hidden;
      background: var(--header-warm);
      border-bottom: 0;
      box-shadow: 0 8px 22px rgba(176, 128, 0, .09);
    }
    .consumer-order-head .order-title-bar {
      min-height: 76px;
    }
    .consumer-order-head .order-title-bar h1 {
      position: relative;
      z-index: 2;
    }
    .order-head-campus-line {
      position: absolute;
      right: -16px;
      bottom: -18px;
      width: 250px;
      height: 86px;
      object-fit: contain;
      object-position: right bottom;
      opacity: .28;
      pointer-events: none;
    }
    .consumer-order-head .order-tabbar {
      position: relative;
      z-index: 2;
      border-radius: 28px 28px 0 0;
      border-top: 0;
      box-shadow: 0 -8px 24px rgba(143, 102, 0, .08);
    }
    .order-head-action {
      justify-self: end;
      color: #34342f;
      text-decoration: none;
      font-size: 14px;
      font-weight: 900;
      border-radius: 999px;
      background: rgba(255, 255, 255, .55);
      padding: 7px 10px;
      white-space: nowrap;
    }
    .order-tabbar {
      background: #fff;
      min-height: 58px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: stretch;
      border-top: 1px solid rgba(0, 0, 0, .04);
    }
    .order-tabbar.merchant-order-tabs {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .order-tabbar.delivery-order-tabbar {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .delivery-filter-panel {
      margin: 0 -16px 12px;
      padding: 10px 16px;
      background: #fff;
      border-top: 1px solid #eeece1;
      border-bottom: 1px solid #eeece1;
      display: grid;
      gap: 8px;
    }
    .delivery-filter-row {
      margin: 0;
      display: grid;
      grid-template-columns: 64px minmax(0, 1fr);
      align-items: center;
      gap: 8px;
    }
    .delivery-filter-row > label {
      margin: 0;
      color: #74766f;
      font-size: 12px;
      font-weight: 800;
    }
    .delivery-filter-options {
      display: grid;
      gap: 2px;
      padding: 2px;
      border-radius: 8px;
      background: #f1f0e8;
    }
    .delivery-filter-options.four {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .delivery-filter-options.three {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .delivery-filter-options .pill {
      min-width: 0;
      padding: 6px 5px;
      border: 0;
      border-radius: 7px;
      background: transparent;
      color: #66706b;
      font-size: 12px;
      font-weight: 800;
      text-align: center;
      white-space: nowrap;
    }
    .delivery-filter-options .pill:hover {
      transform: none;
      background: rgba(255, 255, 255, .6);
    }
    .delivery-filter-options .pill.primary {
      background: var(--yellow);
      color: #171714;
      box-shadow: 0 2px 6px rgba(190, 145, 0, .16);
    }
    .order-tab {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      color: #7c7c75;
      text-decoration: none;
      font-size: 15px;
      font-weight: 900;
      line-height: 1.15;
    }
    .order-tab.active {
      color: #171714;
    }
    .order-tab.active::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 8px;
      width: 20px;
      height: 5px;
      border-radius: 999px;
      background: var(--yellow-strong);
      transform: translateX(-50%);
    }
    .order-tab em {
      min-width: 20px;
      height: 20px;
      padding: 0 6px;
      border-radius: 999px;
      background: #ff3434;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      line-height: 1;
      font-style: normal;
    }
    .delivery-page-head .order-title-bar {
      min-height: 76px;
      grid-template-columns: 92px minmax(0, 1fr) 92px;
      padding-top: 12px;
      padding-bottom: 10px;
    }
    .delivery-page-head .order-title-bar h1,
    .delivery-page-head .order-head-action {
      position: relative;
      z-index: 2;
    }
    .merchant-order-tools {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 12px;
      padding: 10px 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }
    .merchant-order-tools > div:first-child {
      display: grid;
      gap: 2px;
      min-width: 0;
    }
    .merchant-order-tools span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }
    .my-order-list {
      display: grid;
      gap: 10px;
    }
    .my-order-card {
      padding: 14px;
    }
    .order-empty-state {
      width: min(760px, 100%);
      min-height: 520px;
      margin: 0 auto;
      padding: 48px 28px 34px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
    }
    .order-empty-state[hidden] {
      display: none;
    }
    .order-empty-art {
      display: block;
      width: min(600px, 84%);
      height: auto;
      max-height: 290px;
      margin: 0 auto 22px;
      object-fit: contain;
    }
    .order-empty-state h2 {
      margin: 0;
      color: #171714;
      font-size: clamp(25px, 3vw, 34px);
      line-height: 1.2;
      font-weight: 900;
      letter-spacing: .01em;
    }
    .order-empty-state p {
      margin: 14px 0 0;
      color: #8b8b84;
      font-size: 17px;
      line-height: 1.5;
    }
    .order-empty-action.btn {
      width: min(420px, 86%);
      min-height: 52px;
      margin-top: 30px;
      border: 0;
      border-radius: 999px;
      background: linear-gradient(135deg, #ffdc55 0%, #ffca27 100%);
      color: #171714;
      font-size: 17px;
      font-weight: 900;
      box-shadow: 0 14px 30px rgba(205, 150, 0, .18);
    }
    .order-empty-action.btn:hover {
      background: linear-gradient(135deg, #ffe36a 0%, #ffd13b 100%);
      color: #171714;
    }
    .my-order-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 10px;
    }
    .my-order-head h3 {
      margin: 0;
      font-size: 16px;
      line-height: 1.25;
    }
    .my-order-time {
      margin-top: 3px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.2;
    }
    .order-number {
      display: inline-flex;
      align-items: baseline;
      gap: 6px;
      max-width: 100%;
      white-space: nowrap;
    }
    .order-number-tail {
      font-weight: 900;
      letter-spacing: 0;
    }
    .order-number-label {
      font-weight: 700;
    }
    .my-order-status {
      flex: 0 0 auto;
      color: #171714;
      font-size: 13px;
      font-weight: 900;
      line-height: 1.2;
    }
    .my-order-summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 10px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      font-size: 14px;
      line-height: 1.35;
    }
    .my-order-summary > div {
      min-width: 0;
      color: #34342f;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .my-order-summary strong {
      flex: 0 0 auto;
      color: #bd492f;
      font-size: 16px;
    }
    .my-order-coupon-saving {
      margin-top: 8px;
      padding: 7px 10px;
      border-radius: 8px;
      background: #fff8df;
      color: #85610e;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      font-weight: 800;
    }
    .my-order-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px 12px;
      margin-top: 9px;
      color: var(--muted);
      font-size: 12px;
    }
    .my-order-eta {
      margin-top: 9px;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }
    .my-order-eta strong {
      color: var(--text);
      font-size: 14px;
      white-space: nowrap;
    }
    .my-order-eta-busy {
      margin-top: 6px;
      color: #965b08;
      font-size: 12px;
      font-weight: 750;
      line-height: 1.4;
    }
    .order-delay-status {
      color: #b86529;
      font-size: 12px;
      font-weight: 650;
    }
    .my-order-delay-card {
      margin-top: 8px;
      padding: 9px 11px;
      border: 1px solid rgba(184, 101, 41, .16);
      border-radius: 11px;
      background: #fff8ed;
      color: #8d755f;
      font-size: 12px;
      line-height: 1.45;
    }
    .my-order-delay-card.delay-platform_intervention {
      border-color: rgba(190, 68, 52, .18);
      background: #fff4f1;
    }
    .my-order-delay-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 2px;
    }
    .my-order-delay-head strong {
      color: #6f421e;
      font-size: 13px;
    }
    .delay-platform_intervention .my-order-delay-head strong {
      color: #984236;
    }
    .my-order-note {
      margin-top: 8px;
      border-radius: 10px;
      background: #fff8eb;
      border: 1px solid #ffe1ac;
      color: #745000;
      padding: 8px 10px;
      font-size: 13px;
      line-height: 1.35;
    }
    .order-timeline.compact {
      margin: 10px 0 0;
      gap: 2px;
    }
    .order-timeline.compact .timeline-step {
      font-size: 10px;
      gap: 4px;
    }
    .order-timeline.compact .timeline-dot {
      width: 9px;
      height: 9px;
      box-shadow: 0 0 0 2px #f3f2e8;
    }
    .my-order-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      margin-top: 10px;
      min-height: 32px;
    }
    .my-order-actions:empty {
      display: none;
    }
    .my-order-actions .btn {
      min-height: 32px;
      padding: 7px 12px;
      font-size: 13px;
    }
    .my-order-actions.receipt-actions {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      width: 100%;
      gap: 8px;
    }
    .my-order-actions.receipt-actions form {
      grid-column: 2;
      grid-row: 1;
      justify-self: center;
      margin: 0;
    }
    .my-order-actions.receipt-actions .my-order-text-action {
      grid-column: 3;
      grid-row: 1;
      justify-self: end;
    }
    .my-order-text-action {
      appearance: none;
      border: 0;
      background: transparent;
      padding: 7px 2px;
      color: #858781;
      font: inherit;
      font-size: 13px;
      line-height: 1.35;
      cursor: pointer;
    }
    .my-order-text-action:hover {
      color: #4f514c;
    }
    .my-order-review {
      margin: 0;
    }
    .my-order-actions.completed-actions {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      width: 100%;
      padding-top: 10px;
      border-top: 1px solid rgba(58, 54, 44, 0.08);
    }
    .my-order-actions.completed-actions .my-order-review {
      grid-column: 2;
      grid-row: 1;
      justify-self: center;
    }
    .my-order-actions.completed-actions .my-order-review .btn {
      min-width: 88px;
      min-height: 32px;
      padding: 7px 18px;
      border-color: #dcd9cf;
      border-radius: 999px;
      background: transparent;
      color: #555750;
      font-size: 13px;
      font-weight: 600;
      box-shadow: none;
    }
    .my-order-actions.completed-actions .my-order-review .btn:hover {
      border-color: #c9c6bc;
      background: #faf9f5;
      color: #363732;
    }
    .my-order-actions.completed-actions .my-order-text-action {
      grid-column: 3;
      grid-row: 1;
      justify-self: end;
    }
    .delivery-proof-summary,
    .receipt-reviewing,
    .receipt-confirm-card,
    .my-order-other-panel {
      margin-top: 12px;
      border-top: 1px solid rgba(72, 66, 52, 0.1);
      padding-top: 12px;
    }
    .delivery-proof-summary {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
    }
    .delivery-proof-summary img {
      width: 76px;
      height: 58px;
      margin-left: auto;
      border-radius: 10px;
      object-fit: cover;
      background: #f4f2eb;
    }
    .delivery-proof-summary > span:first-child {
      color: #353630;
      font-weight: 600;
    }
    .receipt-reviewing,
    .receipt-confirm-card {
      display: grid;
      gap: 6px;
    }
    .receipt-reviewing {
      color: #6d6658;
      font-size: 13px;
    }
    .receipt-attention-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #e8483d;
      box-shadow: 0 0 0 3px rgba(232, 72, 61, 0.1);
    }
    .my-order-other-panel {
      display: grid;
      gap: 14px;
      padding: 14px;
      border: 1px solid rgba(93, 80, 45, 0.12);
      border-radius: 14px;
      background: #fbfaf6;
    }
    .my-order-other-panel[hidden] {
      display: none;
    }
    .my-order-other-panel h4 {
      margin: 0 0 8px;
      font-size: 14px;
    }
    .my-order-other-panel details {
      min-width: 130px;
    }
    .my-order-other-panel summary {
      list-style: none;
      text-align: center;
      cursor: pointer;
    }
    .my-order-other-panel details form {
      display: grid;
      gap: 8px;
      margin-top: 10px;
      min-width: min(440px, 76vw);
    }
    .my-order-other-panel textarea {
      resize: vertical;
    }
    .order-call-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
    }
    .order-contact-recommended {
      color: #a97600;
      font-size: 10px;
      font-weight: 800;
      line-height: 1;
    }
    .rider-delivery-proof-panel {
      display: grid;
      gap: 7px;
      min-width: 170px;
    }
    .rider-delivery-proof-panel[hidden] {
      display: none;
    }
    .delivery-order-actions.delivery-complete-actions {
      display: grid;
      grid-template-columns: 1fr minmax(150px, 220px) 1fr;
      align-items: start;
      gap: 8px;
    }
    .rider-deadline-alert {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin: 0 0 12px;
      padding: 9px 11px;
      border: 1px solid rgba(184, 101, 41, .16);
      border-radius: 11px;
      background: #fff8ed;
      color: #75471f;
      font-size: 12px;
      line-height: 1.4;
    }
    .rider-deadline-alert.alert-platform_intervention {
      border-color: rgba(190, 68, 52, .18);
      background: #fff4f1;
    }
    .rider-deadline-alert small {
      color: #9b5b00;
      font-weight: 650;
      white-space: nowrap;
    }
    .rider-delay-reason-picker {
      position: relative;
      flex: none;
    }
    .rider-delay-reason-action {
      min-width: 92px;
      padding: 7px 12px;
      border: 1px solid rgba(177, 120, 14, .2);
      border-radius: 999px;
      background: #ffdc63;
      color: #604300;
      font-size: 12px;
      font-weight: 650;
      line-height: 1.2;
      text-align: center;
      cursor: pointer;
      list-style: none;
      box-shadow: 0 2px 6px rgba(146, 96, 0, .09);
    }
    .rider-delay-reason-action::-webkit-details-marker {
      display: none;
    }
    .rider-delay-reason-picker[open] .rider-delay-reason-action {
      background: #f8cf47;
    }
    .rider-deadline-alert form {
      display: flex;
      align-items: center;
      gap: 6px;
      margin: 7px 0 0;
    }
    .rider-deadline-alert select {
      min-height: 32px;
      padding: 5px 24px 5px 8px;
      font-size: 12px;
    }
    .rider-deadline-alert .btn.mini {
      min-height: 32px;
      padding: 5px 10px;
      font-size: 12px;
    }
    .delivery-order-actions.delivery-complete-actions .rider-cancel-form {
      grid-column: 1;
      justify-self: start;
    }
    .delivery-order-actions.delivery-complete-actions .rider-delivery-proof {
      grid-column: 2;
      width: 100%;
    }
    .rider-photo-delivery {
      display: block;
      text-align: center;
      cursor: pointer;
    }
    .rider-photo-delivery input {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }
    .order-item-list {
      display: grid;
      gap: 6px;
      margin: 10px 0;
    }
    .order-item-line {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      padding: 8px 10px;
      border-radius: 10px;
      background: #fbfaf2;
      font-size: 13px;
    }
    .member-hero {
      min-height: 274px;
      margin: -12px -16px 14px;
      padding: 28px;
      background: #d9d6ce;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 16px;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid rgba(29, 29, 31, .06);
    }
    .member-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      display: block;
      background:
        linear-gradient(90deg, rgba(20,23,23,.16) 0%, rgba(20,23,23,.08) 50%, rgba(20,23,23,.16) 100%),
        linear-gradient(180deg, rgba(20,24,27,.02) 0%, rgba(20,24,27,.10) 52%, rgba(18,20,21,.48) 100%);
      pointer-events: none;
    }
    .member-library-photo {
      position: absolute;
      z-index: 0;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 68%;
      opacity: .88;
      filter: saturate(.82) contrast(.98) brightness(.94);
      pointer-events: none;
    }
    .member-avatar-wrap,
    .member-info,
    .member-profile-link,
    .member-checkin {
      position: relative;
      z-index: 1;
    }
    .member-profile-link {
      display: flex;
      align-items: center;
      gap: 16px;
      min-width: 0;
      flex: 1;
      color: var(--text);
      text-decoration: none;
    }
    .member-avatar {
      width: 86px;
      height: 86px;
      min-width: 86px;
      min-height: 86px;
      flex: 0 0 86px;
      display: block;
      aspect-ratio: 1 / 1;
      border-radius: 50%;
      object-fit: cover;
      background: #fff;
      border: 3px solid #fff;
      box-shadow: 0 4px 14px rgba(23, 28, 32, .16);
    }
    .member-hero .member-avatar {
      transform: none;
    }
    .member-avatar-wrap {
      width: 86px;
      height: 86px;
      flex: 0 0 86px;
    }
    .member-avatar.placeholder {
      background:
        radial-gradient(circle at 50% 38%, #d7d8dc 0 18%, transparent 19%),
        radial-gradient(circle at 50% 76%, #d7d8dc 0 30%, transparent 31%),
        #f7f7f8;
    }
    .member-info {
      min-width: 0;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 7px;
      padding: 0;
      position: relative;
      transform: none;
    }
    .member-info.logged-in {
      transform: none;
    }
    .member-name {
      position: static;
      display: block;
      width: auto;
      font-size: 24px;
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -.02em;
      color: #fff;
      text-shadow: 0 1px 4px rgba(0,0,0,.42);
      max-width: 100%;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }
    .member-name-line-web {
      width: 100%;
      min-width: 0;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .member-name-line-web .member-name {
      max-width: calc(100% - 42px);
    }
    .member-honor-badge-web {
      width: 34px;
      height: 41px;
      flex: 0 0 34px;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: transparent;
      opacity: 1;
      filter: brightness(1.18) saturate(1.14) contrast(1.04) drop-shadow(0 1px 1px rgba(255,255,255,.58)) drop-shadow(0 2px 5px rgba(51,39,8,.22));
      cursor: pointer;
      transition: transform .16s ease;
    }
    .member-honor-badge-web:hover { transform: translateY(-1px) scale(1.03); }
    .rider-badge-sprite-web {
      position:relative;
      display:block;
      width:100%;
      height:100%;
      overflow:hidden;
    }
    .rider-badge-sprite-web img { position:absolute;top:-7.5%;left:0;width:400%;height:auto;max-width:none; }
    .rider-badge-sprite-web.rider_rookie img { left:-3.3%; }
    .rider-badge-sprite-web.rider_elite img { left:-100%; }
    .rider-badge-sprite-web.rider_expert img { left:-198.25%; }
    .rider-badge-sprite-web.rider_master img { left:-299%; }
    .rider-badge-sprite-web.merchant_rookie img { left:0; }
    .rider-badge-sprite-web.merchant_silver img { left:-100%; }
    .rider-badge-sprite-web.merchant_gold img { left:-200%; }
    .rider-badge-sprite-web.merchant_crown img { left:-300%; }
    .rider-badge-sprite-web.consumer_rookie img { left:0; }
    .rider-badge-sprite-web.consumer_talent img { left:-100%; }
    .rider-badge-sprite-web.consumer_expert img { left:-200%; }
    .rider-badge-sprite-web.consumer_navigator img { left:-300%; }
    .badge-detail-panel { width:min(420px,calc(100% - 28px));text-align:center;border:1px solid rgba(208,166,56,.2);border-radius:22px;background:linear-gradient(180deg,#fffefb,#fff 64%);box-shadow:0 24px 70px rgba(17,17,15,.24); }
    .badge-detail-panel .info-sheet-body { display:flex;flex-direction:column;align-items:center;padding:24px 26px 22px; }
    .badge-detail-web-kicker { color:#9a7720;font-size:12px;font-weight:750;letter-spacing:.18em; }
    .badge-detail-web-art { position:relative;width:150px;height:150px;margin:6px 0 0;display:flex;align-items:center;justify-content:center; }
    .badge-detail-web-art::before { content:"";position:absolute;inset:10px;border-radius:50%;background:radial-gradient(circle,rgba(255,218,94,.26),rgba(255,232,153,.1) 54%,transparent 72%); }
    .badge-detail-panel h3 { margin:4px 0 0;font-size:24px; }
    .badge-detail-panel p { margin:10px 0 18px;color:var(--muted);line-height:1.65; }
    .badge-detail-web-icon { z-index:1;width:112px;height:135px;flex:0 0 135px;filter:drop-shadow(0 8px 14px rgba(92,65,8,.18)); }
    .badge-detail-web-time { box-sizing:border-box;width:100%;display:flex;justify-content:space-between;gap:16px;padding:12px 14px;border:1px solid rgba(41,38,31,.055);border-radius:12px;background:#f8f6f0;color:var(--muted);font-size:13px; }
    .badge-detail-web-time strong { color:#343129; }
    .badge-detail-web-confirm { min-width:150px;margin-top:18px;border-radius:999px; }
    .member-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .member-edit-hint {
      color: rgba(255,255,255,.78);
      font-size: 12px;
      font-weight: 500;
      text-shadow: 0 1px 4px rgba(0,0,0,.36);
    }
    .member-badge,
    .member-points {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 5px 10px;
      font-size: 13px;
      font-weight: 800;
    }
    .member-badge {
      background: rgba(255,255,255,.65);
      color: var(--text-secondary, #4f534e);
      border: 1px solid rgba(255,255,255,.76);
    }
    .member-points {
      background: #f4ead0;
      color: #5f4b1f;
      border-radius: 999px;
      padding: 5px 10px;
      font-size: 11px;
      font-weight: 600;
    }
    .member-checkin {
      min-width: 78px;
      min-height: 31px;
      color: #5b4412;
      background: rgba(255,250,236,.76);
      border: 1px solid rgba(255,255,255,.68);
      border-radius: 999px;
      padding: 6px 12px;
      box-shadow: 0 3px 10px rgba(41,35,22,.10);
      backdrop-filter: blur(12px);
      text-decoration: none;
      font-weight: 600;
      margin-right: 0;
      white-space: nowrap;
      transition: background .16s ease, transform .16s ease;
    }
    .member-checkin:hover { background: rgba(255,246,219,.90); }
    .member-checkin:active { transform: scale(.95); }
    .rider-presence-card {
      margin: 14px 0;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      border: 1px solid rgba(29, 29, 31, .08);
      background: rgba(255, 255, 255, .86);
      backdrop-filter: saturate(160%) blur(18px);
    }
    .rider-presence-copy {
      min-width: 0;
      display: grid;
      gap: 3px;
    }
    .rider-presence-kicker,
    .rider-presence-copy small {
      color: #77746c;
      font-size: 12px;
      font-weight: 600;
    }
    .rider-presence-copy strong {
      font-size: 17px;
      font-weight: 600;
      line-height: 1.25;
      letter-spacing: -.01em;
    }
    .rider-status-switch {
      position: relative;
      flex: 0 0 52px;
      width: 52px;
      height: 31px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: #d2d2d7;
      appearance: none;
      cursor: pointer;
      transition: background-color .2s ease, transform .16s ease;
    }
    .rider-status-switch.is-on {
      background: #ffd43b;
    }
    .rider-status-switch:active {
      transform: scale(.95);
    }
    .rider-status-switch:focus-visible {
      outline: 2px solid rgba(232, 180, 0, .52);
      outline-offset: 3px;
    }
    .rider-status-switch-knob {
      position: absolute;
      top: 2px;
      left: 2px;
      width: 27px;
      height: 27px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 1px 3px rgba(0, 0, 0, .22);
      transition: transform .22s cubic-bezier(.22, .61, .36, 1);
    }
    .rider-status-switch.is-on .rider-status-switch-knob {
      transform: translateX(21px);
    }
    .rider-region-field {
      margin: 0;
      padding: 0;
      border: 0;
    }
    .rider-region-field legend {
      margin-bottom: 8px;
      font-weight: 700;
    }
    .rider-region-options {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }
    .rider-region-option {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 38px;
      padding: 0 14px;
      border: 1px solid #e7dfc7;
      border-radius: 12px;
      background: #fffdf7;
      cursor: pointer;
    }
    .rider-region-field small {
      display: block;
      margin-top: 8px;
      color: #77746c;
    }
    .rider-capacity-summary {
      margin-bottom: 16px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }
    .rider-capacity-summary > div {
      padding: 12px 14px;
      border: 1px solid #ebe4d1;
      border-radius: 12px;
      background: #fffdf7;
      display: grid;
      gap: 4px;
    }
    .rider-capacity-summary span {
      color: #77746c;
      font-size: 12px;
    }
    .delivery-incentive-tag {
      display: inline-flex;
      justify-self: start;
      align-items: center;
      gap: 6px;
      margin: 0 0 2px -13px;
      padding: 6px 11px 6px 9px;
      border: 1px solid rgba(205, 157, 31, .2);
      border-left: 2px solid #e0aa16;
      border-radius: 0 999px 999px 0;
      background: linear-gradient(90deg, #ffebaa 0%, #fff5d4 100%);
      color: #624a0d;
      box-shadow: 0 1px 4px rgba(114, 82, 11, .04);
      font-size: 12px;
      font-weight: 600;
      line-height: 1;
      letter-spacing: -.01em;
    }
    .delivery-incentive-dot {
      width: 5px;
      height: 5px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: #dca30d;
      box-shadow: 0 0 0 2px rgba(220, 163, 13, .1);
    }
    .delivery-order-fee small {
      display: inline;
      margin: 0;
      color: #817867;
      font-size: 11px;
      font-weight: 500;
    }
    .delivery-wait-choice {
      margin-top: 12px;
      padding: 10px 12px;
      border: 1px solid rgba(222, 176, 45, .16);
      border-radius: 10px;
      background: #fff9e7;
      display: grid;
      gap: 5px;
    }
    .delivery-wait-choice > strong {
      color: #26231c;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.3;
    }
    .delivery-wait-choice > .muted {
      font-size: 11px;
      line-height: 1.4;
    }
    .delivery-wait-choice-actions {
      display: flex;
      gap: 8px;
      justify-content: flex-end;
    }
    .delivery-wait-choice.delivery-capacity-warning {
      margin: 0 0 12px;
      border-color: rgba(211, 143, 43, .2);
      background: #fff7e8;
    }
    .rider-estimated-delivery {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin: 0 0 10px;
      padding: 0 1px 10px;
      border-bottom: 1px solid #efede7;
      color: #777970;
      font-size: 12px;
      line-height: 1.3;
    }
    .rider-estimated-delivery strong {
      color: #292a26;
      font-size: 15px;
      font-weight: 700;
      white-space: nowrap;
    }
    .rider-estimated-delivery-label {
      color: #55574f;
      font-size: 14px;
      font-weight: 600;
    }
    .subpage-head {
      min-height: 58px;
      margin: -12px -16px 12px;
      padding: 10px 16px;
      display: grid;
      grid-template-columns: 64px minmax(0, 1fr) 64px;
      align-items: center;
      background: #fff;
      border-bottom: 1px solid var(--line);
    }
    .subpage-head h1 {
      margin: 0;
      text-align: center;
      font-size: 21px;
      line-height: 1.15;
      font-weight: 900;
    }
    .back-link {
      color: #34342f;
      text-decoration: none;
      font-size: 14px;
      font-weight: 900;
    }
    .account-security-card {
      max-width: 760px;
      margin: 0 auto 88px;
    }
    .account-security-actions {
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid var(--line);
    }
    .account-user-id-field {
      margin: 2px 0 16px;
    }
    .account-user-id-field > div {
      color: #24241f;
      font-size: 14px;
      font-weight: 700;
    }
    .account-user-id-field small {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.55;
    }
    .account-avatar-edit {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--line);
    }
    .account-avatar-edit h3 {
      margin: 0 0 4px;
      font-size: 18px;
    }
    .btn.wide {
      width: 100%;
      justify-content: center;
    }
    .member-panel {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 18px;
      margin-bottom: 14px;
    }
    .member-panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--line);
      margin-bottom: 14px;
    }
    .member-panel-head h3 {
      margin: 0;
      font-size: 20px;
    }
    .member-panel-head a {
      color: var(--muted);
      text-decoration: none;
      font-size: 14px;
    }
    .member-action-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
    }
    .member-action-grid.five {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .member-action {
      min-height: 92px;
      text-decoration: none;
      color: #33342f;
      border: 0;
      display: grid;
      justify-items: center;
      align-content: center;
      gap: 6px;
      text-align: center;
      border-radius: var(--radius);
      background: #fff;
      cursor: pointer;
      font: inherit;
    }
    .member-action:hover {
      background: #fbfaf2;
    }
    .member-action-icon {
      width: 38px;
      height: 38px;
      border-radius: 11px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 0;
      background: #f3f2ec;
      color: #5f625b;
      font-weight: 900;
      font-size: 18px;
    }
    .member-action-icon svg {
      width: 22px;
      height: 22px;
      display: block;
      stroke: currentColor;
      stroke-width: 2.1;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }
    .member-action-icon img {
      width: 22px;
      height: 22px;
      display: block;
    }
    .member-action-icon.blue,
    .member-action-icon.pink,
    .member-action-icon.green,
    .member-action-icon.red,
    .member-action-icon.orange,
    .member-action-icon.purple { background: #f3f2ec; color: #5f625b; }
    .coupon-page-shell {
      width: min(760px, 100%);
      margin: 0 auto;
    }
    .coupon-points-entry {
      position: relative;
      min-height: 76px;
      margin-bottom: 12px;
      padding: 14px 140px 14px 78px;
      display: flex;
      align-items: center;
      border: 1px solid rgba(205, 164, 35, .22);
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, #fffef8 0%, #fff6d8 100%);
      box-shadow: var(--shadow);
    }
    .coupon-points-entry-icon {
      position: absolute;
      left: 16px;
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: rgba(255, 215, 75, .34);
      display: grid;
      place-items: center;
    }
    .coupon-points-entry-icon img { width: 25px; height: 25px; }
    .coupon-points-entry-copy { min-width: 0; display: grid; gap: 3px; }
    .coupon-points-entry-copy strong { color: var(--text); font-size: 16px; }
    .coupon-points-entry-copy small { color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .coupon-points-entry-value { position: absolute; right: 16px; display: grid; grid-template-columns: auto auto; align-items: baseline; justify-content: end; gap: 3px 5px; color: #75580e; }
    .coupon-points-entry-value > strong { font-size: 20px; }
    .coupon-points-entry-value > small { font-size: 11px; }
    .coupon-points-entry-value > em { grid-column: 1 / -1; color: #9a8a64; font-size: 11px; font-style: normal; text-align: right; }
    .badges-page-shell { width: min(760px, 100%); margin: 0 auto; }
    .badges-page-intro { margin-bottom: 14px; padding: 2px 2px 0; display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; }
    .badges-page-intro h2 { margin: 0; font-size: 22px; }
    .badges-page-intro p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
    .badges-page-intro > span { flex: none; padding: 5px 10px; border-radius: 999px; background: var(--yellow-soft); color: #765b11; font-size: 12px; font-weight: 800; }
    .earned-badge-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
    .earned-badge-card { min-height: 250px; padding: 20px 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: center; color: var(--text); font: inherit; text-align: center; cursor: pointer; transition: transform .16s ease, box-shadow .16s ease; }
    .earned-badge-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37, 33, 23, .10); }
    .earned-badge-art { width: 88px; height: 106px; margin-bottom: 6px; filter: brightness(1.08) saturate(1.06) drop-shadow(0 6px 10px rgba(82,60,8,.15)); }
    .earned-badge-card > strong { font-size: 16px; }
    .earned-badge-card > small { margin-top: 5px; color: #8c8065; }
    .earned-badge-card > time { margin-top: auto; padding-top: 14px; color: var(--muted); font-size: 11px; }
    .badges-empty-state { min-height: 420px; padding: 50px 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
    .badges-empty-state > span { width: 74px; height: 74px; border-radius: 22px; background: var(--yellow-soft); display: grid; place-items: center; }
    .badges-empty-state img { width: 38px; height: 38px; }
    .badges-empty-state h2 { margin: 20px 0 0; font-size: 21px; }
    .badges-empty-state p { margin: 9px 0 0; color: var(--muted); font-size: 13px; }
    @media (max-width: 620px) {
      .earned-badge-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .earned-badge-card { min-height: 226px; }
    }
    .order-head-back {
      position: relative;
      z-index: 2;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .76);
      color: var(--text);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 28px;
      line-height: 1;
      box-shadow: inset 0 0 0 1px rgba(126, 91, 0, .10);
    }
    .coupon-tabbar {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin-bottom: 12px;
      padding: 5px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: #fff;
      box-shadow: var(--shadow);
    }
    .coupon-tab {
      min-height: 42px;
      border-radius: var(--radius-sm);
      color: var(--muted);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 14px;
      font-weight: 800;
    }
    .coupon-tab.active {
      background: var(--yellow-soft);
      color: var(--text);
      box-shadow: inset 0 0 0 1px rgba(176, 128, 0, .16);
    }
    .coupon-empty-state {
      min-height: 420px;
      padding: 58px 24px 34px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: #fff;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .coupon-empty-icon {
      position: relative;
      width: 94px;
      height: 74px;
      margin-bottom: 24px;
      border: 1px solid #ead898;
      border-radius: 16px;
      background: linear-gradient(135deg, #fff8d9 0%, #ffedac 100%);
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .coupon-empty-icon::before,
    .coupon-empty-icon::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #fff;
      transform: translateY(-50%);
    }
    .coupon-empty-icon::before { left: -10px; }
    .coupon-empty-icon::after { right: -10px; }
    .coupon-empty-icon img {
      width: 34px;
      height: 34px;
    }
    .coupon-empty-state h2 {
      margin: 0;
      font-size: 22px;
      line-height: 1.25;
    }
    .coupon-empty-state p {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 14px;
    }
    .coupon-home-action.btn {
      min-height: 42px;
      margin-top: 24px;
      padding: 9px 28px;
      border-radius: 999px;
      background: var(--yellow);
      color: var(--text);
      font-size: 14px;
      box-shadow: 0 4px 12px rgba(146, 105, 0, .14);
    }
    .coupon-no-selection {
      min-height: 46px;
      margin-bottom: 12px;
      padding: 0 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: #fff;
      color: var(--text);
      display: flex;
      align-items: center;
      text-decoration: none;
      font-size: 14px;
      font-weight: 800;
      box-shadow: var(--shadow);
    }
    .coupon-list { display: grid; gap: 12px; }
    .coupon-card {
      position: relative;
      min-height: 108px;
      padding: 18px 92px 18px 132px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: #fff;
      display: flex;
      align-items: center;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .coupon-amount {
      position: absolute;
      inset: 0 auto 0 0;
      width: 116px;
      padding: 12px;
      border-right: 1px dashed rgba(154,120,28,.3);
      background: linear-gradient(145deg, #fff3bd 0%, #f2cf55 100%);
      display: grid;
      place-content: center;
      justify-items: center;
      color: #6e5310;
    }
    .coupon-amount strong { font-size: 34px; line-height: 1; }
    .coupon-amount span { margin-top: 7px; font-size: 12px; font-weight: 800; }
    .coupon-info { min-width: 0; flex: 1; display: grid; gap: 5px; }
    .coupon-title-line {
      position: relative;
      width: fit-content;
      max-width: calc(100% - 24px);
    }
    .coupon-info h3 { margin: 0; font-size: 17px; white-space: nowrap; }
    .coupon-rule-help {
      position: absolute;
      right: -19px;
      top: -7px;
      width: 18px;
      height: 18px;
      padding: 0;
      border: 1px solid rgba(126,99,28,.42);
      border-radius: 50%;
      background: rgba(255,252,239,.92);
      color: #80671f;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 900;
      line-height: 1;
      cursor: pointer;
    }
    .coupon-info small { color: var(--muted); }
    .coupon-info em { color: var(--danger); font-size: 12px; font-style: normal; font-weight: 800; }
    .coupon-select-action,
    .coupon-state-label {
      position: absolute;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      min-width: 56px;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--yellow);
      color: var(--text);
      text-align: center;
      text-decoration: none;
      font-size: 13px;
      font-weight: 900;
    }
    .coupon-state-label { background: #f0efe9; color: var(--muted); }
    .coupon-card.is-disabled { opacity: .58; filter: grayscale(.3); }
    .coupon-rule-sheet .info-sheet-panel { width: min(460px, calc(100% - 28px)); }
    .coupon-rule-body > strong { display: block; color: #795a0e; font-size: 16px; }
    .coupon-rule-body ol { margin: 14px 0 20px; padding-left: 22px; color: #626158; }
    .coupon-rule-body li { margin: 7px 0; line-height: 1.55; }
    .checkout-coupon-row { color: inherit; text-decoration: none; align-items: center; }
    .checkout-coupon-value { display: flex; align-items: center; gap: 8px; color: #856616; font-size: 13px; font-weight: 800; white-space: nowrap; }
    .checkout-coupon-value strong { color: var(--danger); font-size: 15px; }
    .checkout-coupon-value b { color: var(--muted); font-size: 22px; line-height: 1; }
    .member-action span:not(.member-action-icon) {
      font-size: 14px;
      line-height: 1.2;
    }
    .member-action strong {
      font-size: 12px;
      color: var(--muted);
      font-weight: 700;
    }
    .profile-edit-card {
      display: none;
      max-width: 760px;
      margin-bottom: 88px;
    }
    .profile-edit-card.open {
      display: block;
    }
    .order-guide-list {
      display: grid;
      gap: 12px;
    }
    .order-guide-list div {
      display: grid;
      gap: 4px;
      padding: 12px;
      border-radius: var(--radius);
      background: #fbfaf2;
    }
    .desktop-only { display: block; }
    .mobile-only { display: none; }
    .mobile-card-list {
      display: grid;
      gap: 10px;
      margin-top: 10px;
    }
    .mobile-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      padding: 12px;
    }
    .mobile-card-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 8px;
    }
    .mobile-card-title {
      font-weight: 600;
      margin: 0;
      font-size: 15px;
    }
    .batch-panel .batch-controls { display: none; }
    .batch-panel.batch-mode .batch-controls { display: flex; }
    .batch-col-cell { width: 44px; }
    .batch-col-content { display: none; }
    .batch-panel.batch-mode .batch-col-content { display: inline-flex; align-items: center; }
    .batch-panel.batch-mode th .batch-col-content { display: inline; }
    .batch-panel.batch-mode td .batch-col-content { display: inline-flex; align-items: center; }
    .batch-toggle-btn {
      min-height: 32px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
      color: #34342f;
      padding: 6px 12px;
      font-size: 13px;
      font-weight: 800;
      cursor: pointer;
      box-shadow: 0 1px 2px rgba(23, 23, 20, .04);
    }
    .batch-panel.batch-mode .batch-toggle-btn {
      background: var(--yellow);
      border-color: #efc836;
      color: #171714;
    }
    .compact-batch-controls {
      align-items: center;
      gap: 8px;
      padding: 10px;
      margin: 8px 0 10px;
      border-radius: 12px;
      background: #fbfaf2;
      border: 1px solid var(--line);
    }
    .compact-batch-controls select,
    .compact-batch-controls input {
      min-height: 34px;
      padding: 7px 10px;
      font-size: 13px;
    }
    .compact-batch-controls .btn {
      min-height: 34px;
      padding: 7px 12px;
      font-size: 13px;
    }
    .batch-action-dock {
      position: fixed;
      left: 50%;
      bottom: 80px;
      transform: translateX(-50%);
      width: min(760px, calc(100vw - 24px));
      z-index: 70;
      align-items: center;
      gap: 8px;
      padding: 10px;
      border-radius: 18px;
      background: #171714;
      color: #fff;
      box-shadow: 0 14px 34px rgba(23, 23, 20, .25);
    }
    .batch-selected-count {
      min-width: 76px;
      font-size: 13px;
      font-weight: 900;
      white-space: nowrap;
    }
    .batch-action-dock select,
    .batch-action-dock input {
      min-height: 38px;
      border: 0;
      border-radius: 999px;
      padding: 8px 12px;
      font-size: 13px;
      background: #fff;
      color: #171714;
    }
    .batch-action-dock select {
      width: 118px;
      flex: 0 0 118px;
    }
    .batch-action-dock input {
      flex: 1;
      min-width: 140px;
    }
    .batch-action-dock .btn {
      min-height: 38px;
      padding: 8px 14px;
      border-radius: 999px;
      background: var(--yellow);
      color: #171714;
      white-space: nowrap;
    }
    .batch-panel.batch-mode {
      padding-bottom: 84px;
    }
    .merchant-order-check {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      border: 2px solid #d9d6c6;
      background: #fff;
      align-items: center;
      justify-content: center;
      flex: 0 0 28px;
      cursor: pointer;
    }
    .merchant-order-check input {
      width: 16px;
      height: 16px;
      accent-color: var(--yellow-strong);
      cursor: pointer;
    }
    .batch-link-row {
      display: inline-flex;
      gap: 4px;
      align-items: center;
    }
    .batch-link-row button {
      border: 0;
      background: transparent;
      color: inherit;
      font-size: 12px;
      font-weight: 800;
      padding: 6px;
      cursor: pointer;
    }
    .batch-link-row button:hover {
      color: #171714;
      text-decoration: underline;
    }
    @media (max-width: 720px) {
      .container { padding: 0 12px 28px; }
      .topbar-inner { align-items: stretch; flex-direction: column; }
      .topbar-head { width: 100%; }
      .order-page-head {
        margin: -12px -12px 12px;
      }
      .order-title-bar {
        min-height: 54px;
        grid-template-columns: 48px minmax(0, 1fr) 48px;
        padding: 9px 12px 7px;
      }
      .consumer-order-head .order-title-bar {
        min-height: 68px;
      }
      .order-head-campus-line {
        right: -44px;
        bottom: -18px;
        width: 220px;
        height: 82px;
        opacity: .26;
      }
      .consumer-order-head .order-tabbar {
        border-radius: 22px 22px 0 0;
      }
      .order-empty-state {
        min-height: 500px;
        padding: 48px 8px 24px;
      }
      .order-empty-art {
        width: 88%;
        max-height: 235px;
        margin-bottom: 24px;
      }
      .order-empty-state h2 {
        font-size: 27px;
      }
      .order-empty-state p {
        font-size: 15px;
      }
      .order-empty-action.btn {
        width: min(420px, 86%);
        min-height: 50px;
        margin-top: 27px;
        font-size: 16px;
      }
      .delivery-page-head .order-title-bar {
        min-height: 68px;
        grid-template-columns: 84px minmax(0, 1fr) 84px;
      }
      .order-title-bar h1 {
        font-size: 20px;
      }
      .order-tabbar {
        min-height: 52px;
      }
      .order-tab {
        font-size: 13px;
        gap: 4px;
      }
      .merchant-order-tabs .order-tab {
        font-size: 12px;
      }
      .order-tab em {
        min-width: 18px;
        height: 18px;
        padding: 0 5px;
        font-size: 11px;
      }
      .merchant-order-tools {
        align-items: stretch;
        flex-direction: column;
      }
      .batch-action-dock {
        bottom: 70px;
        width: calc(100vw - 16px);
        padding: 8px;
        gap: 6px;
        border-radius: 16px;
      }
      .batch-selected-count {
        min-width: 62px;
        font-size: 12px;
      }
      .batch-action-dock select {
        width: 96px;
        flex-basis: 96px;
      }
      .batch-action-dock input {
        min-width: 0;
        width: 100%;
        flex-basis: 100%;
        order: 5;
      }
      .batch-link-row {
        display: none;
      }
      .brand-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 1px;
      }
      .brand-slogan {
        display: inline;
        font-size: 11px;
        line-height: 1.2;
        white-space: normal;
      }
      .nav { justify-content: flex-start; }
      .hero { padding: 18px; }
      .card { padding: 13px; border-radius: var(--radius); }
      .btn { padding: 8px 12px; font-size: 13px; }
      .pill { padding: 6px 11px; font-size: 13px; }
      .grid { grid-template-columns: 1fr; gap: 12px; }
      .grid.login-grid { grid-template-columns: 1fr; }
      .login-page-shell {
        margin-top: 12px;
      }
      .login-compact-card {
        padding: 28px 20px 23px;
        border-radius: 20px;
      }
      .login-platform-logo {
        width: 76px;
        height: 76px;
        margin-bottom: 14px;
      }
      .login-compact-head {
        margin-bottom: 25px;
      }
      .login-compact-head h1 {
        font-size: 23px;
      }
      .login-code-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 108px;
      }
      .login-code-button {
        min-width: 0;
      }
      .hours-avatar-row { grid-template-columns: 1fr; }
      .home-mobile-head {
        position: sticky;
        top: 0;
        z-index: 8;
        margin: 0 -12px 12px;
        padding: 8px 12px 10px;
        background: rgba(251, 250, 242, 0.96);
        border-bottom: 1px solid rgba(223, 222, 211, 0.82);
        backdrop-filter: blur(10px);
      }
      .home-search-card {
        margin: 0;
      }
      .home-search-card input {
        min-width: 0 !important;
      }
      .home-location-line {
        align-items: center;
        justify-content: flex-start;
      }
      .home-location-value {
        font-size: 15px;
        white-space: normal;
        line-height: 1.22;
      }
      .campus-area-switch {
        max-width: 148px;
      }
      .campus-area-option {
        min-height: 28px;
        padding: 5px 8px;
        font-size: 12px;
      }
      .delivery-slot-row {
        gap: 8px;
      }
      .delivery-slot-card {
        flex-basis: 84px;
        min-height: 64px;
        padding: 7px 8px;
      }
      .delivery-slot-time {
        font-size: 18px;
      }
      .campus-banner {
        min-height: 88px;
        padding: 12px;
      }
      .campus-notice-link {
        font-size: 18px;
      }
      .campus-banner-logo {
        width: 54px;
        height: 54px;
        border-radius: 14px;
      }
      .delivery-wave-section {
        padding: 11px;
        margin-bottom: 12px;
      }
      .delivery-wave-head {
        align-items: flex-start;
        margin-bottom: 10px;
      }
      .delivery-wave-head h3 {
        font-size: 16px;
      }
      .delivery-wave-head > span {
        font-size: 11px;
        white-space: nowrap;
      }
      .home-category-row {
        gap: 7px;
      }
      .home-category {
        min-height: 54px;
        font-size: 13px;
        gap: 4px;
      }
      .home-category-icon,
      .home-category-icon svg,
      .home-category-icon img {
        width: 20px;
        height: 20px;
      }
      .store-card-top {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 0;
      }
      .store-card-avatar {
        width: 86px;
        height: 86px;
        margin-bottom: 0;
        border-radius: var(--radius-sm);
        flex-shrink: 0;
      }
      .store-card-placeholder {
        width: 86px;
        height: 86px;
        aspect-ratio: auto;
        margin-bottom: 0;
        flex-shrink: 0;
        font-size: 12px;
      }
      .store-card-main {
        gap: 6px;
      }
      .store-card-title-row h3 {
        font-size: 16px;
      }
      .store-card-desc {
        display: block;
        overflow: hidden;
        font-size: 12px;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
      .store-card-facts {
        flex-wrap: nowrap;
        gap: 4px;
        overflow: hidden;
      }
      .store-card-facts span {
        min-height: 21px;
        padding: 2px 7px;
        font-size: 10px;
      }
      .store-card-location {
        font-size: 11px;
      }
      .store-card-meta-line {
        margin-bottom: 6px;
      }
      .store-card-meta-line.space-between {
        justify-content: flex-start;
      }
      .store-menu-layout {
        grid-template-columns: 62px minmax(0, 1fr);
        gap: 8px;
      }
      .mini-store-head {
        margin: 0 -2px 8px;
        padding: 13px;
      }
      .mini-store-profile {
        gap: 11px;
      }
      .mini-store-avatar-wrap {
        width: 66px;
        height: 66px;
        flex-basis: 66px;
        border-radius: 14px;
      }
      .mini-store-avatar-placeholder img {
        width: 31px;
        height: 31px;
      }
      .mini-store-title-row h1 {
        font-size: 19px;
      }
      .mini-store-desc {
        font-size: 12px;
        margin-top: 4px;
      }
      .mini-store-meta {
        margin-top: 7px;
      }
      .mini-store-notice {
        margin-top: 12px;
        padding-top: 10px;
      }
      .store-search-bar {
        top: 0;
        margin: -2px -12px 10px;
        padding: 8px 12px;
        grid-template-columns: 40px minmax(0, 1fr);
      }
      .store-back-pill,
      .store-search-field input {
        min-height: 40px;
      }
      .store-back-pill {
        width: 40px;
        height: 40px;
        font-size: 30px;
      }
      .store-category-nav {
        top: 58px;
        max-height: calc(100vh - 220px);
      }
      .store-category-nav a {
        min-height: 54px;
        padding: 8px 5px;
        font-size: 12px;
        line-height: 1.2;
      }
      .dish-category-section {
        scroll-margin-top: 130px;
      }
      .dish-list {
        gap: 10px;
      }
      .dish-list .dish-card {
        padding: 6px 0 10px;
      }
      .dish-list .dish-card h3 {
        font-size: 15px;
        line-height: 1.25;
      }
      .dish-card-top {
        display: flex;
        gap: 12px;
        align-items: flex-start;
      }
      .dish-card-avatar {
        width: 68px;
        height: 68px;
        margin-bottom: 0;
        border-radius: var(--radius);
        flex-shrink: 0;
      }
      .dish-card-placeholder {
        width: 68px;
        height: 68px;
        margin-bottom: 0;
        flex-shrink: 0;
        font-size: 12px;
      }
      .desktop-only { display: none !important; }
      .mobile-only { display: block !important; }
      .dish-order-form {
        gap: 8px;
        align-items: stretch;
      }
      .dish-buy-row {
        align-items: center;
        flex-direction: row;
        gap: 8px;
        margin-top: 8px;
      }
      .dish-add-button {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
      }
      .floating-cart {
        bottom: 70px;
        width: calc(100vw - 20px);
        padding: 9px 10px;
      }
      .floating-cart-icon {
        width: 38px;
        height: 38px;
        border-radius: 13px;
      }
      .floating-cart-title {
        font-size: 14px;
      }
      .floating-cart .btn {
        padding: 8px 11px;
      }
      .cart-sheet-panel {
        max-height: 78vh;
        border-radius: 16px 16px 0 0;
      }
      .option-sheet-panel {
        width: min(calc(100vw - 32px), 430px);
        max-height: min(82vh, 620px);
        border-radius: 18px;
      }
      #dish-option-form {
        max-height: calc(min(82vh, 620px) - 84px);
      }
      .checkout-grid {
        grid-template-columns: 1fr;
      }
      .checkout-card {
        padding: 12px;
      }
      .checkout-store-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
      }
      .checkout-choice-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
      .checkout-choice > span { padding-inline: 6px; }
      .checkout-choice strong { font-size: 13px; }
      .checkout-choice small { font-size: 11px; }
      .checkout-item {
        gap: 8px;
      }
      .checkout-submit-bar {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: calc(68px + env(safe-area-inset-bottom));
        z-index: 220;
        margin: 0;
        border-radius: 18px;
      }
      .order-timeline {
        grid-template-columns: repeat(5, minmax(46px, 1fr));
        overflow-x: auto;
        padding-bottom: 2px;
      }
      .order-card-head {
        align-items: stretch;
        flex-direction: column;
      }
      .my-order-card {
        padding: 12px;
      }
      .my-order-head {
        gap: 8px;
        margin-bottom: 9px;
      }
      .my-order-head h3 {
        font-size: 15px;
      }
      .my-order-status {
        font-size: 12px;
      }
      .my-order-summary {
        padding: 9px 0;
        font-size: 13px;
      }
      .order-timeline.compact {
        grid-template-columns: repeat(5, minmax(42px, 1fr));
      }
      .member-hero {
        margin: -12px -12px 12px;
        min-height: 186px;
        padding: 18px 16px;
        gap: 12px;
        background: #d9d6ce;
      }
      .member-profile-link {
        gap: 12px;
      }
      .member-library-photo {
        left: 0;
        width: 100%;
        height: 100%;
        object-position: center 68%;
        opacity: .88;
      }
      .member-avatar {
        width: 58px;
        height: 58px;
        min-width: 58px;
        min-height: 58px;
        flex-basis: 58px;
      }
      .member-hero .member-avatar {
        transform: none;
      }
      .member-avatar-wrap {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
      }
      .member-name {
        font-size: 17px;
      }
      .member-info,
      .member-info.logged-in {
        transform: none;
      }
      .member-checkin {
        min-height: 30px;
        padding: 0 11px;
        margin-right: 0;
        border-radius: 999px;
        color: #5b4412;
        background: rgba(255,250,236,.76);
        border: 1px solid rgba(255,255,255,.68);
        font-size: 12px;
        display: inline-flex;
        align-items: center;
      }
      .member-panel {
        padding: 14px;
      }
      .member-action-grid,
      .member-action-grid.five {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
      }
      .member-action-grid.five .member-action {
        min-height: 84px;
      }
      .member-action {
        min-height: 88px;
      }
      .member-action-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: 16px;
      }
      .member-action-icon svg,
      .member-action-icon img {
        width: 20px;
        height: 20px;
      }
      .coupon-page-head {
        margin-bottom: 12px;
      }
      .coupon-empty-state {
        min-height: 390px;
        padding: 48px 18px 30px;
      }
      .coupon-empty-icon {
        width: 84px;
        height: 66px;
        margin-bottom: 20px;
      }
      .coupon-empty-state h2 {
        font-size: 20px;
      }
      .member-action span:not(.member-action-icon) {
        font-size: 13px;
      }
      .merchant-hours-fields,
      .merchant-dish-form-grid {
        grid-template-columns: 1fr;
      }
      .merchant-dish-toolbar {
        align-items: stretch;
      }
      .merchant-dish-toolbar > .row {
        width: 100%;
      }
      .merchant-dish-toolbar .btn {
        flex: 1;
      }
      .merchant-dish-grid {
        grid-template-columns: 1fr;
      }
      .merchant-dish-card {
        padding: 11px;
      }
      .merchant-dish-card h4 {
        font-size: 15px;
      }
      #platform-store-review > .row.space-between,
      #platform-merchant-review > .row.space-between,
      #platform-avatar-review > .row.space-between,
      #platform-dish-review > .row.space-between,
      #platform-delivery-review > .row.space-between,
      #platform-support-review > .row.space-between {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
      }
      #platform-store-review > .row.space-between > .row,
      #platform-merchant-review > .row.space-between > .row,
      #platform-avatar-review > .row.space-between > .row,
      #platform-dish-review > .row.space-between > .row,
      #platform-delivery-review > .row.space-between > .row,
      #platform-support-review > .row.space-between > .row {
        width: 100%;
        align-items: stretch;
      }
      .platform-review-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
      }
      .platform-review-tabs .pill {
        flex: 0 0 auto;
      }
      .platform-review-page .platform-review-hero {
        padding: 20px 18px;
      }
      .platform-review-page .platform-review-tools {
        display: block;
      }
      .platform-review-nav-groups { grid-template-columns: 1fr; }
      .roster-filter-bar { grid-template-columns: 1fr 1fr; }
      .roster-filter-bar input { grid-column: 1 / -1; }
      .roster-panel-head { align-items: stretch; flex-direction: column; }
      .roster-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .support-role-tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
      .support-role-tab {
        padding-inline: 6px;
      }
      .platform-user-lookup {
        padding: 16px;
      }
      .platform-user-lookup-form {
        padding: 14px;
      }
      .platform-user-lookup-form .row {
        flex-direction: column;
      }
      .platform-user-lookup-form .btn {
        width: 100%;
      }
      .platform-user-report-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .platform-user-report-grid > div:nth-child(3n) {
        border-right: 1px solid #eeece4;
      }
      .platform-user-report-grid > div:nth-child(2n) {
        border-right: 0;
      }
      .platform-review-search {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
      }
      .platform-review-search .btn {
        min-width: 68px;
      }
      .platform-review-search a.btn {
        grid-column: 1 / -1;
        justify-self: start;
      }
      .platform-review-pagination {
        margin-top: 10px;
        justify-content: space-between;
      }
      #platform-store-review form.row,
      #platform-merchant-review form.row,
      #platform-avatar-review form.row,
      #platform-dish-review form.row,
      #platform-delivery-review form.row,
      #platform-support-review form.row {
        gap: 6px;
      }
      #platform-store-review select,
      #platform-merchant-review select,
      #platform-avatar-review select,
      #platform-dish-review select,
      #platform-delivery-review select,
      #platform-support-review select {
        max-width: none !important;
      }
      #platform-store-review .table,
      #platform-merchant-review .table,
      #platform-avatar-review .table,
      #platform-dish-review .table,
      #platform-delivery-review .table,
      #platform-support-review .table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
        white-space: normal;
        border: 1px solid var(--line);
        border-radius: 12px;
      }
      #platform-store-review .table th,
      #platform-store-review .table td,
      #platform-merchant-review .table th,
      #platform-merchant-review .table td,
      #platform-avatar-review .table th,
      #platform-avatar-review .table td,
      #platform-dish-review .table th,
      #platform-dish-review .table td,
      #platform-delivery-review .table th,
      #platform-delivery-review .table td,
      #platform-support-review .table th,
      #platform-support-review .table td {
        font-size: 12px;
        line-height: 1.45;
        padding: 8px 7px;
        vertical-align: top;
      }
      #platform-store-review .table img,
      #platform-merchant-review .table img,
      #platform-avatar-review .table img,
      #platform-dish-review .table img,
      #platform-delivery-review .table img,
      #platform-support-review .table img {
        width: 64px !important;
        height: 48px !important;
      }
      #platform-store-review .btn,
      #platform-merchant-review .btn,
      #platform-avatar-review .btn,
      #platform-dish-review .btn,
      #platform-delivery-review .btn,
      #platform-support-review .btn {
        min-height: 32px;
        padding: 6px 9px;
        font-size: 12px;
      }
      #platform-support-review .merchant-order-actions form.row {
        display: grid;
        grid-template-columns: 1fr auto auto;
        align-items: stretch;
      }
      .option-choice-row {
        padding: 10px;
        gap: 8px;
      }
      .option-choice-main,
      .option-price-field {
        width: 100%;
        min-width: 0;
      }
      .option-add-row {
        gap: 8px;
        align-items: flex-start;
      }
      .option-pill-list {
        gap: 8px;
      }
      .option-pill-list.text-options {
        grid-template-columns: repeat(3, minmax(68px, 98px));
      }
      .option-pill-list.priced-options {
        grid-template-columns: repeat(2, minmax(116px, 168px));
      }
      .option-pill {
        min-width: 0;
      }
      .option-pill-body {
        width: 100%;
        justify-content: space-between;
        min-height: 38px;
        padding: 7px 10px;
        font-size: 14px;
      }
      .modal-shell {
        padding: 10px;
        align-items: flex-end;
      }
      .modal-card {
        width: 100%;
        max-height: 88vh;
        border-radius: 12px 12px 0 0;
      }
      .dish-option-footer {
        align-items: center;
      }
      .dish-option-footer .btn {
        width: auto;
      }
      .compact-mobile-table {
        table-layout: fixed;
        width: 100%;
      }
      .compact-mobile-table th,
      .compact-mobile-table td {
        font-size: 12px;
        line-height: 1.45;
        padding: 8px 6px;
        vertical-align: top;
        word-break: break-word;
      }
      .compact-mobile-table .muted {
        font-size: 12px;
      }
      .compact-mobile-table .tag {
        font-size: 10px;
        padding: 2px 6px;
      }
      .merchant-order-tag-cell .tag {
        min-width: 64px;
      }
      .merchant-order-card {
        padding: 12px;
      }
      .merchant-order-card-head {
        flex-direction: column;
        gap: 8px;
      }
      .merchant-order-head-tags {
        justify-content: flex-start;
      }
      .merchant-order-head-side {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .merchant-order-items-brief {
        font-size: 14px;
      }
      .merchant-order-meta-line {
        gap: 5px 10px;
      }
      .merchant-order-main {
        grid-template-columns: 1fr;
        gap: 10px;
      }
      .merchant-order-action-form {
        grid-template-columns: 1fr 1fr;
      }
      .merchant-order-action-form input {
        grid-column: 1 / -1;
        width: 100%;
      }
      .merchant-campus-entry {
        flex-direction: column;
        align-items: stretch;
      }
      .merchant-campus-entry .btn {
        width: 100%;
        justify-content: center;
      }
      .delivery-order-section {
        padding: 12px;
      }
      .delivery-order-section-head h3 {
        font-size: 16px;
      }
      .delivery-order-grid,
      .delivery-order-grid.compact {
        grid-template-columns: 1fr;
        gap: 8px;
      }
      .delivery-order-card {
        padding: 11px;
      }
      .merchant-order-item {
        padding: 6px 8px;
      }
      .compact-mobile-table .btn {
        padding: 6px 8px;
        font-size: 11px;
      }
      .compact-mobile-table input,
      .compact-mobile-table textarea,
      .compact-mobile-table select {
        font-size: 11px;
        padding: 6px 8px;
      }
      .compact-mobile-table .row {
        gap: 4px;
      }
      .table th {
        position: static;
      }
    }

    .campus-delivery-promise {
      box-sizing: border-box;
      width: 100%;
      min-height: 34px;
      margin: 8px auto 14px;
      padding: 0 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      color: #5f552e;
      font-size: 12px;
      white-space: nowrap;
    }
    .campus-promise-core {
      min-height: 30px;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-weight: 800;
      letter-spacing: .04em;
    }
    .campus-promise-core strong {
      color: inherit;
      font-weight: 900;
    }
    .campus-promise-line {
      width: min(12vw, 62px);
      height: 1px;
      flex: 0 1 62px;
      opacity: .72;
    }
    .campus-promise-line-left {
      background: linear-gradient(90deg, rgba(211,178,72,0), rgba(211,178,72,.62));
    }
    .campus-promise-line-right {
      background: linear-gradient(90deg, rgba(211,178,72,.62), rgba(211,178,72,0));
    }
    .campus-promise-brand {
      width: 19px;
      height: 19px;
      max-width: none;
      flex: 0 0 19px;
      object-fit: contain;
    }
    .campus-promise-divider {
      width: 1px;
      height: 12px;
      background: rgba(137,114,37,.28);
    }
    .campus-promise-school-mark {
      position: relative;
      width: 13px;
      height: 14px;
      flex: 0 0 13px;
      overflow: hidden;
    }
    .campus-promise-school-mark img {
      position: absolute;
      left: -1px;
      top: -1.5px;
      width: 77px;
      height: 16.5px;
      max-width: none;
    }
    .delivery-content-promise {
      margin-top: 0;
      margin-bottom: 10px;
    }

    /* Shared campus visual system: keeps every existing page visually aligned. */
    :where(.merchant-order-card, .delivery-order-card, .my-order-card, .account-card,
      .address-card, .checkout-card, .settings-card, .support-card, .empty-state) {
      border-color: var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      background: var(--surface);
    }
    :where(.merchant-order-card, .delivery-order-card, .my-order-card, .store-card-link):hover {
      border-color: var(--line-strong);
      box-shadow: var(--shadow-hover);
    }
    :where(.tabs, .order-tabs, .merchant-order-tabs, .delivery-tabs) {
      border-color: var(--line);
      background: rgba(255,255,255,.96);
    }
    :where(.empty-state, .empty-card, .home-empty-filter, .search-empty) {
      color: var(--muted);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--surface);
      box-shadow: var(--shadow);
    }
    :where(.modal-card, .dish-option-modal, .dialog-card) {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--surface);
      box-shadow: 0 22px 60px rgba(42,36,17,.18);
    }
    :where(button, .btn, .pill, input, textarea, select, a) {
      -webkit-tap-highlight-color: transparent;
    }
    :where(button, .btn, .pill, input, textarea, select):focus-visible {
      outline: none;
      box-shadow: var(--ring);
    }
    img {
      max-width: 100%;
    }
    :where(.card, .merchant-order-card, .delivery-order-card, .my-order-card, .store-card-link) {
      min-width: 0;
      overflow-wrap: anywhere;
    }

    /* Precision pass: clearer hierarchy for forms, dialogs and secondary pages. */
    .card:hover,
    :where(.merchant-order-card, .delivery-order-card, .my-order-card, .store-card-link):hover {
      transform: none;
      border-color: var(--line-strong);
      box-shadow: 0 2px 8px rgba(23, 23, 20, .10);
    }
    .btn {
      min-height: var(--control-height);
      box-shadow: 0 2px 7px rgba(23, 23, 20, .14);
    }
    .btn:hover {
      transform: none;
    }
    .btn.secondary {
      border-color: var(--line-strong);
    }
    .pill {
      min-height: var(--control-height-sm);
      display: inline-flex;
      align-items: center;
    }
    :where(button, .btn, input, textarea, select):disabled {
      opacity: .56;
      filter: saturate(.72);
      box-shadow: none;
    }
    .field {
      margin-bottom: 16px;
    }
    .field > label,
    form label:not(.option-pill):not(.merchant-dish-check) {
      margin-bottom: 7px;
      color: var(--text-secondary);
      font-weight: 700;
      line-height: 1.35;
    }
    input:not([type="checkbox"]):not([type="radio"]),
    textarea,
    select {
      min-height: var(--control-height-lg);
      border-color: var(--line-strong);
      border-radius: var(--radius-control);
      padding: 11px 13px;
    }
    textarea {
      line-height: 1.55;
    }
    :where(.option-group-card, .delivery-application-form) {
      border-style: solid;
      border-color: var(--line);
      background: var(--surface-soft);
      box-shadow: none;
    }
    :where(.info-sheet-panel, .modal-card, .option-sheet-panel, .dialog-card) {
      border: 1px solid var(--line);
      border-radius: var(--radius-panel);
      box-shadow: var(--shadow-modal);
    }
    :where(.info-sheet-head, .modal-head, .option-sheet-head) {
      padding-bottom: 13px;
      border-bottom: 1px solid var(--line);
    }
    .info-sheet-body {
      color: var(--text-secondary);
    }
    :where(.cart-sheet-foot, .option-sheet-foot) {
      background: var(--surface-soft);
      border-top-color: var(--line);
    }
    .table th {
      background: var(--surface-soft);
      color: var(--text-secondary);
    }
    .table td {
      border-top-color: var(--line);
    }
    :where(.form-note, .muted, .order-meta, .order-time) {
      line-height: 1.5;
    }
    :where(.empty-state, .empty-card, .home-empty-filter, .search-empty, .store-search-empty) {
      min-height: 140px;
      padding: 28px 20px;
      display: grid;
      place-items: center;
      text-align: center;
      line-height: 1.55;
      border-style: solid;
    }
    .td-template-state {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
    }
    .flash {
      min-height: 42px;
      padding: 11px 14px;
      border-left-width: 4px;
      border-radius: var(--radius-sm);
      box-shadow: none !important;
      line-height: 1.45;
    }
    .order-empty-action.btn {
      box-shadow: 0 3px 10px rgba(126, 91, 0, .14);
    }

    /* Mobile-first campus forms shared by address and merchant onboarding. */
    .campus-form-page-head {
      margin-bottom: 14px;
    }
    .campus-form-page-head .order-title-bar {
      grid-template-columns: 64px minmax(0, 1fr) 64px;
      min-height: 76px;
    }
    .campus-form-layout {
      width: min(100%, 980px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
      gap: 16px;
      align-items: start;
    }
    .campus-form-card,
    .campus-list-card,
    .merchant-join-form,
    .merchant-join-status {
      border-color: var(--line);
      border-radius: var(--radius-lg);
      background: #fff;
      box-shadow: var(--shadow);
    }
    .campus-form-card,
    .campus-list-card,
    .merchant-join-form {
      padding: 22px;
    }
    .campus-card-heading {
      margin: -2px 0 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid var(--line);
    }
    .campus-card-heading h2 {
      margin: 0;
      color: var(--text);
      font-size: 19px;
      line-height: 1.3;
    }
    .campus-card-heading p {
      margin: 5px 0 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }
    .address-choice-grid {
      display: grid;
      gap: 8px;
    }
    .address-choice-grid.three {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .address-choice-grid.two {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .address-choice {
      position: relative;
      display: block;
      margin: 0 !important;
      cursor: pointer;
    }
    .address-choice input {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }
    .address-choice span {
      min-height: 42px;
      padding: 9px 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line-strong);
      border-radius: var(--radius-sm);
      background: #fff;
      color: var(--text-secondary);
      font-size: 14px;
      font-weight: 800;
      text-align: center;
      transition: border-color .18s ease, background .18s ease;
    }
    .address-choice input:checked + span {
      border-color: #e7bd37;
      background: var(--yellow-soft);
      color: var(--text);
      box-shadow: inset 0 0 0 1px rgba(126, 91, 0, .06);
    }
    .address-contact-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }
    .address-form-tools {
      margin: 2px 0 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .address-default-toggle {
      min-height: 42px;
      margin: 0 !important;
      padding: 8px 12px;
      display: inline-flex !important;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--line-strong);
      border-radius: var(--radius-sm);
      background: var(--surface-soft);
      cursor: pointer;
    }
    .address-default-toggle input {
      width: 16px;
      height: 16px;
      min-height: 0;
      margin: 0;
      accent-color: var(--yellow-strong);
    }
    .address-location-hint {
      margin-bottom: 14px;
      padding: 9px 11px;
      border-radius: var(--radius-sm);
      background: var(--surface-soft);
      color: var(--muted);
      font-size: 12px;
      line-height: 1.45;
    }
    .address-save-btn,
    .merchant-join-submit {
      width: 100%;
      min-height: 46px;
      background: var(--yellow);
      color: var(--text);
      border-color: #e7bd37;
      box-shadow: 0 3px 9px rgba(126, 91, 0, .13);
    }
    .address-saved-list {
      display: grid;
      gap: 10px;
    }
    .address-saved-item {
      padding: 14px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface-soft);
      cursor: pointer;
      transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
    }
    .address-saved-item:hover,
    .address-saved-item:focus-visible {
      border-color: rgba(204, 160, 22, .45);
      outline: none;
    }
    .address-saved-item.is-default {
      border-color: rgba(204, 160, 22, .42);
      background: linear-gradient(135deg, #fffef9, #fffaf0);
      box-shadow: 0 5px 16px rgba(83, 68, 30, .06);
    }
    .address-saved-main {
      flex: 1 1 auto;
      min-width: 0;
      display: grid;
      gap: 5px;
    }
    .address-saved-title-row {
      min-width: 0;
      display: flex;
      align-items: center;
      gap: 7px;
      white-space: nowrap;
    }
    .address-saved-title-row strong {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: 15px;
      line-height: 1.35;
    }
    .address-default-badge {
      flex: 0 0 auto;
      padding: 2px 8px;
      border: 1px solid rgba(204, 160, 22, .3);
      border-radius: 999px;
      background: #fff4c6;
      color: #806010;
      font-size: 10px;
      font-weight: 800;
      line-height: 1.45;
    }
    .address-default-hint {
      color: var(--muted);
      font-size: 11px;
      line-height: 1.4;
    }
    .address-delete-form {
      flex: 0 0 auto;
    }
    .address-delete-form .btn {
      min-width: 52px;
      min-height: 28px;
      padding: 4px 9px;
      border-radius: 999px;
      color: #8b8580;
      font-size: 11px;
    }
    .address-empty-state {
      min-height: 180px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface-soft);
      color: var(--muted);
      text-align: center;
    }
    .merchant-join-form,
    .merchant-join-status {
      width: min(100%, 720px);
      margin: 0 auto 14px;
    }
    .merchant-join-form input[type="file"],
    .delivery-application-form input[type="file"] {
      min-height: 48px;
      padding: 9px 10px;
      background: var(--surface-soft);
    }
    .merchant-join-form #application-location-field .row {
      align-items: flex-start;
      padding: 11px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: var(--surface-soft);
    }
    .delivery-dashboard > .delivery-order-section[data-order-tabs="available"] {
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      overflow: visible;
    }
    .delivery-dashboard > .delivery-order-section[data-order-tabs="available"] > .delivery-order-section-head {
      display: none;
    }
    .delivery-available-empty {
      min-height: 440px;
      padding: 30px 24px 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: #fff;
      box-shadow: var(--shadow);
    }
    .delivery-filter-panel {
      margin: 0 0 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
    }
    .delivery-available-empty-preview {
      max-width: 720px;
      margin: 0 auto 14px;
    }
    .order-empty-art,
    .delivery-available-empty-art {
      width: min(480px, 74%);
      max-height: 210px;
      margin-bottom: 18px;
    }
    .order-empty-state h2,
    .delivery-available-empty h3 {
      font-size: 24px;
    }
    .order-empty-action.btn {
      width: min(320px, 74%);
      min-height: 44px;
      margin-top: 22px;
      padding: 10px 20px;
      font-size: 15px;
    }
    .delivery-application-entry::before {
      content: none;
      display: none;
    }
    .delivery-application-form::before {
      content: "申请资料";
      display: block;
      margin-bottom: 18px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--line);
      color: var(--text);
      font-size: 18px;
      font-weight: 900;
      line-height: 1.3;
    }
    .delivery-application-form > .btn[type="submit"] {
      width: 100%;
      min-height: 46px;
      background: var(--yellow);
      color: var(--text);
      border-color: #e7bd37;
      box-shadow: 0 3px 9px rgba(126, 91, 0, .13);
    }
    @media (min-width: 960px) {
      .container {
        width: min(100% - 48px, 1120px);
        padding-left: 0;
        padding-right: 0;
      }
      .grid:not(.login-grid):not(.review-grid) {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }
      .bottom-tabbar {
        left: 50%;
        right: auto;
        width: min(720px, calc(100% - 48px));
        transform: translateX(-50%);
        border: 1px solid var(--line);
        border-bottom: 0;
        border-radius: 20px 20px 0 0;
      }
    }
    @media (max-width: 720px) {
      .subpage-head {
        margin: -12px -12px 12px;
        padding-left: 12px;
        padding-right: 12px;
      }
      .campus-form-page-head {
        margin-left: -12px;
        margin-right: -12px;
      }
      .campus-form-page-head .order-title-bar {
        min-height: 68px;
      }
      .campus-form-layout {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .campus-form-card,
      .campus-list-card,
      .merchant-join-form {
        padding: 16px;
      }
      .address-contact-grid {
        grid-template-columns: 1fr;
        gap: 0;
      }
      .address-form-tools {
        align-items: stretch;
      }
      .address-form-tools > * {
        flex: 1 1 0;
        justify-content: center;
      }
      .merchant-join-form #application-location-field .row {
        display: grid;
        grid-template-columns: 1fr;
      }
      .merchant-join-form #application-location-button {
        width: 100%;
      }
      .delivery-filter-panel {
        margin: 0 0 12px;
        padding: 10px;
      }
      .delivery-available-empty {
        min-height: 410px;
        padding: 24px 16px;
      }
      .delivery-application-entry {
        padding: 14px;
      }
      .delivery-application-entry > p {
        margin: 5px 0 12px;
        font-size: 13px;
      }
      .delivery-available-empty-preview {
        min-height: 390px;
      }
      .order-empty-art,
      .delivery-available-empty-preview .delivery-available-empty-art {
        width: min(360px, 74%);
        max-height: 180px;
      }
      .order-empty-state h2,
      .delivery-available-empty-preview h3 {
        font-size: 22px;
      }
    }

    /* === TANDUODUO APPLE SYSTEM PASS 2026-07-26: START ===
     * Reversible global visual pass. Remove this marked block to restore the
     * pre-pass web appearance without touching route or page business styles.
     */
    :root {
      --surface-soft: #fafaf7;
      --line: #e5e3dc;
      --line-strong: #d5d2c9;
      --radius: 12px;
      --radius-sm: 10px;
      --radius-lg: 18px;
      --radius-control: 12px;
      --radius-card: 18px;
      --radius-panel: 22px;
      --shadow: 0 1px 0 rgba(23, 23, 20, .05);
      --shadow-card: 0 1px 0 rgba(23, 23, 20, .05);
      --shadow-hover: 0 1px 0 rgba(23, 23, 20, .08);
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
      letter-spacing: -.005em;
    }

    body:not(.td-template-home) {
      background: var(--page-background);
    }

    body:not(.td-template-home) .card,
    body:not(.td-template-home) .member-panel,
    body:not(.td-template-home) .merchant-order-card,
    body:not(.td-template-home) .delivery-order-card,
    body:not(.td-template-home) .my-order-card,
    body:not(.td-template-home) .campus-form-card,
    body:not(.td-template-home) .campus-list-card,
    body:not(.td-template-home) .account-security-card {
      border-color: var(--line);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-card);
    }

    body .modal-card,
    body .dish-option-modal,
    body .dialog-card,
    body .rules-panel,
    body .eta-info-modal {
      border-radius: var(--radius-panel);
      box-shadow: var(--shadow-modal);
    }

    body h1,
    body h2,
    body h3,
    body .section-title,
    body .subpage-head h1,
    body .page-head-title,
    body .settings-title,
    body .delivery-title,
    body .apply-title,
    body .modal-head,
    body .rules-title,
    body .rules-section-title,
    body .coupon-empty-title,
    body .cart-title,
    body .option-title,
    body .option-group-title {
      font-weight: 600;
      letter-spacing: -.02em;
    }

    body .btn {
      min-height: 44px;
      border-radius: var(--radius-control);
      font-weight: 600;
      letter-spacing: -.01em;
      box-shadow: none;
    }

    body .btn:hover {
      transform: none;
      box-shadow: none;
    }

    body .btn:active {
      transform: scale(.96);
    }

    body .address-save-btn,
    body .merchant-join-submit,
    body .login-submit,
    body #checkout-submit-button,
    body .delivery-application-form > .btn[type="submit"] {
      border-radius: var(--radius-pill);
      box-shadow: inset 0 0 0 1px rgba(126, 91, 0, .08);
    }

    body .btn.secondary,
    body .btn.danger,
    body .btn.ok {
      border-radius: var(--radius-control);
      box-shadow: none;
    }

    body label,
    body .field-label,
    body .tag,
    body .pill,
    body .back-link,
    body .bottom-tab {
      font-weight: 600;
    }

    body input:not([type="checkbox"]):not([type="radio"]),
    body textarea,
    body select {
      min-height: 44px;
      border-color: var(--line-strong);
      border-radius: var(--radius-control);
      background: var(--surface);
    }

    body textarea {
      min-height: 112px;
    }

    body:not(.td-template-home) .card:hover,
    body:not(.td-template-home) .merchant-order-card:hover,
    body:not(.td-template-home) .delivery-order-card:hover,
    body:not(.td-template-home) .my-order-card:hover {
      border-color: var(--line-strong);
      box-shadow: var(--shadow-hover);
    }

    body .price,
    body .submit-price,
    body .coupon-number,
    body .delivery-fee-price,
    body .order-total,
    body .order-eta-range,
    body .checkout-eta-range,
    body .tab-count,
    body .bottom-tab-badge {
      font-weight: 700;
    }

    body .bottom-tabbar {
      border-color: rgba(29, 29, 31, .08);
      background: rgba(255, 255, 255, .94);
      box-shadow: none;
      backdrop-filter: saturate(160%) blur(18px);
    }

    body .bottom-tab.active {
      box-shadow: none;
    }

    /* Consumer order-card hierarchy polish. */
    body .my-order-card {
      display: flex;
      flex-direction: column;
      padding: 17px;
      border: 1px solid #e6e3da;
      border-radius: 19px;
      background: #fff;
      box-shadow: 0 4px 15px rgba(37, 35, 28, .055);
    }
    body .my-order-head { order: 1; margin-bottom: 9px; }
    body .my-order-eta { order: 2; }
    body .my-order-eta-busy { order: 3; }
    body .my-order-delay-card { order: 0; }
    body .order-timeline.compact { order: 4; }
    body .my-order-summary { order: 5; }
    body .my-order-coupon-saving { order: 6; }
    body .my-order-meta { order: 7; }
    body .my-order-note { order: 8; }
    body .delivery-proof-summary,
    body .receipt-reviewing,
    body .receipt-confirm-card { order: 9; }
    body .my-order-card-footer { order: 10; }
    body .my-order-other-panel { order: 11; }
    body .order-progress-shell {
      order: 1;
      margin: 0 0 10px;
      padding: 7px 10px 6px;
      border-bottom: 0;
      border-radius: 12px;
      background: #faf9f4;
    }
    body .order-progress-shell-head {
      min-height: 21px;
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    body .order-progress-kicker {
      color: #74766f;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .01em;
    }
    body .my-order-card .order-progress-shell .my-order-status {
      padding: 0;
      background: transparent !important;
      box-shadow: none;
      font-size: 11px;
      font-weight: 600;
      line-height: 1.2;
    }
    body .my-order-card .order-progress-status-group {
      min-width: 0;
      display: inline-flex;
      align-items: baseline;
      justify-content: flex-end;
      gap: 5px;
      white-space: nowrap;
    }
    body .my-order-card .order-rider-urged {
      color: #9a7a28;
      font-size: 11px;
      font-weight: 500;
      line-height: 1.2;
    }
    body .my-order-head h3 {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: -.015em;
    }
    body .my-order-time {
      margin-top: 5px;
      color: #96978f;
      font-size: 11px;
    }
    body .my-order-time .order-number-label {
      font-weight: 500;
    }
    body .my-order-time .order-number-tail {
      color: #4d4f49;
      font-weight: 600;
    }
    body .my-order-status {
      padding: 5px 9px;
      border-radius: 999px;
      background: #f2f1ec;
      color: #62645d;
      font-size: 12px;
      font-weight: 600;
    }
    body .my-order-card.status-new .my-order-status,
    body .my-order-card.status-making .my-order-status,
    body .my-order-card.status-ready .my-order-status {
      background: #fff2bf;
      color: #795800;
    }
    body .my-order-card.status-delivering .my-order-status {
      background: #eaf5ec;
      color: #247344;
    }
    body .my-order-card.status-done .my-order-status {
      background: #f0f1ed;
      color: #696b65;
    }
    body .my-order-card.status-cancelled .my-order-status,
    body .my-order-card.status-user_cancelled .my-order-status {
      background: #fff0ed;
      color: #a94835;
    }
    body .my-order-eta {
      margin: 0 0 9px;
      padding: 0 0 10px;
      border-bottom: 1px solid #efede7;
      color: #77756d;
      font-size: 12px;
      font-weight: 600;
    }
    body .my-order-eta strong {
      color: #25241f;
      font-size: 16px;
      font-weight: 700;
    }
    body .my-order-eta-busy {
      margin: -3px 0 9px;
      color: #94610a;
      font-size: 11px;
      font-weight: 600;
    }
    body .order-timeline.compact.four-node {
      position: relative;
      grid-template-columns: repeat(4, 1fr);
      align-items: center;
      min-height: 32px;
      margin: 0;
      padding: 0;
    }
    body .order-timeline.compact.four-node::before {
      content: "";
      position: absolute;
      z-index: 0;
      left: 12.5%;
      right: 12.5%;
      top: 17px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, #e5e5e1 0%, #eeeeea 100%);
    }
    body .order-timeline.compact.four-node::after {
      content: "";
      position: absolute;
      z-index: 0;
      left: 12.5%;
      top: 17px;
      width: 0;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, #ffe36b 0%, #ffc91f 100%);
    }
    body .order-timeline.compact.four-node.status-making::after,
    body .order-timeline.compact.four-node.status-ready::after { width: 25%; }
    body .order-timeline.compact.four-node.status-delivering::after { width: 50%; }
    body .order-timeline.compact.four-node.status-done::after { width: 75%; }
    body .order-timeline.compact.four-node .timeline-step {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    body .order-timeline.compact.four-node .timeline-node {
      position: relative;
      overflow: hidden;
      width: 34px;
      height: 34px;
      border: 1px solid #e1e2dc;
      border-radius: 50%;
      background: #f5f5f2;
      box-shadow: 0 2px 6px rgba(75,75,67,.1);
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    body .order-timeline.compact.four-node .timeline-node::after {
      display: none;
    }
    body .order-timeline.compact.four-node .timeline-node img {
      position: relative;
      z-index: 1;
      width: 17px;
      height: 17px;
      opacity: .45;
    }
    body .order-timeline.compact.four-node .timeline-check {
      position: relative;
      z-index: 1;
      color: #9b9c97;
      font-size: 16px;
      font-weight: 700;
      line-height: 1;
    }
    body .order-timeline.compact.four-node .timeline-step.active .timeline-node {
      border-color: #f3bf19;
      background: linear-gradient(145deg, #ffe267 0%, #ffca24 100%);
      box-shadow: 0 3px 7px rgba(205,151,0,.18);
    }
    body .order-timeline.compact.four-node .timeline-step.active .timeline-node img {
      opacity: 1;
      filter: brightness(0);
    }
    body .order-timeline.compact.four-node .timeline-step.active .timeline-check {
      color: #25251f;
    }
    body .my-order-summary {
      padding: 7px 0 0;
      border-top: 0;
      border-bottom: 0;
      align-items: flex-start;
      font-size: 13px;
    }
    body .my-order-summary > div {
      display: grid;
      gap: 7px;
      white-space: normal;
      color: #373832;
    }
    body .my-order-summary .my-order-summary-items {
      min-width: 0;
      flex: 1;
    }
    body .my-order-summary .my-order-summary-items > div > div:first-child {
      font-size: 14px;
      font-weight: 500;
      line-height: 1.3;
    }
    body .delivery-order-card .delivery-order-store {
      font-size: 14px;
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: 4px;
    }
    body .delivery-order-card .delivery-order-card-head {
      align-items: flex-start;
    }
    body .delivery-order-card .delivery-order-main {
      min-width: 0;
      flex: 1;
    }
    body .delivery-order-card .delivery-order-card-head .order-number {
      gap: 4px;
      color: #96978f;
      font-size: 11px;
      font-weight: 400;
      line-height: 1.3;
    }
    body .delivery-order-card .delivery-order-card-head .order-number-label {
      font-weight: 500;
    }
    body .delivery-order-card .delivery-order-card-head .order-number-tail {
      color: #4d4f49;
      font-weight: 600;
    }
    body .delivery-order-card .delivery-order-items {
      display: grid;
      gap: 7px;
      padding: 8px 0 10px;
      border-bottom: 1px solid #efede7;
      color: #34352f;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.3;
    }
    body .delivery-order-card .delivery-order-item-block {
      min-width: 0;
      display: grid;
      gap: 2px;
    }
    body .delivery-order-card .delivery-order-item-main {
      color: #34352f;
      font-size: 14px;
      font-weight: 500;
    }
    body .delivery-order-card .delivery-order-item-option,
    body .delivery-order-card .delivery-order-note-inline {
      color: #858780;
      font-size: 11px;
      font-weight: 400;
      line-height: 1.4;
      overflow-wrap: anywhere;
    }
    body .delivery-order-card .delivery-order-address {
      color: #34352f;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.35;
      overflow-wrap: anywhere;
    }
    body .delivery-order-card .delivery-order-contact {
      color: #666860;
      font-size: 12px;
      font-weight: 400;
      line-height: 1.45;
      overflow-wrap: anywhere;
    }
    body .delivery-order-card .delivery-order-fee {
      margin-top: 2px;
      padding-top: 8px;
      color: #777970;
      font-size: 12px;
      font-weight: 500;
    }
    body .delivery-order-card .delivery-order-fee strong {
      color: #c6452d;
      font-size: 16px;
      font-weight: 700;
    }
    body .merchant-order-card .merchant-order-title {
      gap: 4px;
      color: #34352f;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.3;
    }
    body .merchant-order-card .merchant-order-title .order-number-label {
      font-weight: 500;
    }
    body .merchant-order-card .merchant-order-title .order-number-tail {
      color: #22231f;
      font-weight: 600;
    }
    body .merchant-order-card .merchant-order-title + .muted {
      margin-top: 4px;
      font-size: 11px;
      font-weight: 400;
    }
    body .merchant-order-card .merchant-order-head-side .price {
      font-size: 16px;
      font-weight: 700;
    }
    body .merchant-order-card .merchant-order-product-row {
      min-width: 0;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    body .merchant-order-card .merchant-order-product-row .merchant-order-items-brief {
      min-width: 0;
      flex: 1;
    }
    body .merchant-order-card .merchant-order-total-price {
      flex: 0 0 auto;
      align-self: center;
      color: #c6452d;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.1;
      white-space: nowrap;
    }
    body .merchant-order-card .merchant-order-settlement {
      flex: 0 0 auto;
      align-self: center;
      display: grid;
      justify-items: end;
      gap: 3px;
      color: #7b8079;
      font-size: 10px;
      line-height: 1.15;
      white-space: nowrap;
    }
    body .merchant-order-card .merchant-order-items-brief {
      gap: 7px;
      font-size: 14px;
      font-weight: 500;
    }
    body .merchant-order-card .merchant-order-item-main-line {
      font-size: 14px;
      font-weight: 500;
    }
    body .merchant-order-card .merchant-order-item-option-line {
      font-size: 11px;
      font-weight: 400;
    }
    body .merchant-order-card .merchant-order-meta-line {
      font-size: 12px;
      font-weight: 400;
    }
    body .merchant-order-card .merchant-order-meta-line > span:first-child {
      font-weight: 400;
    }
    body .merchant-order-card .merchant-order-note:not(.danger-text) {
      margin-top: 5px;
      padding: 7px 9px;
      border: 1px solid #eee2bd;
      border-radius: 8px;
      background: #fffaf0;
      color: #514a37;
      font-weight: 600;
      line-height: 1.4;
    }
    body .my-order-summary .my-order-summary-total {
      min-width: 76px;
      flex: 0 0 auto;
      align-self: center;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: center;
      gap: 4px;
      text-align: right;
    }
    body .my-order-summary .my-order-summary-total strong {
      color: #22231f;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.1;
    }
    body .my-order-summary .my-order-summary-total span {
      color: #96978f;
      font-size: 11px;
      font-weight: 400;
      line-height: 1;
    }
    body .my-order-summary > div > div {
      line-height: 1.35;
    }
    body .my-order-summary .muted {
      margin-top: 2px;
      color: #8c8d86;
      font-size: 11px;
      font-weight: 400;
    }
    body .my-order-meta {
      display: grid;
      gap: 4px;
      margin-top: 11px;
      padding: 9px 0 3px;
      border-top: 1px solid rgba(58, 54, 44, 0.08);
      color: #6f716b;
      font-size: 11px;
      font-weight: 400;
      line-height: 1.45;
    }
    body .my-order-meta span {
      overflow-wrap: anywhere;
    }
    body .my-order-note {
      margin-top: 8px;
      padding: 7px 9px;
      border: 0;
      border-radius: 8px;
      background: #faf8ee;
      color: #74623a;
      font-size: 11px;
    }
    body .my-order-card-footer {
      margin-top: 10px;
      padding-top: 0;
      border-top: 0;
    }
    body .my-order-coupon-saving {
      margin: 1px 0 0;
      padding: 0;
      background: transparent;
      color: #b64a36;
      display: flex;
      justify-content: flex-end;
      gap: 5px;
      font-size: 11px;
      font-weight: 600;
    }
    body .my-order-actions {
      width: 100%;
      margin: 10px 0 0;
      min-height: 0;
    }
    body .my-order-actions .btn {
      min-width: 76px;
      min-height: 34px;
      padding: 7px 13px;
      border-radius: 999px;
      font-size: 12px;
    }
    @media (max-width: 640px) {
      body .my-order-card {
        padding: 13px;
      }
      body .my-order-card-footer {
        margin-top: 11px;
      }
      body .my-order-summary .my-order-summary-total strong {
        font-size: 16px;
      }
    }

    /* Active-order reading order: progress, ETA, then order details. */
    body .my-order-card.is-live-delivery {
      position: relative;
    }
    body .my-order-card.is-live-delivery .my-order-eta {
      order: 2;
      min-height: 32px;
      margin: 0 0 15px;
      padding: 4px 10px 7px;
      border-bottom: 0;
      border-radius: 0 0 12px 12px;
      background: #faf9f4;
      align-items: baseline;
      font-size: 12px;
      font-weight: 500;
    }
    body .my-order-card.is-live-delivery .my-order-eta strong {
      font-size: 16px;
      font-weight: 700;
      letter-spacing: -.01em;
    }
    body .my-order-card.is-live-delivery .my-order-eta-busy {
      order: 2;
    }
    body .my-order-card.is-live-delivery .my-order-head {
      order: 3;
      margin: 0 0 13px;
      padding-top: 0;
      border-top: 0;
    }
    body .my-order-card.is-live-delivery .my-order-status {
      position: static;
      z-index: auto;
      top: auto;
      right: auto;
    }
    body .my-order-card.has-live-progress .order-progress-shell { order: 1; }
    body .my-order-card.is-live-delivery .order-progress-shell {
      margin-bottom: 0;
      padding-bottom: 4px;
      border-radius: 12px 12px 0 0;
    }
    body .my-order-card.has-live-progress .my-order-head { order: 3; }
    body .my-order-card.is-live-delivery .my-order-summary { order: 5; }
    body .my-order-card.is-live-delivery .my-order-coupon-saving { order: 6; }
    body .my-order-card.is-live-delivery .my-order-meta { order: 7; }
    body .my-order-card.is-live-delivery .my-order-card-footer { order: 10; }
    body .order-number-trigger-web {
      position: relative;
      min-width: 28px;
      min-height: 28px;
      margin: -6px -5px -6px 0;
      padding: 6px 8px 6px 0;
      border: 0;
      background: transparent;
      color: inherit;
      font: inherit;
      line-height: inherit;
      cursor: pointer;
      display: inline-flex;
      align-items: baseline;
    }
    body .order-number-help-web {
      position: absolute;
      top: 0;
      right: 0;
      width: auto;
      height: auto;
      border: 0;
      border-radius: 0;
      background: transparent;
      color: #92938c;
      font-size: 9px;
      font-weight: 600;
      line-height: 1;
      text-align: center;
    }
    body .order-number-sheet-panel {
      width: min(92vw, 420px);
    }
    body .full-order-number-web {
      margin: 18px 0;
      color: #22231f;
      font-size: 18px;
      font-weight: 600;
      line-height: 1.45;
      text-align: center;
      overflow-wrap: anywhere;
      user-select: text;
    }
    body .order-number-sheet-actions {
      display: grid;
      gap: 10px;
    }
    body .order-number-sheet-actions .btn {
      width: 100%;
      justify-content: center;
    }
    /* Final order-card hierarchy overrides. */
    body .my-order-store,
    body .my-order-summary-items > div > div:first-child {
      color: #353630;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.3;
      letter-spacing: 0;
    }
    body .my-order-time {
      margin: 0;
      color: #62645e;
      font-size: 13px;
      font-weight: 500;
      line-height: 1.3;
      letter-spacing: 0;
    }
    body .my-order-time .order-number-label {
      color: #62645e;
      font-size: inherit;
      font-weight: 500;
      line-height: inherit;
    }
    body .my-order-time .order-number-tail {
      color: #41433e;
      font-size: inherit;
      font-weight: 600;
      line-height: inherit;
    }
    body .my-order-time .order-fulfillment-inline {
      margin-left: 2px;
      color: #92948d;
      font-size: 11px;
      font-weight: 400;
      line-height: 1.3;
    }
    body .my-order-created-at {
      margin-top: 4px;
      color: #898b84;
      font-size: 11px;
      font-weight: 400;
      line-height: 1.35;
    }
    body .my-order-store {
      margin: 0;
      padding: 0 0 6px;
      border-bottom: 0;
    }
    body .my-order-summary {
      display: block;
    }
    body .my-order-summary > .my-order-product-row {
      min-width: 0;
      padding-top: 4px;
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      gap: 12px;
    }
    body .my-order-product-row .my-order-summary-items {
      min-width: 0;
      flex: 1;
    }
    body .my-order-product-row .my-order-summary-total {
      align-self: center;
    }
    body .order-progress-kicker,
    body .my-order-card.is-live-delivery .my-order-eta-label {
      color: #74766f;
      font-size: 12px;
      font-weight: 500;
      line-height: 1.3;
      letter-spacing: 0;
    }
    body .my-order-product-row .my-order-summary-items {
      gap: 6px;
    }
    body .my-order-summary > .my-order-store {
      color: #565851;
      font-size: 13px;
      font-weight: 600;
      padding-bottom: 6px;
    }
    body .my-order-product-row .my-order-summary-items > div > div:first-child {
      color: #30312d;
      font-size: 14px;
      font-weight: 600;
    }
    body .my-order-product-row .my-order-summary-items .muted {
      color: #858780;
      font-size: 11px;
      font-weight: 400;
    }
    body .delivery-order-card.active .delivery-order-card-head .order-number,
    body .delivery-order-card.done .delivery-order-card-head .order-number {
      margin: 0 0 4px;
      color: #34352f;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.3;
    }
    body .delivery-order-card.active .delivery-order-card-head .order-number-label,
    body .delivery-order-card.done .delivery-order-card-head .order-number-label {
      font-weight: 500;
    }
    body .delivery-order-card.active .delivery-order-card-head .order-number-tail,
    body .delivery-order-card.done .delivery-order-card-head .order-number-tail {
      color: #22231f;
      font-weight: 600;
    }
    body .delivery-order-card .delivery-order-card-head.status-only {
      justify-content: flex-end;
    }
    body .delivery-order-card .delivery-order-items > .delivery-order-store {
      margin: 0 0 1px;
      padding-bottom: 8px;
      border-bottom: 1px solid #efede7;
      color: #34352f;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.3;
    }
    body .delivery-order-card .delivery-order-item-main {
      font-size: 14px;
      font-weight: 600;
      line-height: 1.3;
    }
    body .delivery-order-card .delivery-order-items > .delivery-order-store,
    body .delivery-order-card .delivery-order-store-row .delivery-order-store,
    body .delivery-order-card .delivery-order-item-main,
    body .my-order-store,
    body .my-order-summary-items > div > div:first-child {
      color: #34352f;
      font-family: inherit;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.3;
      letter-spacing: 0;
    }
    body .delivery-order-card .delivery-order-store-row {
      padding-bottom: 8px;
      border-bottom: 1px solid #efede7;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    body .delivery-order-card .delivery-order-store-row .delivery-order-store {
      min-width: 0;
      flex: 1;
      margin: 0;
      padding: 0;
      border-bottom: 0;
    }
    body .delivery-order-card .delivery-order-store-row .tag {
      flex: 0 0 auto;
    }
    body .delivery-order-card .delivery-incentive-tag + .delivery-order-items {
      margin-top: -3px;
      padding-top: 5px;
    }
    body .delivery-order-card .delivery-order-items {
      padding-bottom: 5px;
      border-bottom: 0;
    }
    body .delivery-order-card .delivery-order-fee {
      gap: 10px;
      margin-top: 5px;
      padding: 2px 0 0;
      border: 0;
      border-radius: 0;
      background: transparent;
    }
    body .delivery-order-card .delivery-order-fee-copy {
      min-width: 0;
      display: inline-flex;
      align-items: baseline;
      gap: 5px;
      white-space: nowrap;
    }
    body .delivery-order-card .delivery-order-fee-label {
      color: #34352f;
      font-size: 12px;
      font-weight: 600;
      line-height: 1.35;
    }
    .rider-reaccept-blocked {
      margin: 7px 0 0;
      color: #8d651c;
      font-size: 12px;
      font-weight: 650;
      line-height: 1.4;
    }
    .delivery-order-actions .btn:disabled {
      cursor: not-allowed;
      opacity: .48;
      box-shadow: none;
    }
    .rider-cancel-form {
      position: relative;
    }
    .rider-cancel-reasons {
      width: min(320px, calc(100vw - 48px));
      padding: 12px;
      border: 1px solid rgba(38, 36, 31, .1);
      border-radius: 14px;
      background: #fff;
      box-shadow: 0 14px 34px rgba(38, 34, 25, .14);
    }
    .rider-cancel-reasons label {
      display: block;
      margin-bottom: 7px;
      color: #31312d;
      font-size: 13px;
      font-weight: 700;
    }
    .rider-cancel-reasons select {
      width: 100%;
      min-height: 40px;
      margin: 0;
    }
    .rider-cancel-reason-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-top: 10px;
    }
    .rider-status-switch.is-restricted,
    .rider-status-switch:disabled {
      cursor: not-allowed;
      opacity: .5;
    }

    /* === TANDUODUO APPLE SYSTEM PASS 2026-07-26: END === */
