.order-landing {
  --bg1: #0b1020;
  --bg2: #0e1630;
  --card: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.7);
  --line: rgba(255,255,255,.14);
  --accent: #fbbf24;
  --accent2: #f59e0b;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 18px;

  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
  background:
    radial-gradient(900px 450px at 15% 20%, rgba(251,191,36,.22), transparent 60%),
    radial-gradient(900px 450px at 85% 70%, rgba(59,130,246,.18), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

.order-landing .wrap {
  width: min(520px, 100%);
  position: relative;
}

.order-landing .card {
  position: relative;
  background: linear-gradient(180deg, var(--card), rgba(255,255,255,.06));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(10px);
  opacity: 0;
  animation: ol-pop .7s ease forwards;
}

@keyframes ol-pop {
  to { transform: translateY(0); opacity: 1; }
}

.order-landing .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 260px at 30% 0%, rgba(251,191,36,.14), transparent 55%);
  pointer-events: none;
}

/* NEW: center logo at top */
.order-landing .head {
  padding: 22px 22px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

/*.order-landing .logo {*/
/*  width: 140px;*/
/*  height: 90px;*/
/*  border-radius: 18px;*/
/*  background: rgba(255,255,255,.08);*/
/*  border: 1px solid rgba(255,255,255,.14);*/
/*  box-shadow:*/
/*    0 14px 34px rgba(0,0,0,.35),*/
/*    0 0 0 4px rgba(251,191,36,.12);*/
/*  display: grid;*/
/*  place-items: center;*/
/*  overflow: hidden;*/
/*}*/

.order-landing .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 8px;
}

.order-landing .title {
  line-height: 1.15;
}

.order-landing .title h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .2px;
  text-align: center !important;
}

.order-landing .title p {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center !important;
}

.order-landing .body {
  padding: 16px 22px 22px;
}

.order-landing form {
  display: grid;
  gap: 14px;
}

.order-landing .field {
  position: relative;
}

.order-landing .field input {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  outline: none;
  background: rgba(0,0,0,.22);
  color: var(--text);
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.order-landing .field input::placeholder { color: rgba(255,255,255,.35); }

.order-landing .field input:focus {
  border-color: rgba(251,191,36,.55);
  box-shadow: 0 0 0 4px rgba(251,191,36,.14);
}

.order-landing .hint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.order-landing .actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.order-landing .btn {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 13px 14px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease, box-shadow .2s ease, background .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  user-select: none;
}

.order-landing .btn:active { transform: translateY(1px) scale(.995); }
.order-landing .btn:focus-visible { outline: 3px solid rgba(251,191,36,.35); outline-offset: 2px; }

.order-landing .btn-primary {
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  color: #1b1303;
  box-shadow: 0 10px 30px rgba(245,158,11,.22);
}

.order-landing .btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.14);
}

.order-landing .btn:hover { transform: translateY(-1px); filter: brightness(1.03); }

.order-landing .divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 2px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

.order-landing .divider::before,
.order-landing .divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255,255,255,.14);
}

.order-landing .foot {
  padding: 14px 22px 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.62);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.order-landing .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(251,191,36,.95);
  box-shadow: 0 0 0 rgba(251,191,36,.45);
  animation: ol-pulse 1.8s infinite;
  display: inline-block;
  margin-right: 8px;
}

@keyframes ol-pulse {
  0% { box-shadow: 0 0 0 0 rgba(251,191,36,.35); }
  70% { box-shadow: 0 0 0 10px rgba(251,191,36,0); }
  100% { box-shadow: 0 0 0 0 rgba(251,191,36,0); }
}

/* Loader overlay */
.order-landing .loader {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  z-index: 9999;
}

.order-landing .loader.on { display: grid; }

.order-landing .spinner {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 4px solid rgba(255,255,255,.18);
  border-top-color: rgba(251,191,36,.9);
  animation: ol-spin 1s linear infinite;
}

@keyframes ol-spin { to { transform: rotate(360deg); } }

@media (max-width: 420px) {
  .order-landing .head { padding: 18px 16px 8px; }
  .order-landing .body { padding: 14px 16px 18px; }
  .order-landing .foot { padding: 12px 16px 16px; }
  .order-landing .logo { width: 150px; height: 92px; }
}

/* Mileage/result content styling (injected HTML uses these) */
.order-landing .ol-result{
  display: grid;
  gap: 12px;
  padding: 6px 2px 2px;
}

.order-landing .ol-h2{
  margin: 6px 0 2px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .2px;
}

.order-landing .ol-pill{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 10px 12px;
  color: rgba(255,255,255,.92);
  font-size: 13px;
}

.order-landing .ol-sub{
  margin-top: 4px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  line-height: 1.45;
}

.order-landing .ol-actions{
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

/* Notices */
.order-landing .ol-notice{
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-size: 13px;
}

.order-landing .ol-notice-warn{
  border-color: rgba(251,191,36,.28);
  background: rgba(251,191,36,.08);
}

.order-landing .ol-notice-info{
  border-color: rgba(59,130,246,.28);
  background: rgba(59,130,246,.08);
}

/* The branch select on NOBRANCH */
.order-landing .ol-select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.92);
  outline: none;
}
.order-landing .ol-select:focus{
  border-color: rgba(251,191,36,.55);
  box-shadow: 0 0 0 4px rgba(251,191,36,.14);
}


/* Compact opening hours block */
.order-landing .ol-hours {
  margin-top: 10px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

.order-landing .ol-hours-title{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,.92);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}

.order-landing .ol-hours-toggle{
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.82);
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 12px;
  cursor: pointer;
}

.order-landing .ol-hours-grid{
  display: grid;
  gap: 8px;
}

.order-landing .ol-hours-row{
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 10px;
  align-items: start;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}

.order-landing .ol-day{
  font-weight: 800;
  font-size: 12px;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: .6px;
}

.order-landing .ol-times{
  font-size: 12px;
  color: rgba(255,255,255,.75);
  line-height: 1.35;
}

.order-landing .ol-times b{
  color: rgba(255,255,255,.92);
  font-weight: 800;
}

.order-landing .ol-hours-row.today{
  border-color: rgba(251,191,36,.28);
  background: rgba(251,191,36,.08);
}

.order-landing .ol-hours-note{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.62);
}

.order-landing .ol-hide{ display:none; }



/* =========================================================
   LIGHT THEME (full parity with dark)
   Put this at the END of the file.
   ========================================================= */
.order-landing[data-theme="light"]{
  --bg1: #f7f8fc;
  --bg2: #eef2ff;

  /* surfaces */
  --card: rgba(15,23,42,.06);
  --line: rgba(15,23,42,.14);
  --shadow: 0 20px 60px rgba(15,23,42,.10);
  --radius: 18px;

  /* text */
  --text: rgba(15,23,42,.92);
  --muted: rgba(15,23,42,.64);

  /* brand */
  --accent: #f59e0b;
  --accent2: #d97706;

  background:
    radial-gradient(900px 450px at 15% 20%, rgba(245,158,11,.14), transparent 60%),
    radial-gradient(900px 450px at 85% 70%, rgba(37,99,235,.12), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
  color: var(--text);
}

/* Card surface + glow parity */
.order-landing[data-theme="light"] .card{
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.82));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.order-landing[data-theme="light"] .card::before{
  background: radial-gradient(700px 260px at 30% 0%, rgba(245,158,11,.12), transparent 55%);
}

/* Inputs parity */
.order-landing[data-theme="light"] .field input{
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.90);
  color: var(--text);
}
.order-landing[data-theme="light"] .field input::placeholder{
  color: rgba(15,23,42,.38);
}
.order-landing[data-theme="light"] .field input:focus{
  border-color: rgba(245,158,11,.40);
  box-shadow: 0 0 0 4px rgba(245,158,11,.16);
}


.order-landing[data-theme="light"] .btn-ghost{
  background: rgba(255,255,255,.82);
  color: var(--text);
  border: 1px solid rgba(15,23,42,.14);
}

/* Divider + foot parity */
.order-landing[data-theme="light"] .divider{
  color: rgba(15,23,42,.55);
}
.order-landing[data-theme="light"] .divider::before,
.order-landing[data-theme="light"] .divider::after{
  background: rgba(15,23,42,.12);
}
.order-landing[data-theme="light"] .foot{
  border-top: 1px solid rgba(15,23,42,.10);
  color: rgba(15,23,42,.62);
}

/* Pulse dot parity */
.order-landing[data-theme="light"] .pulse-dot{
  background: rgba(245,158,11,.95);
  box-shadow: 0 0 0 rgba(245,158,11,.45);
}
@keyframes ol-pulse {
  0% { box-shadow: 0 0 0 0 rgba(245,158,11,.28); }
  70% { box-shadow: 0 0 0 10px rgba(245,158,11,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}

/* Loader parity */
.order-landing[data-theme="light"] .loader{
  background: rgba(247,248,252,.75);
}
.order-landing[data-theme="light"] .spinner{
  border: 4px solid rgba(15,23,42,.14);
  border-top-color: rgba(245,158,11,.95);
}

/* Result blocks parity */
.order-landing[data-theme="light"] .ol-pill{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,23,42,.14);
  color: rgba(15,23,42,.92);
}
.order-landing[data-theme="light"] .ol-sub{
  color: rgba(15,23,42,.70);
}

/* Notices parity */
.order-landing[data-theme="light"] .ol-notice{
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.82);
  color: rgba(15,23,42,.86);
}
.order-landing[data-theme="light"] .ol-notice-warn{
  border-color: rgba(245,158,11,.26);
  background: rgba(245,158,11,.10);
}
.order-landing[data-theme="light"] .ol-notice-info{
  border-color: rgba(37,99,235,.22);
  background: rgba(37,99,235,.08);
}

/* Select parity */
.order-landing[data-theme="light"] .ol-select{
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.90);
  color: rgba(15,23,42,.92);
}
.order-landing[data-theme="light"] .ol-select:focus{
  border-color: rgba(245,158,11,.40);
  box-shadow: 0 0 0 4px rgba(245,158,11,.16);
}

/* Opening hours parity */
.order-landing[data-theme="light"] .ol-hours{
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.82);
}
.order-landing[data-theme="light"] .ol-hours-title{
  color: rgba(15,23,42,.92);
}
.order-landing[data-theme="light"] .ol-hours-toggle{
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.86);
  color: rgba(15,23,42,.78);
}
.order-landing[data-theme="light"] .ol-hours-row{
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.86);
}
.order-landing[data-theme="light"] .ol-day{
  color: rgba(15,23,42,.90);
}
.order-landing[data-theme="light"] .ol-times{
  color: rgba(15,23,42,.72);
}
.order-landing[data-theme="light"] .ol-times b{
  color: rgba(15,23,42,.92);
}
.order-landing[data-theme="light"] .ol-hours-row.today{
  border-color: rgba(245,158,11,.26);
  background: rgba(245,158,11,.10);
}
.order-landing[data-theme="light"] .ol-hours-note{
  color: rgba(15,23,42,.62);
}