:root {
  --ink: #071522;
  --ink-soft: #173047;
  --muted: #607086;
  --line: #d8e0ea;
  --paper: #f3f7fb;
  --white: #ffffff;
  --yellow: #ffb000;
  --green: #168a58;
  --red: #c92a2a;
  --cyan: #18a7b8;
  --cream: #fff8ee;
  --shadow: 0 18px 46px rgba(7, 21, 34, 0.12);
  --premium-shadow: 0 20px 60px rgba(7, 21, 34, 0.14);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  max-width: 100%;
  min-width: 0;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand img {
  width: 248px;
  max-height: 116px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(7, 21, 34, 0.18)) contrast(1.12) saturate(1.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 104px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(250, 252, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(7, 21, 34, 0.06);
  backdrop-filter: blur(14px);
}

.site-nav,
.hero-actions,
.topbar-actions,
.role-switcher,
.action-row,
.toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a,
.primary-button,
.secondary-button,
.ghost-button,
.sidebar-install {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  font-weight: 900;
}

.site-nav a,
.ghost-button,
.secondary-button {
  background: var(--white);
}

.primary-button {
  border-color: var(--yellow);
  color: var(--ink);
  background: linear-gradient(135deg, #ffd86a 0%, var(--yellow) 52%, #18a7b8 145%);
  box-shadow: 0 12px 28px rgba(255, 176, 0, 0.24);
}

.dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--white);
  background: linear-gradient(135deg, #071522 0%, #123657 72%, #0f5965 135%);
  border: 1px solid #123657;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(7, 21, 34, 0.2);
}

.secondary-button {
  color: var(--ink);
  border-color: var(--ink);
}

.ghost-button,
.sidebar-install {
  color: var(--ink);
}

.compact {
  min-height: 34px;
  padding: 0 10px;
  font-size: 0.84rem;
}

.notice {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}

.danger {
  border-color: rgba(201, 42, 42, 0.3);
  color: var(--red);
}

.landing-page {
  background: var(--paper);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(22px, 6vw, 72px);
  min-height: calc(100svh - 76px);
  padding: clamp(38px, 7vw, 86px) clamp(18px, 5vw, 72px) 54px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow.dark {
  color: var(--muted);
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 0.96;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.45;
}

.hero-actions {
  margin-top: 26px;
}

.compact-brand {
  min-height: 78px;
}

.compact-brand img {
  width: 228px;
  max-height: 84px;
}

.site-nav a.is-highlight {
  border-color: var(--yellow);
  background: var(--yellow);
}

.landing-hero {
  min-height: calc(100svh - 76px);
}

.phone-shell {
  width: min(100%, 388px);
  justify-self: center;
  display: grid;
  gap: 12px;
  padding: 20px;
  background: var(--white);
  border: 12px solid var(--ink);
  border-radius: 30px;
  box-shadow: var(--premium-shadow);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 950;
}

.phone-top span {
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: var(--ink);
}

.phone-logo,
.phone-map,
.phone-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.phone-logo {
  display: grid;
  place-items: center;
  min-height: 138px;
  padding: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.phone-logo img {
  width: 272px;
  max-height: 122px;
  object-fit: contain;
}

.phone-map {
  position: relative;
  min-height: 184px;
  overflow: hidden;
  background: #eef5f9;
}

.phone-map .pin {
  width: 17px;
  height: 17px;
}

.phone-map .pin.origin {
  left: 44px;
  bottom: 44px;
  background: var(--ink);
}

.phone-map .pin.destination {
  right: 48px;
  top: 44px;
  background: var(--yellow);
}

.phone-map .route-line {
  left: 64px;
  right: 62px;
  top: 94px;
}

.phone-card {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.phone-card span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.phone-card strong {
  font-size: 0.9rem;
}

.phone-metrics {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.phone-metrics b {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef5f9;
  font-size: 0.72rem;
}

.access-section {
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.access-section h2 {
  margin: 0 0 22px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.04;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.access-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 250px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--yellow);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 21, 34, 0.08);
}

.access-card.driver-card {
  border-top-color: var(--cyan);
}

.access-pill {
  justify-self: start;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff0bd;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.driver-card .access-pill {
  color: var(--white);
  background: #2f7dea;
  box-shadow: 0 0 0 8px #dff3ff;
}

.access-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.access-card p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}

.access-card a {
  justify-self: start;
  margin-top: 6px;
}

.hero-panel {
  min-height: 480px;
  padding: 18px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.mini-map {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.12) 49%, rgba(255, 255, 255, 0.12) 51%, transparent 52%),
    linear-gradient(16deg, transparent 45%, rgba(255, 255, 255, 0.1) 46%, rgba(255, 255, 255, 0.1) 49%, transparent 50%),
    #10283f;
}

.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--yellow);
}

.pin.origin {
  left: 42px;
  bottom: 58px;
}

.pin.destination {
  right: 54px;
  top: 56px;
  background: var(--cyan);
}

.route-line {
  position: absolute;
  left: 58px;
  right: 68px;
  top: 144px;
  height: 5px;
  background: var(--yellow);
  transform: rotate(-18deg);
}

.ride-preview {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 16px;
  background: var(--white);
  color: var(--ink);
}

.ride-preview span,
.ride-preview small {
  color: var(--muted);
  font-weight: 800;
}

.ride-preview strong {
  font-size: 1.2rem;
}

.ride-preview div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-band,
.driver-callout,
.site-footer {
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 72px);
}

.content-band.alt {
  background: var(--white);
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
  margin-bottom: 22px;
}

.section-title.inline {
  align-items: center;
  margin-bottom: 0;
}

.section-title h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.04;
}

.feature-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.benefit-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.feature-grid article,
.benefit-grid div,
.city-list span,
.faq-list details,
.metric,
.panel,
.list-item,
.auth-card,
.empty-state {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 21, 34, 0.06);
}

.feature-grid article,
.benefit-grid div,
.city-list span,
.faq-list details {
  padding: 18px;
}

.feature-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 950;
}

.feature-grid strong,
.benefit-grid strong,
.city-list span,
.faq-list summary {
  display: block;
  font-weight: 950;
}

.feature-grid p,
.benefit-grid span,
.faq-list p,
.driver-callout p {
  color: var(--muted);
  line-height: 1.5;
}

.driver-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  background: var(--ink);
}

.driver-callout div {
  max-width: 720px;
}

.driver-callout h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  background: var(--ink);
}

.site-footer img {
  width: 118px;
}

.app-body {
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(24, 167, 184, 0.12), rgba(255, 176, 0, 0.06) 34%, rgba(243, 247, 251, 1) 72%),
    var(--paper);
}

.app-layout {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100svh;
}

.app-sidebar {
  position: sticky;
  top: 0;
  z-index: 22;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  height: auto;
  padding: 10px clamp(16px, 3vw, 32px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 224, 234, 0.82);
  box-shadow: 0 18px 48px rgba(7, 21, 34, 0.07);
  backdrop-filter: blur(18px);
}

.app-sidebar .brand {
  justify-content: center;
  flex: 0 0 auto;
  min-height: 70px;
  padding: 7px 12px;
  border: 1px solid rgba(216, 224, 234, 0.94);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 18px 40px rgba(7, 21, 34, 0.08);
}

.app-sidebar .brand img {
  width: 182px;
  max-height: 58px;
}

.role-badge {
  display: grid;
  gap: 4px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--yellow);
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  box-shadow: 0 10px 30px rgba(7, 21, 34, 0.05);
}

.role-badge span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.role-badge strong {
  font-size: 1.05rem;
}

.app-nav {
  display: flex;
  gap: 8px;
  min-width: 0;
  flex: 1 1 auto;
  overflow-x: auto;
  padding: 6px 2px;
  scrollbar-width: thin;
}

.app-nav a,
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(205, 216, 228, 0.96);
  border-radius: 999px;
  color: #10283f;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.app-nav a.is-active,
.mobile-nav a.is-active {
  color: var(--ink);
  background: linear-gradient(135deg, #ffd86a 0%, var(--yellow) 100%);
  border-color: var(--yellow);
  box-shadow: 0 12px 22px rgba(255, 176, 0, 0.22);
}

.nav-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  position: absolute;
  border-radius: 3px;
  border: 2px solid currentColor;
}

.nav-home::before {
  width: 14px;
  height: 12px;
  bottom: 2px;
}

.nav-home::after {
  width: 10px;
  height: 10px;
  top: 1px;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-45deg);
}

.nav-rides::before,
.nav-available::before,
.nav-active::before,
.nav-driver::before {
  width: 17px;
  height: 9px;
  bottom: 5px;
}

.nav-rides::after,
.nav-available::after,
.nav-active::after,
.nav-driver::after {
  width: 20px;
  height: 6px;
  bottom: 1px;
  border: 0;
  background:
    radial-gradient(circle at 4px 3px, currentColor 0 3px, transparent 3px),
    radial-gradient(circle at 16px 3px, currentColor 0 3px, transparent 3px);
}

.nav-wallet::before,
.nav-cash::before,
.nav-price::before {
  width: 16px;
  height: 12px;
  border-radius: 5px;
}

.nav-history::before {
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.nav-history::after {
  width: 6px;
  height: 6px;
  border-top: 0;
  border-left: 0;
  transform: rotate(10deg);
}

.nav-profile::before {
  width: 8px;
  height: 8px;
  top: 1px;
  border-radius: 50%;
}

.nav-profile::after {
  width: 16px;
  height: 8px;
  bottom: 1px;
  border-radius: 999px 999px 4px 4px;
}

.nav-city::before,
.nav-settings::before,
.nav-dot::before {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.nav-store::before {
  width: 16px;
  height: 12px;
  bottom: 2px;
  border-radius: 4px;
}

.nav-store::after {
  width: 10px;
  height: 6px;
  top: 1px;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.nav-orders::before {
  width: 16px;
  height: 14px;
  border-radius: 4px;
}

.nav-orders::after {
  width: 8px;
  height: 2px;
  border: 0;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.sidebar-install {
  display: inline-flex;
  margin-top: auto;
  position: relative;
  justify-content: flex-start;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  overflow: hidden;
  color: var(--ink);
  border-color: rgba(255, 176, 0, 0.72);
  background: linear-gradient(135deg, #fff4cc 0%, var(--yellow) 58%, #dff8fc 140%);
  box-shadow: 0 14px 32px rgba(255, 176, 0, 0.22);
}

.sidebar-install::before {
  content: "";
  width: 26px;
  aspect-ratio: 1;
  border-radius: 8px;
  background:
    linear-gradient(var(--ink), var(--ink)) center 6px / 12px 3px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 3px 14px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center 18px / 14px 3px no-repeat;
  border: 2px solid var(--ink);
}

.sidebar-install::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.45) 48%, transparent 60% 100%);
  transform: translateX(-120%);
  transition: transform 220ms ease;
}

.sidebar-install:hover::after {
  transform: translateX(120%);
}

.floating-install {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 42;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  color: var(--ink);
  background: linear-gradient(135deg, #fff4cc 0%, var(--yellow) 64%, #dff8fc 140%);
  border: 1px solid rgba(255, 176, 0, 0.72);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  font-weight: 950;
}

.app-body:not(.is-public-auth) .floating-install {
  display: none;
}

.app-body:has(.public-store-screen) .floating-install {
  display: none;
}

.app-main {
  min-width: 0;
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 16px clamp(18px, 3vw, 36px) 30px;
}

.app-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, auto) auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding: 13px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(216, 224, 234, 0.8);
  border-top: 3px solid var(--yellow);
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(16px);
}

#logoutButton {
  min-height: 30px;
  padding: 0 9px;
  border-color: rgba(216, 224, 234, 0.7);
  color: rgba(7, 21, 34, 0.7);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  box-shadow: none;
}

#logoutButton:hover,
#logoutButton:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
}

.app-topbar h1 {
  margin: 0;
  font-size: clamp(1.24rem, 2.1vw, 1.72rem);
}

.app-topbar .eyebrow {
  margin-bottom: 4px;
  font-size: 0.7rem;
}

.topbar-location {
  display: grid;
  gap: 2px;
  min-width: 180px;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(24, 167, 184, 0.1), rgba(255, 176, 0, 0.1));
  border: 1px solid rgba(216, 224, 234, 0.9);
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
}

.topbar-location[hidden] {
  display: none;
}

.topbar-location span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.topbar-location strong {
  max-width: 240px;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.18;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar-location[data-state="pending"] {
  border-left-color: var(--yellow);
}

.app-topbar .topbar-actions {
  justify-self: end;
}

.mobile-nav {
  display: none;
}

.mobile-nav:empty {
  display: none;
}

.screen {
  display: grid;
  gap: 14px;
}

.command-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.34fr);
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: clamp(16px, 2.4vw, 22px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 21, 34, 0.98), rgba(23, 48, 71, 0.98) 62%, rgba(18, 94, 102, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
  overflow: hidden;
}

.command-panel h2 {
  margin: 6px 0 0;
  font-size: clamp(1.55rem, 3.2vw, 2.65rem);
  line-height: 1;
}

.command-panel p {
  max-width: 580px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.command-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.command-summary,
.driver-switch-card {
  display: grid;
  gap: 8px;
  justify-items: start;
  padding: 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.command-summary strong,
.driver-switch-card strong {
  font-size: clamp(1.45rem, 3vw, 2.15rem);
}

.command-summary span,
.command-summary small,
.driver-switch-card small {
  color: var(--muted);
  font-weight: 900;
}

.driver-command.is-online {
  background: linear-gradient(135deg, #061f18, #123657 58%, #0f6b65);
}

.request-panel {
  border-top: 4px solid var(--yellow);
  box-shadow: 0 18px 52px rgba(7, 21, 34, 0.1);
}

.active-ride-panel {
  border-top: 4px solid var(--cyan);
}

.auth-wrap {
  display: grid;
  place-items: start center;
  padding-top: min(8vh, 60px);
}

.auth-card {
  width: min(100%, 520px);
  padding: 18px;
  box-shadow: var(--premium-shadow);
}

.password-reset-card {
  margin-top: 14px;
  border-top: 4px solid var(--cyan);
}

.app-body.is-public-auth {
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 176, 0, 0.18), transparent 32%),
    radial-gradient(circle at 84% 10%, rgba(24, 167, 184, 0.14), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #eef5f9 52%, #fff8ee 100%);
}

.is-public-auth .app-layout {
  display: block;
  min-height: 100svh;
}

.is-public-auth .app-sidebar,
.is-public-auth .app-topbar,
.is-public-auth .mobile-nav {
  display: none !important;
}

.is-public-auth .app-main {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: clamp(16px, 4vw, 34px);
}

.is-public-auth .screen {
  width: min(100%, 980px);
  padding: 0;
}

.is-public-auth .auth-wrap {
  width: min(100%, 760px);
  justify-self: center;
  padding-top: 0;
}

.auth-shell {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(340px, 430px);
  gap: 16px;
  align-items: stretch;
}

.auth-brand-panel {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 420px;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 21, 34, 0.98), rgba(23, 48, 71, 0.98) 58%, rgba(18, 94, 102, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
}

.auth-brand-panel img {
  width: min(100%, 300px);
  max-height: 150px;
  object-fit: contain;
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.auth-brand-panel h2 {
  max-width: 520px;
  margin: 12px 0 0;
  font-size: clamp(1.65rem, 3vw, 2.75rem);
  line-height: 1.02;
}

.auth-brand-panel p {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  line-height: 1.45;
}

.auth-rating-ribbon,
.splash-stars {
  display: flex;
  gap: 8px;
  align-items: center;
}

.auth-rating-ribbon span,
.splash-stars span {
  width: 18px;
  height: 18px;
  background: var(--yellow);
  clip-path: polygon(50% 0, 62% 34%, 98% 34%, 68% 55%, 80% 92%, 50% 70%, 20% 92%, 32% 55%, 2% 34%, 38% 34%);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.24));
}

.auth-rating-ribbon span {
  animation: starLift 1800ms ease-in-out infinite;
}

.auth-rating-ribbon span:nth-child(2),
.splash-stars span:nth-child(2) { animation-delay: 80ms; }
.auth-rating-ribbon span:nth-child(3),
.splash-stars span:nth-child(3) { animation-delay: 160ms; }
.auth-rating-ribbon span:nth-child(4),
.splash-stars span:nth-child(4) { animation-delay: 240ms; }
.auth-rating-ribbon span:nth-child(5),
.splash-stars span:nth-child(5) { animation-delay: 320ms; }
.auth-rating-ribbon span:nth-child(6),
.splash-stars span:nth-child(6) { animation-delay: 400ms; }
.auth-rating-ribbon span:nth-child(7),
.splash-stars span:nth-child(7) { animation-delay: 480ms; }

.premium-auth-card {
  align-self: center;
  width: 100%;
  padding: 20px;
  border-top: 4px solid var(--yellow);
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef5f9;
}

.auth-tab {
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  font-weight: 950;
}

.auth-tab.is-active {
  color: var(--ink);
  border-color: rgba(255, 176, 0, 0.64);
  background: linear-gradient(135deg, #fff7d9, #ffffff);
  box-shadow: 0 10px 20px rgba(7, 21, 34, 0.08);
}

.inline-auth-link {
  justify-self: start;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.password-panel {
  grid-column: 1 / -1;
}

.profile-photo-panel {
  overflow: hidden;
}

.profile-photo-content {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.profile-avatar-xl {
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
  border-width: 3px;
  border-color: var(--yellow);
  box-shadow: 0 16px 34px rgba(7, 21, 34, 0.18);
  font-size: 1.3rem;
}

.profile-photo-copy {
  min-width: 0;
}

.profile-photo-copy strong,
.profile-photo-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-photo-copy strong {
  font-size: 1.08rem;
  line-height: 1.2;
}

.profile-photo-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.profile-photo-form {
  margin-top: 14px;
}

.profile-photo-upload {
  border-style: dashed;
  background: linear-gradient(135deg, #fffdf5, #f7fbff);
}

.grid-2,
.grid-3,
.metric-grid,
.content-grid {
  display: grid;
  gap: 12px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3,
.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
}

.panel {
  min-width: 0;
  padding: 14px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.panel-header h2,
.auth-card h2 {
  margin: 0;
}

.metric {
  min-height: 96px;
  padding: 13px;
  border-left: 4px solid var(--yellow);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.metric-green {
  border-left-color: var(--green);
}

.metric-blue {
  border-left-color: var(--cyan);
}

.metric-red {
  border-left-color: var(--red);
}

.metric span,
.form label span,
.form-field > span,
.list-item span,
.status-pill {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 1.32rem;
}

.metric small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.form {
  display: grid;
  gap: 10px;
}

.form label,
.form-field {
  display: grid;
  gap: 6px;
  min-width: 0;
  font-weight: 850;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
}

.upload-field {
  padding: 12px;
  border: 1px dashed #b8c6d8;
  border-radius: 8px;
  background: #f8fbff;
}

.upload-field input[type="file"] {
  min-height: auto;
  min-width: 0;
  padding: 10px;
  background: var(--white);
}

.upload-field small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.form textarea {
  min-height: 86px;
  padding-top: 10px;
  resize: vertical;
}

.vehicle-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.vehicle-choice label {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 9px;
  row-gap: 1px;
  min-height: 44px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.vehicle-choice label strong,
.vehicle-choice label small {
  grid-column: 2;
  min-width: 0;
  line-height: 1.08;
}

.vehicle-choice label strong {
  align-self: end;
}

.vehicle-choice label small {
  align-self: start;
  overflow-wrap: anywhere;
}

.vehicle-choice label:has(input:checked),
.vehicle-choice label.is-selected {
  border-color: var(--yellow);
  background: linear-gradient(135deg, #fff8dc, #ffffff);
  box-shadow: 0 10px 22px rgba(255, 176, 0, 0.18);
  transform: translateY(-1px);
}

.vehicle-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.vehicle-icon {
  display: inline-grid;
  place-items: center;
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 36px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, #eefbfe, #ffffff);
  border: 1px solid rgba(24, 167, 184, 0.22);
  position: relative;
  flex: 0 0 auto;
}

.vehicle-icon::before,
.vehicle-icon::after {
  content: "";
  position: absolute;
}

.car-icon::before {
  width: 23px;
  height: 11px;
  border-radius: 10px 10px 4px 4px;
  background: var(--ink);
  box-shadow: 0 -6px 0 -2px var(--cyan), inset 7px 0 0 rgba(255, 255, 255, 0.18);
}

.car-icon::after {
  width: 27px;
  height: 7px;
  bottom: 8px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 6px 5px, var(--yellow) 0 4px, transparent 4px),
    radial-gradient(circle at 21px 5px, var(--yellow) 0 4px, transparent 4px);
}

.moto-icon::before {
  width: 23px;
  height: 9px;
  border-radius: 999px 999px 4px 4px;
  background: var(--ink);
  transform: rotate(-12deg);
  box-shadow: 8px -6px 0 -5px var(--cyan);
}

.moto-icon::after {
  width: 29px;
  height: 9px;
  bottom: 8px;
  background:
    radial-gradient(circle at 5px 5px, var(--yellow) 0 5px, transparent 5px),
    radial-gradient(circle at 23px 5px, var(--yellow) 0 5px, transparent 5px);
}

.payment-choice {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.payment-choice label {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 78px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.payment-choice label.is-selected,
.payment-choice label:has(input:checked) {
  border-color: var(--yellow);
  background: linear-gradient(135deg, #fff7d9, #ffffff 70%, #eefbfe);
  box-shadow: 0 14px 28px rgba(255, 176, 0, 0.18);
}

.payment-choice input {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  width: 24px;
  height: 24px;
  min-height: 24px;
  margin: 0;
  padding: 0;
  opacity: 0.01;
  cursor: pointer;
}

.payment-mark {
  width: 24px;
  height: 24px;
  border: 2px solid var(--ink);
  border-radius: 7px;
}

.payment-pix {
  transform: rotate(45deg) scale(0.82);
  border-color: var(--green);
  background: #e9fff5;
}

.payment-dinheiro {
  border-color: var(--yellow);
  background: linear-gradient(135deg, #fff4c8, #ffffff);
}

.payment-debito,
.payment-credito {
  border-color: var(--cyan);
  background: linear-gradient(180deg, #eefbfe 0 42%, #ffffff 42% 100%);
}

.payment-choice strong,
.payment-choice small {
  display: block;
}

.payment-choice small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.toggle-field {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.toggle-field input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--yellow);
}

.origin-control {
  display: grid;
  gap: 8px;
}

.destination-control {
  position: relative;
  display: grid;
  gap: 6px;
}

.origin-control .action-row {
  justify-content: flex-start;
}

.origin-control input[readonly] {
  color: var(--ink-soft);
  background: #eefbfe;
  border-color: rgba(24, 167, 184, 0.36);
}

.location-status {
  color: #50667d;
  font-size: 0.78rem;
  font-weight: 850;
}

.location-status.is-good {
  color: #126d41;
}

.address-suggestions {
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(24, 167, 184, 0.24);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(7, 21, 34, 0.12);
  z-index: 5;
}

.address-suggestion {
  display: grid;
  gap: 3px;
  width: 100%;
  min-height: 50px;
  padding: 9px 10px;
  color: var(--ink);
  text-align: left;
  border: 1px solid rgba(216, 224, 234, 0.9);
  border-radius: 8px;
  background: #f8fbff;
}

.address-suggestion:hover,
.address-suggestion:focus-visible {
  border-color: rgba(24, 167, 184, 0.62);
  background: #eefbfe;
  outline: none;
}

.address-suggestion strong {
  font-size: 0.95rem;
}

.address-suggestion span,
.address-empty {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.address-empty {
  padding: 10px;
}

.ride-request-shell {
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(440px, 520px);
  grid-template-rows: auto;
  gap: 0;
  min-height: min(760px, calc(100svh - 176px));
  overflow: hidden;
  border: 1px solid rgba(216, 224, 234, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 62px rgba(7, 21, 34, 0.12);
}

.ride-map-panel {
  position: relative;
  min-width: 0;
  min-height: 700px;
  overflow: hidden;
  background: #dfe9ee;
}

.ride-map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 21, 34, 0.07), transparent 22%, transparent 78%, rgba(7, 21, 34, 0.05)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 34%, rgba(7, 21, 34, 0.06));
}

.ride-map {
  width: 100%;
  height: 100%;
  min-height: 700px;
  border: 0;
  border-radius: 0;
}

.ride-map-header,
.ride-map-floating {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(216, 224, 234, 0.9);
  box-shadow: 0 14px 34px rgba(7, 21, 34, 0.12);
  backdrop-filter: blur(14px);
}

.ride-map-header {
  top: 20px;
  min-height: 46px;
  padding: 0 14px;
  font-weight: 950;
}

.ride-map-header span {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.ride-map-floating {
  right: auto;
  bottom: 20px;
  display: grid;
  justify-content: start;
  width: min(520px, calc(100% - 40px));
  padding: 14px 16px;
}

.ride-map-floating strong,
.ride-map-floating span {
  display: block;
}

.ride-map-floating span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.ride-map-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.82) 1px, transparent 1px),
    #dfe8ed;
  background-size: 72px 72px;
}

.map-road {
  position: absolute;
  height: 16px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(167, 181, 194, 0.46);
}

.map-road.main {
  left: -8%;
  right: -8%;
  top: 48%;
  transform: rotate(-18deg);
}

.map-road.cross {
  left: 12%;
  right: 4%;
  top: 30%;
  transform: rotate(28deg);
}

.map-road.arc {
  left: 34%;
  right: -10%;
  top: 68%;
  transform: rotate(8deg);
}

.map-pin {
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 8px 18px rgba(7, 21, 34, 0.26);
}

.map-pin.origin {
  left: 24%;
  top: 56%;
  background: var(--yellow);
}

.map-pin.destination {
  right: 26%;
  top: 28%;
  background: var(--cyan);
}

.ride-sheet {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 100%;
  height: auto;
  overflow: visible;
  padding: 18px;
  border-top: 0;
  border-left: 1px solid rgba(216, 224, 234, 0.9);
  border-radius: 0;
  box-shadow: -18px 0 46px rgba(7, 21, 34, 0.12);
}

.ride-sheet-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.ride-sheet-title h2 {
  margin: 8px 0 0;
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  line-height: 1;
}

.wallet-chip {
  display: grid;
  justify-items: end;
  gap: 3px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: #f8fbff;
  min-width: 108px;
}

.wallet-chip span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ride-route-fields {
  display: grid;
  gap: 12px;
}

.ride-options-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px;
  gap: 12px;
  align-items: end;
}

.ride-options-grid .toggle-field {
  grid-column: 1 / -1;
}

.ride-vehicle-field .vehicle-choice label {
  min-height: 66px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.ride-vehicle-field .vehicle-icon {
  width: 40px;
}

.ride-quote-card {
  margin-top: 12px;
  border-color: rgba(7, 21, 34, 0.12);
  background: var(--white);
  box-shadow: none;
}

.ride-quote-card .primary-button {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.quote-standby-card {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.ride-sheet .form {
  gap: 10px;
}

.ride-sheet .payment-choice {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ride-sheet .payment-choice label {
  min-height: 66px;
  padding: 10px;
}

.secondary-content {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.65fr);
}

.compact-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.driver-invite {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 176, 0, 0.4);
  background: linear-gradient(135deg, #fffaf0, #ffffff 58%, #eefbfe);
}

.driver-invite strong,
.driver-invite span {
  display: block;
}

.driver-invite span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.quote-card {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(24, 167, 184, 0.35);
  border-radius: 8px;
  background: linear-gradient(180deg, #eefbfe, #ffffff);
  box-shadow: 0 16px 42px rgba(7, 21, 34, 0.08);
}

.quote-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quote-head span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.quote-head strong {
  display: block;
  margin-top: 3px;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.quote-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.quote-grid div,
.price-grid div {
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
}

.quote-grid span,
.quote-grid strong,
.quote-grid small,
.price-grid span,
.price-grid strong,
.price-grid small {
  display: block;
  min-width: 0;
}

.quote-grid div,
.price-grid div {
  display: grid;
  gap: 4px;
}

.discount-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 10px;
  align-items: center;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(22, 138, 88, 0.24);
  border-radius: 8px;
  background: #edfff6;
}

.discount-line span,
.discount-line small {
  color: #126d41;
  font-weight: 900;
}

.discount-line small {
  grid-column: 1 / -1;
  font-size: 0.78rem;
}

.route-map {
  width: 100%;
  min-height: 260px;
  border: 1px solid rgba(24, 167, 184, 0.28);
  border-radius: 8px;
  background: #e8f2f5;
  overflow: hidden;
}

.store-menu-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  align-items: end;
  gap: 18px;
  border-top: 4px solid var(--yellow);
}

.store-menu-hero h2 {
  margin: 6px 0 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.store-menu-hero p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 850;
}

.store-order-form {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: start;
}

.menu-category {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.menu-category h3 {
  margin: 0;
  font-size: 1rem;
}

.menu-item-row {
  grid-template-columns: minmax(0, 1fr) auto 82px;
  cursor: pointer;
}

.menu-item-row input {
  text-align: center;
}

.delivery-store-card,
.delivery-order-card {
  border-left: 5px solid var(--cyan);
}

.delivery-order-card .driver-payment-reminder {
  margin-top: 10px;
}

#deliveryOrderResult {
  min-height: 0;
}

.delivery-admin-forms {
  align-items: start;
}

.public-store-screen {
  width: min(100%, 1120px);
  display: grid;
  gap: 14px;
  color: #f8fafc;
}

.public-store-screen .store-menu-hero,
.public-store-screen .store-menu-panel {
  padding: 18px;
  background: rgba(18, 18, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid var(--premium-yellow, #ffc107);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.public-store-screen .store-menu-hero {
  position: relative;
  min-height: 258px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22, 22, 22, 0.98), rgba(16, 34, 28, 0.94)),
    #121212;
}

.store-menu-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.store-menu-hero-content,
.store-menu-summary {
  position: relative;
  z-index: 1;
}

.store-hero-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.store-hero-logo {
  flex: 0 0 auto;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #0a0a0a;
  background: #ffc400;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  font-weight: 950;
}

.store-hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.public-store-screen .store-menu-hero h2 {
  color: #ffffff;
}

.public-store-screen .store-menu-hero p,
.public-store-screen .menu-category h3,
.public-store-screen .panel-header h2,
.public-store-screen .list-item strong,
.public-store-screen .form label,
.public-store-screen .form-field {
  color: #f8fafc;
}

.public-store-screen .store-menu-hero p {
  color: rgba(248, 250, 252, 0.82);
}

.store-menu-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.store-menu-summary div {
  min-height: 72px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.store-menu-summary span,
.store-menu-summary small,
.public-store-screen .form label span,
.public-store-screen .form-field > span,
.public-store-screen .list-item span,
.public-store-screen .list-item p {
  color: rgba(248, 250, 252, 0.7);
}

.store-menu-summary strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 1.1rem;
}

.public-store-screen .store-order-form {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.public-store-screen .menu-item-row {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.public-store-screen .form input,
.public-store-screen .form select,
.public-store-screen .form textarea,
.public-store-screen .menu-item-row input {
  color: #ffffff;
  background: #0f0f0f;
  border-color: rgba(255, 255, 255, 0.18);
}

.public-store-screen .form input::placeholder,
.public-store-screen .form textarea::placeholder {
  color: rgba(248, 250, 252, 0.52);
}

.public-store-screen .payment-choice label {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.public-store-screen .payment-choice label:has(input:checked),
.public-store-screen .payment-choice label.is-selected {
  color: #080808;
  background: linear-gradient(135deg, var(--premium-yellow, #ffc107), #ffe083);
  border-color: var(--premium-yellow, #ffc107);
}

.public-store-screen .payment-choice strong,
.public-store-screen .payment-choice small {
  color: inherit;
}

.public-store-screen .store-checkout-panel {
  position: sticky;
  top: 16px;
}

.call-button {
  width: 100%;
  min-height: 54px;
  font-size: 1rem;
}

.request-submit-button {
  min-height: 58px;
  margin-top: 2px;
  font-size: 1.02rem;
  box-shadow: 0 16px 30px rgba(255, 176, 0, 0.24);
}

.quote-error {
  padding: 12px 14px;
  color: #8f1d1d;
  background: #fff4f0;
  border: 1px solid rgba(201, 42, 42, 0.26);
  font-weight: 900;
}

.debt-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border-color: rgba(201, 42, 42, 0.22);
  background: linear-gradient(135deg, #fff7f2, #ffffff);
}

.debt-panel h2,
.debt-panel p {
  margin: 8px 0 0;
}

.balance-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.balance-board article {
  min-width: 0;
  padding: 16px;
  color: var(--white);
  background: linear-gradient(135deg, #071522, #173047);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(7, 21, 34, 0.14);
}

.balance-board article:nth-child(2) {
  background: linear-gradient(135deg, #0d6141, #168a58);
}

.balance-board article:nth-child(3) {
  background: linear-gradient(135deg, #123657, #18a7b8);
}

.balance-board span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.balance-board strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
}

.inline-form {
  grid-template-columns: minmax(140px, 190px) auto;
  align-items: end;
}

.list {
  display: grid;
  gap: 10px;
}

.list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.ride-card {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(150px, auto);
  padding: 16px;
  border: 1px solid rgba(216, 224, 234, 0.92);
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 12px 34px rgba(7, 21, 34, 0.08);
}

.ride-card.ride-accepted,
.ride-card.ride-in_progress {
  border-left-color: var(--cyan);
}

.ride-card.ride-completed {
  border-left-color: var(--green);
}

.ride-card.ride-cancelled,
.ride-card.ride-expired {
  border-left-color: var(--red);
}

.ride-main > strong {
  display: block;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.3;
}

.ride-person-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid rgba(216, 224, 234, 0.9);
  border-radius: 8px;
  background: rgba(248, 251, 255, 0.86);
}

.profile-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--cyan));
  border: 2px solid var(--white);
  box-shadow: 0 8px 18px rgba(7, 21, 34, 0.16);
  font-size: 0.82rem;
  font-weight: 950;
}

.profile-avatar.profile-avatar-xl {
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
  border-width: 3px;
  border-color: var(--yellow);
  box-shadow: 0 16px 34px rgba(7, 21, 34, 0.18);
  font-size: 1.3rem;
}

.ride-person-card span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.ride-main > p:first-of-type {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
  color: var(--ink);
  font-weight: 850;
}

.ride-main > p:not(:first-of-type) {
  font-size: 0.88rem;
}

.ride-distance-origin span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  color: #0f5f68;
  background: #eefbfe;
  border-radius: 999px;
}

.ride-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.list-item strong {
  display: block;
}

.list-item p {
  margin: 6px 0 0;
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--ink);
  background: #e8eef5;
}

.status-pill.green {
  color: var(--white);
  background: var(--green);
}

.status-pill.red {
  color: var(--white);
  background: var(--red);
}

.status-pill.blue {
  color: var(--white);
  background: var(--cyan);
}

.role-switcher {
  padding: 4px;
  border: 1px solid var(--line);
  background: var(--white);
}

.role-switcher:empty {
  display: none;
}

.role-chip {
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 950;
}

.role-chip.is-active {
  color: var(--ink);
  background: var(--yellow);
}

.doc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  margin: 2px 4px 2px 0;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--muted);
  background: #e8eef5;
  font-size: 0.72rem;
  font-weight: 900;
}

.doc-chip.is-ok {
  color: var(--white);
  background: var(--green);
}

.doc-view-button {
  min-height: 22px;
  padding: 0 7px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 21, 34, 0.28);
  font-size: 0.68rem;
  font-weight: 950;
}

.doc-view-button:hover {
  background: rgba(7, 21, 34, 0.42);
}

.empty-state {
  padding: 18px;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(216, 224, 234, 0.86);
  border-radius: 8px;
  background: var(--white);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  background: #f8fbff;
  white-space: nowrap;
}

tbody tr:hover {
  background: #fbfdff;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  max-width: min(380px, calc(100vw - 36px));
  padding: 14px 16px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.install-modal,
.document-modal {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(7, 21, 34, 0.68);
}

.install-modal[hidden],
.document-modal[hidden] {
  display: none;
}

.install-dialog,
.document-dialog {
  width: min(520px, 100%);
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.document-modal {
  z-index: 46;
}

.document-dialog {
  width: min(920px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
}

#documentMeta {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.document-preview {
  display: grid;
  place-items: center;
  min-height: 280px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #f8fbff;
}

.document-preview img {
  max-width: 100%;
  max-height: 68vh;
  object-fit: contain;
}

.document-preview iframe {
  width: 100%;
  min-height: 68vh;
  border: 0;
  background: var(--white);
}

.login-splash {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 21, 34, 0.08), rgba(7, 21, 34, 0.66)),
    linear-gradient(110deg, #071522 0%, #173047 48%, #0d5060 120%);
  animation: splashIn 180ms ease-out both;
  overflow: hidden;
}

.login-splash.is-leaving {
  animation: splashOut 220ms ease-in both;
}

.splash-scene {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(620px, 100%);
  min-height: 390px;
  padding: 28px 20px;
}

.splash-glow {
  position: absolute;
  inset: 14% 8% auto;
  height: 210px;
  background: linear-gradient(90deg, transparent, rgba(255, 196, 52, 0.58), transparent);
  filter: blur(24px);
  transform: skewX(-14deg);
  animation: headlightSweep 1900ms ease-in-out both;
}

.splash-brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 100%;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.38));
  animation: logoArrive 1500ms cubic-bezier(.2,.9,.2,1) both;
}

.splash-stars {
  position: relative;
  z-index: 3;
  animation: starsArrive 1300ms ease-out both;
}

.splash-stars span {
  animation: starLift 900ms ease-in-out infinite;
}

.splash-badge {
  display: grid;
  place-items: center;
  width: clamp(58px, 15vw, 86px);
  aspect-ratio: 1;
  border-radius: 28%;
  background: var(--yellow);
  color: #061220;
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  font-style: italic;
  font-weight: 950;
  line-height: 1;
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.08), 0 16px 30px rgba(0, 0, 0, 0.28);
}

.splash-name {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--white);
  font-size: clamp(2.2rem, 8vw, 4.7rem);
  font-style: italic;
  font-weight: 950;
  line-height: 0.92;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.42);
}

.splash-name em {
  color: var(--yellow);
  font-style: inherit;
}

.splash-scene strong {
  position: relative;
  z-index: 3;
  font-size: 1.25rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.splash-scene > span {
  position: relative;
  z-index: 3;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}

.splash-road {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  height: 108px;
  overflow: hidden;
  margin-top: -22px;
  border-bottom: 4px solid rgba(255, 255, 255, 0.16);
}

.splash-road::before {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: 18px;
  height: 42px;
  transform: perspective(180px) rotateX(58deg);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0 44px, transparent 44px 92px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0.55;
  animation: roadRun 620ms linear infinite;
}

.road-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  height: 3px;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(255, 176, 0, 0.9);
}

.vehicle {
  position: absolute;
  bottom: 39px;
  display: block;
  background: #f8fbff;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.42));
}

.vehicle.car {
  left: -160px;
  width: 122px;
  height: 34px;
  border-radius: 18px 30px 8px 8px;
  animation: carDrive 1800ms cubic-bezier(.24,.74,.2,1) 120ms both;
}

.vehicle.car::before {
  content: "";
  position: absolute;
  left: 34px;
  top: -20px;
  width: 54px;
  height: 28px;
  border-radius: 20px 24px 4px 4px;
  background: #f8fbff;
}

.vehicle.car::after {
  content: "";
  position: absolute;
  right: -38px;
  top: 8px;
  width: 42px;
  height: 12px;
  background: linear-gradient(90deg, rgba(255, 230, 150, 0.9), transparent);
  filter: blur(3px);
}

.vehicle.car i,
.vehicle.bike i {
  position: absolute;
  left: 16px;
  bottom: -9px;
  width: 18px;
  height: 18px;
  border: 4px solid var(--yellow);
  border-radius: 50%;
  background: #061220;
}

.vehicle.car i::after {
  content: "";
  position: absolute;
  left: 72px;
  top: -4px;
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
}

.vehicle.bike {
  right: -130px;
  width: 84px;
  height: 28px;
  border-radius: 20px 28px 8px 8px;
  transform: skewX(-18deg);
  animation: bikeDrive 1650ms cubic-bezier(.18,.84,.24,1) 60ms both;
}

.vehicle.bike::before {
  content: "";
  position: absolute;
  left: -56px;
  top: 10px;
  width: 54px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--yellow));
}

.vehicle.bike::after {
  content: "";
  position: absolute;
  left: 30px;
  top: -28px;
  width: 18px;
  height: 34px;
  border-radius: 12px 12px 2px 2px;
  background: #f8fbff;
  transform: rotate(-24deg);
}

.vehicle.bike i {
  left: 6px;
}

.vehicle.bike i::after {
  content: "";
  position: absolute;
  left: 50px;
  top: -4px;
  width: 18px;
  height: 18px;
  border: 4px solid var(--yellow);
  border-radius: 50%;
  background: #061220;
}

@keyframes splashIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes splashOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(1.02); }
}

@keyframes logoPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.025); }
}

@keyframes roadRun {
  from { background-position-x: 0; }
  to { background-position-x: 92px; }
}

@keyframes logoArrive {
  0% { opacity: 0; transform: translateY(18px) scale(0.94); }
  42% { opacity: 1; transform: translateY(0) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes headlightSweep {
  0% { opacity: 0; transform: translateX(-44%) skewX(-14deg); }
  38% { opacity: 1; }
  100% { opacity: 0.75; transform: translateX(38%) skewX(-14deg); }
}

@keyframes starsArrive {
  0% { opacity: 0; transform: translateY(14px) scale(0.8); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes starLift {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.08); }
}

@keyframes carDrive {
  0% { transform: translateX(0) scale(0.84); opacity: 0; }
  18% { opacity: 1; }
  88% { opacity: 1; }
  100% { transform: translateX(calc(100vw + 230px)) scale(1); opacity: 0; }
}

@keyframes bikeDrive {
  0% { transform: translateX(0) skewX(-18deg) scale(0.9); opacity: 0; }
  15% { opacity: 1; }
  86% { opacity: 1; }
  100% { transform: translateX(calc(-100vw - 230px)) skewX(-18deg) scale(1); opacity: 0; }
}

.step-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.step-list div {
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.step-list strong,
.step-list span {
  display: block;
}

.step-list span {
  margin-top: 4px;
  color: var(--muted);
}

@media (max-width: 1020px) {
  .hero,
  .content-grid,
  .store-menu-hero,
  .store-order-form,
  .public-store-screen .store-order-form,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .feature-grid,
  .grid-3,
  .metric-grid,
  .balance-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-layout {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .app-nav {
    display: none;
  }

  .mobile-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    bottom: 12px;
    z-index: 30;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 0;
    padding: 10px;
    border: 1px solid rgba(216, 224, 234, 0.9);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 48px rgba(7, 21, 34, 0.16);
    backdrop-filter: blur(16px);
    pointer-events: none;
  }

  .mobile-nav a {
    flex: 0 0 auto;
    justify-content: center;
    min-width: 104px;
    color: var(--ink);
    border-color: var(--line);
    background: var(--white);
    pointer-events: auto;
  }

  .sidebar-install {
    margin-top: 0;
  }

  .app-sidebar .brand {
    min-height: 86px;
    padding: 8px;
  }

  .app-sidebar .brand img {
    width: 218px;
    max-height: 92px;
  }

  .role-badge {
    display: none;
  }

  .app-main {
    padding-bottom: 104px;
  }

  .screen {
    padding-bottom: 112px;
  }

  .primary-button,
  .secondary-button,
  .ghost-button,
  .dark-button {
    scroll-margin-bottom: 132px;
  }
}

@media (max-width: 1120px) {
  .ride-request-shell {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(300px, 42vh) auto;
    min-height: 0;
  }

  .ride-map-panel {
    min-height: 300px;
  }

  .ride-map,
  .ride-map-placeholder {
    min-height: 300px;
  }

  .ride-sheet {
    width: calc(100% - 16px);
    height: auto;
    max-height: none;
    overflow: visible;
    padding: 14px;
    margin: -18px auto 0;
    border-left: 0;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -18px 46px rgba(7, 21, 34, 0.12);
  }
}

@media (max-width: 640px) {
  .site-header,
  .app-topbar,
  .driver-callout,
  .site-footer,
  .section-title {
    align-items: stretch;
    flex-direction: column;
  }

  .compact-brand {
    min-height: 88px;
  }

  .compact-brand img {
    width: 244px;
    max-height: 92px;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav a,
  .hero-actions a,
  .topbar-actions .ghost-button {
    flex: 1 1 auto;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 14vw, 3.5rem);
  }

  .hero-panel {
    min-height: 360px;
  }

  .mini-map {
    min-height: 220px;
  }

  .benefit-grid,
  .feature-grid,
  .access-grid,
  .grid-2,
  .grid-3,
  .ride-options-grid,
  .payment-choice,
  .secondary-content,
  .metric-grid,
  .balance-board,
  .quote-grid,
  .price-grid,
  .store-menu-summary {
    grid-template-columns: 1fr;
  }

  .public-store-screen .store-checkout-panel {
    position: static;
  }

  .command-panel {
    grid-template-columns: 1fr;
  }

  .app-topbar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .topbar-location {
    width: 100%;
    min-width: 0;
  }

  .topbar-location strong {
    max-width: none;
  }

  .app-topbar .topbar-actions {
    justify-self: stretch;
    justify-content: space-between;
  }

  .payment-choice {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .command-summary,
  .driver-switch-card {
    width: 100%;
  }

  .ride-request-shell {
    grid-template-rows: 220px auto;
  }

  .ride-map-panel {
    min-height: 220px;
  }

  .ride-map,
  .ride-map-placeholder {
    min-height: 220px;
  }

  .ride-map-header {
    top: 12px;
    left: 12px;
    right: 12px;
    min-height: 38px;
    padding: 0 10px;
  }

  .ride-map-floating {
    display: none;
  }

  .ride-sheet {
    width: calc(100% - 16px);
    margin-top: -12px;
  }

  .ride-sheet-title {
    align-items: stretch;
    flex-direction: column;
  }

  .wallet-chip {
    justify-items: start;
  }

  .app-main,
  .app-sidebar {
    padding: 14px;
  }

  .app-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .app-sidebar .brand {
    width: 100%;
  }

  .mobile-nav a {
    flex: 0 0 auto;
    min-width: 96px;
    padding: 0 8px;
    font-size: 0.82rem;
  }

  .mobile-nav {
    position: sticky;
    top: 0;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    gap: 6px;
    margin: 0 0 12px;
    padding: 6px;
    pointer-events: auto;
  }

  .mobile-nav a {
    min-width: 88px;
    min-height: 38px;
    gap: 6px;
  }

  .screen {
    padding-bottom: 20px;
  }

  .app-topbar {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .debt-panel,
  .inline-form {
    grid-template-columns: 1fr;
  }

  .list-item,
  .ride-card,
  .menu-item-row {
    grid-template-columns: 1fr;
  }

  .ride-actions {
    justify-items: stretch;
  }

  .ride-actions .action-row,
  .ride-actions .primary-button,
  .ride-actions .secondary-button {
    width: 100%;
  }

  .driver-invite {
    align-items: stretch;
    flex-direction: column;
  }

  .sidebar-install {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    justify-content: center;
    font-size: 0.96rem;
    white-space: nowrap;
  }

  .sidebar-install::before {
    flex: 0 0 auto;
    width: 22px;
  }
}

.is-public-auth .app-main {
  padding: clamp(16px, 4vw, 34px) !important;
}

.is-public-auth .screen {
  padding-bottom: 0 !important;
}

@media (max-width: 900px) {
  .auth-shell {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .auth-brand-panel {
    min-height: auto;
    padding: 16px;
  }

  .auth-brand-panel img {
    width: min(100%, 230px);
    max-height: 116px;
  }

  .auth-brand-panel h2 {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }
}

@media (max-width: 520px) {
  .is-public-auth .app-main {
    place-items: start center;
    padding: 12px !important;
  }

  .auth-shell,
  .is-public-auth .auth-wrap {
    width: 100%;
  }

  .auth-brand-panel {
    gap: 10px;
  }

  .auth-brand-panel p {
    display: none;
  }

  .premium-auth-card,
  .is-public-auth .auth-card {
    padding: 16px;
  }
}

/* Premium UI refresh v51: visual-only layer, keeping backend flows untouched. */
:root {
  --premium-bg: #0b0b0b;
  --premium-surface: #121212;
  --premium-card: #181818;
  --premium-elevated: #202020;
  --premium-line: rgba(255, 255, 255, 0.1);
  --premium-text: #f7f7f2;
  --premium-muted: #a8adb7;
  --premium-yellow: #ffc107;
  --premium-green: #00ff88;
  --premium-blue: #43c7d6;
  --premium-shadow-dark: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.app-body:not(.is-public-auth) {
  color: var(--premium-text);
  background:
    linear-gradient(180deg, #070707 0%, #0b0b0b 52%, #101010 100%);
}

.app-body:not(.is-public-auth) .app-main {
  width: min(100%, 1680px);
}

.app-body:not(.is-public-auth) .app-sidebar,
.app-body:not(.is-public-auth) .app-topbar,
.app-body:not(.is-public-auth) .panel,
.app-body:not(.is-public-auth) .metric,
.app-body:not(.is-public-auth) .list-item,
.app-body:not(.is-public-auth) .quote-card,
.app-body:not(.is-public-auth) .install-dialog,
.app-body:not(.is-public-auth) .document-dialog {
  color: var(--premium-text);
  background: rgba(18, 18, 18, 0.94);
  border-color: var(--premium-line);
  box-shadow: var(--premium-shadow-dark);
}

.app-body:not(.is-public-auth) .app-sidebar {
  background: rgba(8, 8, 8, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.app-body:not(.is-public-auth) .app-sidebar .brand {
  background: #ffffff;
  border-color: rgba(255, 193, 7, 0.5);
  box-shadow: 0 14px 36px rgba(255, 193, 7, 0.14);
}

.app-body:not(.is-public-auth) .role-badge,
.app-body:not(.is-public-auth) .role-switcher,
.app-body:not(.is-public-auth) .topbar-location {
  color: var(--premium-text);
  background: var(--premium-surface);
  border-color: var(--premium-line);
}

.app-body:not(.is-public-auth) .role-badge {
  border-left-color: var(--premium-yellow);
}

.app-body:not(.is-public-auth) .app-nav a,
.app-body:not(.is-public-auth) .mobile-nav a,
.app-body:not(.is-public-auth) .ghost-button,
.app-body:not(.is-public-auth) .secondary-button {
  color: var(--premium-text);
  background: #171717;
  border-color: var(--premium-line);
}

.app-body:not(.is-public-auth) .app-nav a.is-active,
.app-body:not(.is-public-auth) .mobile-nav a.is-active,
.app-body:not(.is-public-auth) .role-chip.is-active {
  color: #090909;
  background: linear-gradient(135deg, var(--premium-yellow), #ffd767);
  border-color: var(--premium-yellow);
  box-shadow: 0 16px 30px rgba(255, 193, 7, 0.22);
}

.app-body:not(.is-public-auth) .primary-button {
  color: #050505;
  border-color: var(--premium-yellow);
  background: linear-gradient(135deg, var(--premium-yellow), #ffe083);
  box-shadow: 0 18px 34px rgba(255, 193, 7, 0.25);
}

.app-body:not(.is-public-auth) .primary-button,
.app-body:not(.is-public-auth) .secondary-button,
.app-body:not(.is-public-auth) .ghost-button,
.quick-action-card,
.vehicle-choice label,
.payment-choice label,
.ride-card {
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.app-body:not(.is-public-auth) .primary-button:hover,
.app-body:not(.is-public-auth) .secondary-button:hover,
.app-body:not(.is-public-auth) .ghost-button:hover,
.quick-action-card:hover,
.vehicle-choice label:hover,
.payment-choice label:hover {
  transform: translateY(-1px);
}

.app-body:not(.is-public-auth) button:active,
.app-body:not(.is-public-auth) .primary-button:active,
.app-body:not(.is-public-auth) .secondary-button:active,
.app-body:not(.is-public-auth) .ghost-button:active {
  transform: translateY(1px) scale(0.99);
}

.app-body:not(.is-public-auth) .eyebrow,
.app-body:not(.is-public-auth) .notice,
.app-body:not(.is-public-auth) .metric span,
.app-body:not(.is-public-auth) .metric small,
.app-body:not(.is-public-auth) .form label span,
.app-body:not(.is-public-auth) .form-field > span,
.app-body:not(.is-public-auth) .list-item span,
.app-body:not(.is-public-auth) .list-item p,
.app-body:not(.is-public-auth) .empty-state,
.app-body:not(.is-public-auth) .location-status,
.app-body:not(.is-public-auth) .payment-choice small,
.app-body:not(.is-public-auth) .vehicle-choice small {
  color: var(--premium-muted);
}

.app-body:not(.is-public-auth) .form input,
.app-body:not(.is-public-auth) .form select,
.app-body:not(.is-public-auth) .form textarea,
.app-body:not(.is-public-auth) .toggle-field,
.app-body:not(.is-public-auth) .upload-field {
  color: var(--premium-text);
  background: #151515;
  border-color: var(--premium-line);
}

.app-body:not(.is-public-auth) .form input::placeholder,
.app-body:not(.is-public-auth) .form textarea::placeholder {
  color: rgba(247, 247, 242, 0.42);
}

.app-body:not(.is-public-auth) .topbar-location strong,
.app-body:not(.is-public-auth) .app-topbar h1,
.app-body:not(.is-public-auth) .panel-header h2,
.app-body:not(.is-public-auth) .metric strong,
.app-body:not(.is-public-auth) .list-item strong {
  color: var(--premium-text);
}

.app-body:not(.is-public-auth) .status-pill {
  color: var(--premium-text);
  background: #262626;
  border: 1px solid var(--premium-line);
}

.app-body:not(.is-public-auth) .status-pill.green {
  color: #02140b;
  background: var(--premium-green);
}

.app-body:not(.is-public-auth) .status-pill.blue {
  color: #031013;
  background: var(--premium-blue);
}

.app-body:not(.is-public-auth) .status-pill.red {
  color: #ffffff;
  background: #db3b3b;
}

.passenger-premium-screen {
  display: grid;
  gap: 14px;
}

.passenger-premium-screen .premium-ride-request {
  position: relative;
  display: block;
  min-height: min(840px, calc(100svh - 132px));
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.1);
  background: var(--premium-bg);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
}

.passenger-premium-screen .ride-map-panel {
  min-height: min(840px, calc(100svh - 132px));
  background: #111;
}

.passenger-premium-screen .ride-map,
.passenger-premium-screen .ride-map-placeholder {
  min-height: min(840px, calc(100svh - 132px));
}

.passenger-premium-screen .ride-map-placeholder {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    #121212;
  background-size: 70px 70px;
}

.passenger-premium-screen .map-road {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.passenger-premium-screen .map-pin.origin {
  background: var(--premium-yellow);
}

.passenger-premium-screen .map-pin.destination {
  background: var(--premium-green);
}

.passenger-premium-screen .ride-map-header,
.passenger-premium-screen .ride-map-floating {
  color: var(--premium-text);
  background: rgba(11, 11, 11, 0.78);
  border-color: var(--premium-line);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
}

.passenger-premium-screen .ride-map-header strong,
.passenger-premium-screen .ride-map-floating strong {
  color: var(--premium-text);
}

.passenger-premium-screen .ride-map-header span,
.passenger-premium-screen .ride-map-floating span {
  color: var(--premium-muted);
}

.passenger-premium-screen .ride-sheet {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: min(480px, calc(100% - 36px));
  max-height: calc(100% - 36px);
  overflow: auto;
  padding: 18px;
  color: var(--premium-text);
  background: rgba(13, 13, 13, 0.92);
  border: 1px solid var(--premium-line);
  border-top: 1px solid rgba(255, 193, 7, 0.55);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(18px);
}

.passenger-premium-screen .ride-sheet-title h2 {
  color: var(--premium-text);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.destination-hero-field input {
  min-height: 58px;
  padding: 0 16px;
  font-size: 1.04rem;
  font-weight: 900;
}

.passenger-premium-screen .wallet-chip,
.app-body:not(.is-public-auth) .quote-grid div,
.app-body:not(.is-public-auth) .price-grid div,
.app-body:not(.is-public-auth) .address-suggestions,
.app-body:not(.is-public-auth) .address-suggestion {
  color: var(--premium-text);
  background: #171717;
  border-color: var(--premium-line);
}

.premium-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.quick-action-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 8px 10px;
  min-height: 70px;
  padding: 10px;
  color: var(--premium-text);
  text-align: left;
  border: 1px solid var(--premium-line);
  border-radius: 8px;
  background: #171717;
}

.quick-action-card strong,
.quick-action-card small {
  display: block;
}

.quick-action-card small {
  grid-column: 2;
  color: var(--premium-muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.quick-action-icon {
  position: relative;
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 193, 7, 0.14);
  border: 1px solid rgba(255, 193, 7, 0.42);
}

.quick-action-icon::before,
.quick-action-icon::after {
  content: "";
  position: absolute;
}

.quick-known::before {
  width: 11px;
  height: 11px;
  top: 7px;
  border-radius: 50%;
  background: var(--premium-yellow);
}

.quick-known::after {
  width: 20px;
  height: 9px;
  bottom: 6px;
  border-radius: 999px 999px 5px 5px;
  background: var(--premium-text);
}

.quick-negotiate::before {
  width: 18px;
  height: 12px;
  border: 2px solid var(--premium-green);
  border-radius: 5px;
}

.quick-negotiate::after {
  width: 16px;
  height: 2px;
  background: var(--premium-yellow);
  transform: rotate(-20deg);
}

.app-body:not(.is-public-auth) .vehicle-choice label,
.app-body:not(.is-public-auth) .payment-choice label {
  color: var(--premium-text);
  background: #171717;
  border-color: var(--premium-line);
}

.vehicle-choice label {
  align-items: center;
}

.vehicle-choice small {
  display: block;
  margin-top: 2px;
  font-size: 0.7rem;
  font-weight: 850;
}

.app-body:not(.is-public-auth) .vehicle-choice label:has(input:checked),
.app-body:not(.is-public-auth) .vehicle-choice label.is-selected,
.app-body:not(.is-public-auth) .payment-choice label:has(input:checked),
.app-body:not(.is-public-auth) .payment-choice label.is-selected {
  color: var(--premium-text);
  border-color: var(--premium-yellow);
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.18), rgba(0, 255, 136, 0.08));
  box-shadow: 0 18px 34px rgba(255, 193, 7, 0.14);
}

.app-body:not(.is-public-auth) .vehicle-icon {
  background: #0f0f0f;
  border-color: rgba(255, 193, 7, 0.32);
}

.app-body:not(.is-public-auth) .car-icon::before,
.app-body:not(.is-public-auth) .moto-icon::before {
  background: var(--premium-text);
}

.app-body:not(.is-public-auth) .payment-mark {
  border-color: var(--premium-text);
}

.app-body:not(.is-public-auth) .payment-pix {
  border-color: var(--premium-green);
  background: rgba(0, 255, 136, 0.14);
}

.app-body:not(.is-public-auth) .payment-dinheiro {
  border-color: var(--premium-yellow);
  background: rgba(255, 193, 7, 0.16);
}

.app-body:not(.is-public-auth) .payment-debito,
.app-body:not(.is-public-auth) .payment-credito {
  border-color: var(--premium-blue);
  background: linear-gradient(180deg, rgba(67, 199, 214, 0.18) 0 42%, #171717 42% 100%);
}

.passenger-premium-screen .ride-quote-card {
  background: linear-gradient(180deg, #181818, #101010);
  border-color: rgba(255, 193, 7, 0.25);
}

.passenger-premium-screen .ride-quote-card .primary-button {
  color: #050505;
  background: linear-gradient(135deg, var(--premium-green), #99ffd0);
  border-color: var(--premium-green);
  box-shadow: 0 18px 34px rgba(0, 255, 136, 0.22);
}

.driver-command {
  min-height: 220px;
  background:
    linear-gradient(135deg, #080808 0%, #101010 56%, #082316 100%);
  border-color: rgba(0, 255, 136, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.driver-command.is-offline {
  background:
    linear-gradient(135deg, #080808 0%, #141414 62%, #2a2104 100%);
}

.driver-command h2 {
  color: var(--premium-text);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.driver-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 620px;
  margin-top: 18px;
}

.driver-hero-stats div {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--premium-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.driver-hero-stats span,
.driver-hero-stats strong {
  display: block;
}

.driver-hero-stats span {
  color: var(--premium-muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.driver-hero-stats strong {
  margin-top: 6px;
  color: var(--premium-text);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.app-body:not(.is-public-auth) .driver-switch-card,
.app-body:not(.is-public-auth) .command-summary {
  color: var(--premium-text);
  background: rgba(18, 18, 18, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
}

.driver-online-button {
  width: 100%;
  min-height: 66px;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.driver-ride-card.ride-requested {
  border-left-color: var(--premium-green);
  background: linear-gradient(180deg, #181818, #101010);
  box-shadow: 0 22px 58px rgba(0, 255, 136, 0.12);
}

.ride-alert-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 10px 12px;
  color: #061006;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--premium-green), #b3ffd9);
  box-shadow: 0 14px 28px rgba(0, 255, 136, 0.18);
}

.ride-alert-strip span,
.ride-alert-strip small {
  color: #061006 !important;
  font-weight: 950;
  text-transform: uppercase;
}

.ride-alert-strip strong {
  color: #061006;
  font-size: 1.25rem;
}

.ride-alert-strip small {
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  animation: rideAlertGlow 1200ms ease-in-out infinite;
}

.accept-ride-button,
.decline-ride-button {
  min-height: 52px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.app-body:not(.is-public-auth) .accept-ride-button {
  color: #03140b;
  background: linear-gradient(135deg, var(--premium-green), #a6ffd5);
  border-color: var(--premium-green);
  box-shadow: 0 18px 34px rgba(0, 255, 136, 0.22);
}

.app-body:not(.is-public-auth) .decline-ride-button {
  color: var(--premium-text);
  background: #242424;
  border-color: rgba(255, 255, 255, 0.2);
}

.ride-arrival-chip,
.ride-reference {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: var(--premium-text) !important;
  border: 1px solid rgba(0, 255, 136, 0.28);
  border-radius: 999px;
  background: rgba(0, 255, 136, 0.1);
  font-weight: 900;
}

.ride-reference {
  border-color: rgba(255, 193, 7, 0.34);
  background: rgba(255, 193, 7, 0.1);
}

.app-body:not(.is-public-auth) .table-wrap {
  border-color: var(--premium-line);
  background: #101010;
}

.app-body:not(.is-public-auth) table {
  color: #f8fafc;
  background: #101010;
}

.app-body:not(.is-public-auth) th {
  color: #dbeafe;
  background: #171717;
}

.app-body:not(.is-public-auth) tbody tr {
  background: #101010;
}

.app-body:not(.is-public-auth) td {
  color: #f8fafc;
  border-bottom-color: var(--premium-line);
}

.app-body:not(.is-public-auth) td span {
  color: #cbd5e1;
}

.app-body:not(.is-public-auth) tbody tr:hover {
  background: #191919;
}

.app-body:not(.is-public-auth) .toast {
  color: #050505;
  background: var(--premium-yellow);
  border-color: rgba(255, 255, 255, 0.28);
}

@keyframes rideAlertGlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .app-body:not(.is-public-auth) *,
  .ride-alert-strip small {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1120px) {
  .passenger-premium-screen .premium-ride-request {
    min-height: auto;
  }

  .passenger-premium-screen .ride-map-panel,
  .passenger-premium-screen .ride-map,
  .passenger-premium-screen .ride-map-placeholder {
    min-height: 360px;
  }

  .passenger-premium-screen .ride-sheet {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 20px);
    max-height: none;
    margin: -28px auto 0;
  }
}

@media (max-width: 640px) {
  .app-body:not(.is-public-auth) .app-sidebar,
  .app-body:not(.is-public-auth) .app-topbar {
    background: #0b0b0b;
  }

  .passenger-premium-screen .ride-map-panel,
  .passenger-premium-screen .ride-map,
  .passenger-premium-screen .ride-map-placeholder {
    min-height: 250px;
  }

  .passenger-premium-screen .ride-sheet {
    width: calc(100% - 12px);
    margin-top: -24px;
    padding: 14px;
  }

  .premium-quick-actions,
  .driver-hero-stats {
    grid-template-columns: 1fr;
  }

  .ride-alert-strip {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .ride-alert-strip strong {
    grid-column: 1 / -1;
  }

  .accept-ride-button,
  .decline-ride-button,
  .driver-online-button {
    min-height: 56px;
  }
}

.app-body:not(.is-public-auth) .empty-state,
.app-body:not(.is-public-auth) .driver-invite,
.app-body:not(.is-public-auth) .debt-panel,
.app-body:not(.is-public-auth) .quote-error {
  color: var(--premium-muted);
  background: #151515;
  border: 1px solid var(--premium-line);
}

.app-body:not(.is-public-auth) .driver-invite strong,
.app-body:not(.is-public-auth) .driver-invite h2,
.app-body:not(.is-public-auth) .debt-panel h2 {
  color: var(--premium-text);
}

.app-body:not(.is-public-auth) .driver-invite span,
.app-body:not(.is-public-auth) .driver-invite p,
.app-body:not(.is-public-auth) .debt-panel p {
  color: var(--premium-muted);
}

.app-body:not(.is-public-auth) .driver-command.is-online {
  background:
    linear-gradient(135deg, #080808 0%, #101010 58%, #062316 100%);
  border-color: rgba(0, 255, 136, 0.2);
}

.app-body:not(.is-public-auth) .driver-command.is-offline {
  background:
    linear-gradient(135deg, #080808 0%, #121212 58%, #2a2104 100%);
  border-color: rgba(255, 193, 7, 0.22);
}

.passenger-premium-screen .ride-sheet {
  width: min(560px, calc(100% - 36px));
  top: 10px;
  bottom: auto;
  max-height: min(calc(100% - 20px), calc(100svh - 232px));
}

.passenger-premium-screen .ride-sheet .form {
  gap: 7px;
}

.passenger-premium-screen .ride-sheet .payment-choice {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.passenger-premium-screen .ride-sheet .payment-choice label {
  min-height: 56px;
  padding: 8px;
}

.passenger-premium-screen .ride-sheet .payment-choice strong {
  font-size: 0.86rem;
  line-height: 1.08;
}

.passenger-premium-screen .ride-sheet .payment-choice small {
  font-size: 0.66rem;
  line-height: 1.12;
}

.passenger-premium-screen .ride-sheet .route-map {
  min-height: 230px;
}

.passenger-premium-screen .destination-hero-field input {
  min-height: 52px;
}

.passenger-premium-screen .quick-action-card {
  min-height: 62px;
  padding: 9px;
}

.passenger-premium-screen .request-submit-button {
  position: static;
}

@media (max-width: 1120px) {
  .passenger-premium-screen .ride-sheet {
    max-height: none;
    top: auto;
    bottom: auto;
  }
}

@media (min-width: 1121px) {
  .passenger-premium-screen .origin-control {
    gap: 5px;
  }

  .passenger-premium-screen .origin-control label span,
  .passenger-premium-screen .location-status {
    display: none;
  }

  .passenger-premium-screen .origin-control .action-row {
    flex-wrap: nowrap;
  }

  .passenger-premium-screen .origin-control .compact {
    min-height: 32px;
    font-size: 0.74rem;
  }

  .passenger-premium-screen .ride-options-grid {
    grid-template-columns: minmax(0, 1fr) 116px minmax(116px, 0.6fr);
    align-items: end;
  }

  .passenger-premium-screen .ride-options-grid .toggle-field {
    grid-column: auto;
    min-height: 42px;
  }

  .passenger-premium-screen .ride-vehicle-field .vehicle-choice label {
    min-height: 58px;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }

  .passenger-premium-screen .ride-vehicle-field .vehicle-choice small {
    display: none;
  }
}

.app-body:not(.is-public-auth) .mobile-nav {
  background: rgba(11, 11, 11, 0.94);
  border-color: var(--premium-line);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

@media (max-width: 640px) {
  .passenger-premium-screen .ride-sheet {
    width: calc(100% - 12px);
    max-height: none;
    bottom: auto;
  }

  .passenger-premium-screen .ride-sheet .payment-choice {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-body:not(.is-public-auth) .app-topbar .topbar-actions {
    justify-content: flex-start;
  }

  .app-body:not(.is-public-auth) .topbar-actions .ghost-button,
  .app-body:not(.is-public-auth) #logoutButton {
    flex: 0 0 auto;
    width: auto;
    min-width: 96px;
  }
}

/* Premium UI refresh v52: login and passenger home final polish. */
.app-body.is-public-auth {
  color: var(--premium-text);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, #070707 0%, #0b0b0b 58%, #101006 100%);
  background-size: 76px 76px, 76px 76px, auto;
}

.is-public-auth .screen {
  width: min(100%, 1120px);
}

.is-public-auth .auth-shell {
  width: min(100%, 1120px);
  grid-template-columns: minmax(420px, 1fr) minmax(360px, 430px);
  gap: 18px;
  align-items: center;
}

.is-public-auth .auth-brand-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--premium-text);
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.98), rgba(18, 18, 18, 0.95) 56%, rgba(6, 35, 22, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.55);
}

.auth-map-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.9;
}

.auth-map-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 66px 66px;
}

.auth-road {
  position: absolute;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.auth-road-main {
  left: -10%;
  right: -12%;
  top: 52%;
  transform: rotate(-18deg);
}

.auth-road-cross {
  left: 16%;
  right: -20%;
  top: 30%;
  transform: rotate(28deg);
}

.auth-road-side {
  left: -20%;
  right: 18%;
  top: 72%;
  transform: rotate(8deg);
}

.auth-live-pin {
  position: absolute;
  z-index: 1;
  width: 19px;
  height: 19px;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 193, 7, 0.12), 0 16px 36px rgba(0, 0, 0, 0.42);
}

.auth-live-origin {
  left: 25%;
  top: 59%;
  background: var(--premium-yellow);
}

.auth-live-destination {
  right: 22%;
  top: 27%;
  background: var(--premium-green);
  box-shadow: 0 0 0 8px rgba(0, 255, 136, 0.12), 0 16px 36px rgba(0, 0, 0, 0.42);
}

.auth-brand-logo,
.auth-brand-copy,
.is-public-auth .auth-rating-ribbon {
  position: relative;
  z-index: 2;
}

.auth-brand-logo {
  width: min(340px, 76%);
  padding: 13px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.is-public-auth .auth-brand-panel img {
  width: 100%;
  max-height: 132px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.is-public-auth .auth-brand-panel h2 {
  max-width: 560px;
  margin-top: 14px;
  color: var(--premium-text);
  font-size: clamp(2.25rem, 5vw, 4.3rem);
  line-height: 0.94;
}

.is-public-auth .auth-brand-panel p {
  max-width: 460px;
  color: rgba(247, 247, 242, 0.78);
  font-size: 1rem;
}

.auth-route-card {
  display: grid;
  gap: 3px;
  width: min(280px, 100%);
  margin-top: 18px;
  padding: 13px 14px;
  color: var(--premium-text);
  background: rgba(10, 10, 10, 0.78);
  border: 1px solid rgba(255, 193, 7, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.auth-route-card span,
.auth-route-card small {
  color: var(--premium-muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.auth-route-card strong {
  font-size: 1.15rem;
}

.is-public-auth .premium-auth-card {
  color: var(--premium-text);
  background: rgba(18, 18, 18, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--premium-yellow);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.46);
}

.is-public-auth .premium-auth-card h2 {
  color: var(--premium-text);
  font-size: clamp(2rem, 4vw, 3rem);
}

.is-public-auth .premium-auth-card .eyebrow,
.is-public-auth .premium-auth-card .notice,
.is-public-auth .premium-auth-card label span {
  color: var(--premium-muted);
}

.is-public-auth .premium-auth-card input {
  min-height: 52px;
  color: var(--premium-text);
  background: #101010;
  border-color: rgba(255, 255, 255, 0.12);
}

.is-public-auth .premium-auth-card input:focus {
  border-color: var(--premium-yellow);
  outline: 3px solid rgba(255, 193, 7, 0.12);
}

.is-public-auth .premium-auth-card .primary-button {
  min-height: 56px;
  color: #070707;
  background: linear-gradient(135deg, var(--premium-yellow), #ffe083);
  border-color: var(--premium-yellow);
  box-shadow: 0 20px 42px rgba(255, 193, 7, 0.22);
}

.is-public-auth .premium-auth-card .ghost-button,
.is-public-auth .premium-auth-card .secondary-button {
  color: var(--premium-text);
  background: #141414;
  border-color: rgba(255, 255, 255, 0.16);
}

.is-public-auth .premium-auth-card .inline-auth-link {
  color: var(--premium-text);
}

.is-public-auth .auth-rating-ribbon span {
  background: var(--premium-yellow);
}

.is-public-auth .auth-card:not(.premium-auth-card) {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.is-public-auth .auth-card:not(.premium-auth-card) h2 {
  color: var(--ink);
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  line-height: 1.05;
}

.is-public-auth .auth-card:not(.premium-auth-card) .eyebrow.dark,
.is-public-auth .auth-card:not(.premium-auth-card) label span,
.is-public-auth .auth-card:not(.premium-auth-card) .form-field > span,
.is-public-auth .auth-card:not(.premium-auth-card) .upload-field small,
.is-public-auth .auth-card:not(.premium-auth-card) .vehicle-choice small {
  color: #48617b;
}

.is-public-auth .auth-card:not(.premium-auth-card) .vehicle-choice label,
.is-public-auth .auth-card:not(.premium-auth-card) .payment-choice label,
.is-public-auth .auth-card:not(.premium-auth-card) .toggle-field {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.is-public-auth .auth-card:not(.premium-auth-card) .vehicle-choice label:has(input:checked),
.is-public-auth .auth-card:not(.premium-auth-card) .vehicle-choice label.is-selected {
  color: var(--ink);
  border-color: var(--yellow);
  background: linear-gradient(135deg, #fff8dc, #ffffff);
  box-shadow: 0 10px 22px rgba(255, 176, 0, 0.18);
}

.is-public-auth .auth-card:not(.premium-auth-card) .vehicle-choice strong,
.is-public-auth .auth-card:not(.premium-auth-card) .payment-choice strong,
.is-public-auth .auth-card:not(.premium-auth-card) .toggle-field span {
  color: var(--ink);
}

.passenger-premium-screen .ride-sheet-title {
  margin-bottom: 10px;
}

.passenger-premium-screen .ride-sheet-title h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.passenger-premium-screen .ride-route-fields {
  gap: 10px;
}

.passenger-premium-screen .ride-vehicle-field > span {
  display: none;
}

.passenger-premium-screen .ride-vehicle-field .vehicle-choice {
  gap: 10px;
}

.passenger-premium-screen .ride-vehicle-field .vehicle-choice label {
  min-height: 92px;
  padding: 14px;
  border-radius: 8px;
}

.passenger-premium-screen .ride-vehicle-field .vehicle-choice strong {
  font-size: 1.05rem;
}

.passenger-premium-screen .request-submit-button {
  min-height: 64px;
  font-size: 1.08rem;
}

.ride-details-panel {
  border: 1px solid var(--premium-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.ride-details-panel summary {
  position: relative;
  display: grid;
  gap: 3px;
  min-height: 58px;
  padding: 11px 42px 11px 12px;
  color: var(--premium-text);
  cursor: pointer;
  list-style: none;
}

.ride-details-panel summary::-webkit-details-marker {
  display: none;
}

.ride-details-panel summary span,
.ride-details-panel summary strong {
  display: block;
}

.ride-details-panel summary span {
  color: var(--premium-text);
  font-weight: 950;
}

.ride-details-panel summary strong {
  color: var(--premium-muted);
  font-size: 0.76rem;
}

.ride-details-panel summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 14px;
  color: var(--premium-yellow);
  font-size: 1.45rem;
  font-weight: 950;
  transform: translateY(-50%);
}

.ride-details-panel[open] summary::after {
  content: "-";
}

.ride-details-panel[open] summary {
  border-bottom: 1px solid var(--premium-line);
}

.ride-details-content {
  display: grid;
  gap: 9px;
  padding: 10px;
}

.ride-details-content .ride-options-grid {
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.9fr);
}

.passenger-premium-screen .secondary-content,
.passenger-premium-screen > section.panel {
  opacity: 0.82;
}

.passenger-premium-screen .active-ride-panel {
  border-top-color: var(--premium-green);
}

@media (min-width: 1121px) {
  .passenger-premium-screen .ride-sheet {
    width: min(520px, calc(100% - 36px));
    max-height: min(calc(100% - 20px), calc(100svh - 220px));
  }

  .passenger-premium-screen .origin-control label span,
  .passenger-premium-screen .location-status {
    display: none;
  }

  .passenger-premium-screen .ride-details-content .ride-options-grid {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 0.9fr);
  }
}

@media (max-width: 900px) {
  .is-public-auth .auth-shell {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .is-public-auth .auth-brand-panel {
    min-height: 310px;
  }

  .is-public-auth .auth-brand-panel h2 {
    font-size: clamp(1.8rem, 8vw, 2.65rem);
  }
}

@media (max-width: 640px) {
  .is-public-auth .app-main {
    padding: 12px !important;
  }

  .is-public-auth .auth-brand-panel {
    min-height: 245px;
    padding: 16px;
  }

  .auth-brand-logo {
    width: min(230px, 68%);
  }

  .is-public-auth .auth-brand-panel p,
  .auth-route-card {
    display: none;
  }

  .is-public-auth .auth-brand-panel h2 {
    margin-top: 10px;
    font-size: 1.72rem;
    line-height: 1;
  }

  .is-public-auth .premium-auth-card {
    padding: 16px;
  }

  .is-public-auth .premium-auth-card h2 {
    font-size: 2rem;
  }

  .passenger-premium-screen .ride-vehicle-field .vehicle-choice label {
    min-height: 86px;
  }

  .ride-details-content .ride-options-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .app-body:not(.is-public-auth) .app-sidebar {
    position: sticky;
    top: 0;
    z-index: 36;
    min-height: 62px;
    padding: 8px 12px;
  }

  .app-body:not(.is-public-auth) .app-sidebar .brand {
    width: auto;
    min-height: 50px;
    padding: 5px 8px;
  }

  .app-body:not(.is-public-auth) .app-sidebar .brand img {
    width: 138px;
    max-height: 42px;
  }

  .app-body:not(.is-public-auth) .app-main {
    padding: 10px 12px 92px;
  }

  .app-body:not(.is-public-auth) .app-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding: 10px;
    border-top-width: 1px;
    border-radius: 8px;
  }

  .app-body:not(.is-public-auth) .app-topbar h1 {
    font-size: 1.12rem;
  }

  .app-body:not(.is-public-auth) .app-topbar .eyebrow {
    margin-bottom: 2px;
    font-size: 0.62rem;
  }

  .app-body:not(.is-public-auth) .topbar-location {
    grid-column: 1 / -1;
    min-width: 0;
    width: 100%;
    padding: 7px 9px;
  }

  .app-body:not(.is-public-auth) .app-topbar .topbar-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .app-body:not(.is-public-auth) .mobile-nav {
    position: sticky;
    top: 66px;
    z-index: 35;
    display: flex;
    gap: 6px;
    overflow: hidden;
    margin: 0 0 8px;
    padding: 6px;
    border-radius: 999px;
  }

  .app-body:not(.is-public-auth) .mobile-nav a {
    flex: 1 1 0;
    min-width: 0;
    min-height: 42px;
    padding: 0 8px;
    gap: 0;
    border-radius: 999px;
  }

  .app-body:not(.is-public-auth) .mobile-nav a span:not(.nav-icon) {
    display: none;
  }

  .app-body:not(.is-public-auth) .mobile-nav a.is-active {
    flex: 1.4 1 92px;
    gap: 6px;
  }

  .app-body:not(.is-public-auth) .mobile-nav a.is-active span:not(.nav-icon) {
    display: inline;
    max-width: 74px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .app-body:not(.is-public-auth) .screen {
    padding-bottom: 32px;
  }

  .passenger-premium-screen .ride-sheet-title {
    align-items: flex-start;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 10px;
  }

  .passenger-premium-screen .ride-sheet-title h2 {
    margin-top: 6px;
    font-size: 1.58rem;
  }

  .passenger-premium-screen .wallet-chip {
    min-width: 84px;
    padding: 8px 9px;
    justify-items: start;
  }

  .passenger-premium-screen .wallet-chip span {
    font-size: 0.58rem;
  }

  .passenger-premium-screen .wallet-chip strong {
    font-size: 0.86rem;
  }

  .passenger-premium-screen .request-payment-field {
    margin-top: -2px;
  }

  .passenger-premium-screen .ride-map-panel,
  .passenger-premium-screen .ride-map,
  .passenger-premium-screen .ride-map-placeholder {
    min-height: 210px;
  }

  .passenger-premium-screen .ride-sheet {
    margin-top: -104px;
  }

  .passenger-premium-screen .location-status {
    display: none;
  }
}

/* Premium public landing v53. */
.premium-landing {
  min-height: 100svh;
  color: var(--premium-text);
  background: #0b0b0b;
}

.premium-landing .premium-site-header {
  min-height: 74px;
  color: var(--premium-text);
  background: rgba(7, 7, 7, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
}

.premium-landing .landing-brand {
  min-height: 52px;
  padding: 5px 12px;
  background: #ffffff;
  border: 1px solid rgba(255, 193, 7, 0.52);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(255, 193, 7, 0.12);
}

.premium-landing .landing-brand img {
  width: 176px;
  max-height: 46px;
}

.premium-site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.premium-site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--premium-text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-weight: 950;
}

.premium-site-nav a:first-child {
  color: #080808;
  background: linear-gradient(135deg, var(--premium-yellow), #ffe083);
  border-color: var(--premium-yellow);
}

.landing-premium-hero {
  position: relative;
  display: grid;
  align-content: center;
  min-height: min(760px, calc(100svh - 58px));
  padding: clamp(42px, 6vw, 78px) clamp(18px, 6vw, 86px) clamp(58px, 8vw, 92px);
  overflow: hidden;
  isolation: isolate;
}

.landing-premium-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(11, 11, 11, 0.96));
  z-index: -1;
}

.landing-map-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 28%, rgba(0, 255, 136, 0.13), transparent 26%),
    radial-gradient(circle at 18% 74%, rgba(255, 193, 7, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #0b0b0b;
  background-size: auto, auto, 76px 76px, 76px 76px, auto;
  z-index: -3;
}

.landing-map-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 11, 0.14), rgba(11, 11, 11, 0.76) 72%);
}

.landing-road {
  position: absolute;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.landing-road-main {
  left: -8%;
  right: -12%;
  top: 49%;
  transform: rotate(-17deg);
}

.landing-road-cross {
  left: 20%;
  right: -8%;
  top: 45%;
  transform: rotate(28deg);
}

.landing-road-low {
  left: -10%;
  right: 16%;
  bottom: 17%;
  transform: rotate(7deg);
}

.landing-pin,
.landing-route-pulse {
  position: absolute;
  border-radius: 999px;
}

.landing-pin {
  width: 18px;
  height: 18px;
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 9px rgba(255, 193, 7, 0.18), 0 16px 34px rgba(0, 0, 0, 0.42);
}

.landing-pin-origin {
  left: 34%;
  top: 58%;
  background: var(--premium-yellow);
}

.landing-pin-destination {
  right: 17%;
  top: 31%;
  background: var(--premium-green);
  box-shadow: 0 0 0 9px rgba(0, 255, 136, 0.18), 0 16px 34px rgba(0, 0, 0, 0.42);
}

.landing-route-pulse {
  left: 34%;
  top: 59%;
  width: 43%;
  height: 4px;
  background: linear-gradient(90deg, var(--premium-yellow), var(--premium-green));
  transform: rotate(-22deg);
  box-shadow: 0 0 34px rgba(0, 255, 136, 0.22);
}

.landing-hero-content {
  width: min(100%, 760px);
  max-width: 100%;
  min-width: 0;
  z-index: 1;
}

.landing-hero-logo {
  width: min(360px, 78vw);
  margin-bottom: 26px;
  padding: 12px 18px;
  background: #ffffff;
  border: 1px solid rgba(255, 193, 7, 0.42);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.landing-hero-content .eyebrow {
  color: var(--premium-yellow);
}

.landing-hero-content h1 {
  margin: 0;
  color: #ffffff;
  font-size: 8rem;
  line-height: 0.85;
}

.landing-hero-content p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.45;
}

.landing-actions {
  margin-top: 28px;
}

.landing-actions a {
  min-height: 58px;
  padding: 0 24px;
  border-radius: 8px;
}

.landing-primary {
  min-width: 210px;
}

.landing-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.landing-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.landing-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
}

.landing-ride-console {
  position: absolute;
  right: clamp(18px, 6vw, 86px);
  bottom: clamp(28px, 6vw, 70px);
  width: min(390px, 31vw);
  max-width: 100%;
  min-width: 0;
  display: grid;
  gap: 12px;
  padding: 16px;
  color: var(--premium-text);
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top: 2px solid rgba(255, 193, 7, 0.68);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(16px);
}

.landing-console-top,
.landing-price-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.landing-console-top span,
.landing-price-bar span {
  color: var(--premium-muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.landing-destination-field {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.72);
  background: #111111;
  border: 1px solid var(--premium-line);
  border-radius: 8px;
  font-size: 1.08rem;
  font-weight: 950;
}

.landing-console-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.landing-console-grid div {
  display: grid;
  gap: 5px;
  min-height: 112px;
  padding: 14px;
  background: #151515;
  border: 1px solid var(--premium-line);
  border-radius: 8px;
}

.landing-console-grid div:first-child {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.18), rgba(0, 255, 136, 0.08));
  border-color: rgba(255, 193, 7, 0.74);
}

.landing-console-grid strong,
.landing-price-bar strong {
  color: #ffffff;
}

.landing-console-grid small {
  color: var(--premium-muted);
  font-weight: 850;
}

.landing-price-bar {
  min-height: 54px;
  padding: 0 14px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(0, 255, 136, 0.09));
  border: 1px solid rgba(255, 193, 7, 0.34);
  border-radius: 8px;
}

.landing-price-bar strong {
  font-size: 1.3rem;
}

.landing-access-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: 18px;
  padding: clamp(28px, 5vw, 60px) clamp(18px, 6vw, 86px) clamp(42px, 6vw, 74px);
  color: var(--premium-text);
  background: #0b0b0b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-section-title h2 {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-size: 3.1rem;
  line-height: 1;
}

.landing-access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.landing-access-tile {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 188px;
  padding: 22px;
  color: var(--premium-text);
  background: rgba(22, 22, 22, 0.96);
  border: 1px solid var(--premium-line);
  border-top: 2px solid var(--premium-yellow);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.landing-access-tile.driver {
  border-top-color: var(--premium-green);
}

.landing-access-tile span {
  color: var(--premium-yellow);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.landing-access-tile.driver span {
  color: var(--premium-green);
}

.landing-access-tile strong {
  color: #ffffff;
  font-size: 1.85rem;
}

.landing-access-tile small {
  color: var(--premium-muted);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.45;
}

.landing-tile-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.landing-tile-cta,
.landing-tile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 15px;
  border-radius: 8px;
  font-weight: 950;
}

.landing-tile-cta {
  color: #080808;
  background: linear-gradient(135deg, var(--premium-yellow), #ffe083);
  border: 1px solid var(--premium-yellow);
  box-shadow: 0 16px 30px rgba(255, 193, 7, 0.18);
}

.landing-tile-cta.driver {
  background: linear-gradient(135deg, var(--premium-green), #82ffd0);
  border-color: var(--premium-green);
  box-shadow: 0 16px 30px rgba(0, 255, 136, 0.14);
}

.landing-tile-link {
  color: var(--premium-text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.landing-store-button {
  color: #080808;
  background: linear-gradient(135deg, var(--premium-green), #82ffd0);
  border-color: var(--premium-green);
  box-shadow: 0 16px 32px rgba(0, 255, 136, 0.14);
}

.landing-stores-flow {
  display: grid;
  gap: 18px;
  padding: clamp(30px, 5vw, 64px) clamp(18px, 6vw, 86px);
  color: var(--premium-text);
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 255, 136, 0.12), transparent 28%),
    linear-gradient(180deg, #0b0b0b, #101010);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-store-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 16px;
  align-items: start;
}

.landing-store-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.landing-store-card,
.landing-store-signup {
  display: grid;
  gap: 12px;
  padding: 20px;
  color: var(--premium-text);
  background: rgba(22, 22, 22, 0.96);
  border: 1px solid var(--premium-line);
  border-top: 2px solid var(--premium-green);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.landing-store-card span,
.landing-store-signup label span {
  color: var(--premium-green);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.landing-store-card strong,
.landing-store-signup h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1.12;
}

.landing-store-card small,
.landing-store-signup p {
  color: var(--premium-muted);
  font-weight: 800;
  line-height: 1.45;
}

.landing-store-meta,
.landing-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.landing-store-meta div {
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.landing-store-meta b,
.landing-store-meta small {
  display: block;
}

.landing-store-signup {
  border-top-color: var(--premium-yellow);
}

.landing-store-signup label {
  display: grid;
  gap: 6px;
}

.landing-store-signup input,
.landing-store-signup textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: #ffffff;
  background: #101010;
  border: 1px solid var(--premium-line);
  border-radius: 8px;
}

.landing-store-signup textarea {
  min-height: 88px;
  padding-top: 10px;
  resize: vertical;
}

.landing-store-signup input::placeholder,
.landing-store-signup textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.landing-form-result {
  min-height: 30px;
}

@media (max-width: 980px) {
  .landing-hero-content h1 {
    font-size: 5.4rem;
  }

  .landing-hero-content p:not(.eyebrow) {
    font-size: 1.12rem;
  }

  .landing-ride-console {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 520px);
    margin-top: 28px;
  }

  .landing-premium-hero {
    min-height: auto;
    padding-bottom: 44px;
  }

  .landing-access-flow {
    grid-template-columns: 1fr;
  }

  .landing-store-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .premium-landing .premium-site-header {
    position: sticky;
    align-items: center;
    flex-direction: row;
    min-height: 64px;
    padding: 8px 12px;
  }

  .premium-landing .landing-brand {
    min-height: 46px;
    padding: 4px 8px;
  }

  .premium-landing .landing-brand img {
    width: 132px;
    max-height: 38px;
  }

  .premium-site-nav {
    gap: 6px;
  }

  .premium-site-nav a {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .landing-premium-hero {
    min-height: calc(100svh - 174px);
    padding: 24px 12px 20px;
  }

  .landing-hero-logo {
    width: min(250px, 72vw);
    margin-bottom: 14px;
    padding: 9px 12px;
  }

  .landing-hero-content h1 {
    font-size: 3.2rem;
  }

  .landing-hero-content p:not(.eyebrow) {
    max-width: 340px;
    font-size: 1rem;
  }

  .landing-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .landing-actions a {
    min-height: 54px;
    padding: 0 12px;
  }

  .landing-primary {
    min-width: 0;
  }

  .landing-trust-row {
    gap: 6px;
  }

  .landing-trust-row span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .landing-ride-console {
    width: calc(100vw - 24px);
    gap: 9px;
    margin-top: 12px;
    padding: 12px;
  }

  .landing-destination-field {
    min-height: 48px;
    font-size: 0.96rem;
  }

  .landing-console-grid div {
    min-height: 92px;
    padding: 10px;
  }

  .landing-access-flow {
    padding: 28px 12px 44px;
  }

  .landing-stores-flow {
    padding: 28px 12px;
  }

  .landing-section-title h2 {
    font-size: 2rem;
  }

  .landing-access-grid,
  .landing-store-list,
  .landing-form-grid,
  .landing-store-meta {
    grid-template-columns: 1fr;
  }

  .landing-access-tile {
    min-height: 142px;
    padding: 18px;
  }

  .landing-tile-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .landing-tile-cta,
  .landing-tile-link {
    width: 100%;
  }

  .landing-access-tile strong {
    font-size: 1.5rem;
  }
}

@media (max-width: 360px) {
  .landing-hero-content h1 {
    font-size: 2.92rem;
  }
}

/* Navigation handoff for active driver rides. */
.navigation-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding: 10px;
  color: var(--premium-text, #ffffff);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.navigation-actions > span {
  flex: 1 1 150px;
  color: var(--premium-muted, #9aa3af);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.nav-app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 82px;
  padding: 0 12px;
  border-radius: 8px;
  font-weight: 950;
}

.nav-app-button.maps {
  color: #080808;
  background: linear-gradient(135deg, var(--premium-yellow, #ffc107), #ffe083);
  border: 1px solid var(--premium-yellow, #ffc107);
}

.nav-app-button.waze {
  color: #03140c;
  background: linear-gradient(135deg, var(--premium-green, #00ff88), #8bffd3);
  border: 1px solid var(--premium-green, #00ff88);
}

.driver-payment-reminder {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.driver-payment-reminder span {
  color: inherit !important;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.driver-payment-reminder strong {
  color: inherit;
  font-size: 1.04rem;
}

.driver-payment-reminder p {
  margin: 0;
  color: inherit;
  font-weight: 850;
}

.driver-payment-reminder.cash {
  color: #171103;
  background: linear-gradient(135deg, var(--premium-yellow, #ffc107), #ffe49a);
  box-shadow: 0 16px 34px rgba(255, 193, 7, 0.16);
}

.driver-payment-reminder.paid {
  color: #03140c;
  background: linear-gradient(135deg, var(--premium-green, #00ff88), #9effd6);
  box-shadow: 0 16px 34px rgba(0, 255, 136, 0.14);
}

@media (max-width: 640px) {
  .navigation-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .navigation-actions > span {
    grid-column: 1 / -1;
  }

  .nav-app-button {
    width: 100%;
  }
}

/* V64 hybrid transport + delivery landing. */
.pede-delivery-landing {
  color: #090909;
  background: #f7f7f5;
}

.pede-landing-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background: rgba(3, 3, 3, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  animation: pedeHeaderDrop 0.58s ease both;
}

.pede-landing-brand {
  display: inline-flex;
  align-items: center;
  width: 236px;
  min-width: 0;
}

.pede-landing-brand img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(255, 196, 0, 0.12));
  transform-origin: left center;
  animation: pedeLogoSettle 0.9s ease both;
}

.pede-landing-nav,
.pede-landing-actions,
.pede-hero-buttons,
.app-store-buttons,
.social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pede-landing-nav {
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.pede-landing-nav::-webkit-scrollbar {
  display: none;
}

.pede-landing-nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 10px 6px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
  transition: color 180ms ease, transform 180ms ease;
}

.pede-landing-nav a.is-active,
.pede-landing-nav a:hover {
  color: #ffc400;
  transform: translateY(-1px);
}

.pede-landing-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 1px;
  height: 3px;
  border-radius: 999px;
  background: #ffc400;
  animation: pedeUnderline 0.46s ease both;
}

.pede-login-button,
.pede-register-button,
.pede-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pede-login-button:hover,
.pede-register-button:hover,
.pede-cta:hover {
  transform: translateY(-2px);
}

.pede-login-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.pede-register-button,
.pede-cta.yellow {
  color: #090909;
  background: linear-gradient(135deg, #ffc400, #ffe070);
  border: 1px solid #ffc400;
  box-shadow: 0 18px 38px rgba(255, 196, 0, 0.24);
}

.pede-cta.light {
  color: #111111;
  background: #ffffff;
  border: 1px solid rgba(9, 9, 9, 0.08);
  box-shadow: 0 18px 34px rgba(255, 255, 255, 0.14);
}

.pede-hero {
  position: relative;
  min-height: min(740px, calc(100svh - 78px));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  padding: clamp(54px, 7vw, 104px) clamp(18px, 4vw, 56px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.86) 42%, rgba(0, 0, 0, 0.32) 100%),
    radial-gradient(circle at 76% 18%, rgba(255, 196, 0, 0.2), transparent 28%),
    #050505;
  overflow: hidden;
  isolation: isolate;
}

.pede-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  z-index: -3;
}

.pede-hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.pede-motion-road {
  position: absolute;
  height: 70px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  background-size: 220% 100%;
  animation: pedeRoadFlow 5.6s ease-in-out infinite;
}

.pede-motion-road.main {
  right: -12%;
  bottom: 18%;
  width: 84%;
  transform: rotate(-14deg);
}

.pede-motion-road.cross {
  right: -10%;
  top: 33%;
  width: 72%;
  transform: rotate(18deg);
}

.pede-motion-glow {
  position: absolute;
  right: 6%;
  top: 18%;
  width: 36%;
  height: 58%;
  background: radial-gradient(circle, rgba(255, 196, 0, 0.2), transparent 60%);
  filter: blur(18px);
  animation: pedeGlowPulse 5s ease-in-out infinite;
}

.pede-phone-mock {
  position: absolute;
  right: 29%;
  top: 9%;
  width: min(270px, 22vw);
  min-height: 475px;
  padding: 26px 22px;
  color: #ffffff;
  background: #101010;
  border: 10px solid #252525;
  border-radius: 34px;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.7);
  transform: rotate(-6deg);
  animation: pedePhoneFloat 5.8s ease-in-out infinite;
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 28px;
  color: #ffc400;
  font-size: 0.84rem;
  font-weight: 950;
}

.phone-top span {
  width: 17px;
  height: 23px;
  border-radius: 999px 999px 999px 3px;
  background: #ffc400;
  transform: rotate(38deg);
}

.pede-phone-mock > strong {
  display: block;
  max-width: 190px;
  margin-bottom: 18px;
  font-size: 1.25rem;
  line-height: 1.18;
}

.phone-choice {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 116px;
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  transform-origin: center;
  animation: pedeChoicePop 4.6s ease-in-out infinite;
}

.phone-choice.ride {
  color: #111111;
  background: #ffc400;
}

.phone-choice.food {
  color: #111111;
  background: #ffffff;
  animation-delay: 0.7s;
}

.phone-choice b,
.phone-choice small {
  display: block;
}

.phone-choice small {
  margin-top: 4px;
  font-weight: 800;
}

.pede-delivery-rider {
  position: absolute;
  right: 2%;
  bottom: 6%;
  width: min(470px, 38vw);
  height: min(430px, 35vw);
  animation: pedeRiderCruise 4.8s ease-in-out infinite;
}

.rider-box {
  position: absolute;
  right: 17%;
  top: 10%;
  width: 38%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: linear-gradient(135deg, #282828, #0e0e0e);
  border: 2px solid rgba(255, 196, 0, 0.4);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.04), 0 26px 48px rgba(0, 0, 0, 0.45);
  animation: pedeDeliveryBoxGlow 3.8s ease-in-out infinite;
}

.rider-box::after {
  content: "";
  position: absolute;
  inset: 28%;
  border-radius: 999px 999px 999px 3px;
  background: #ffc400;
  transform: rotate(38deg);
}

.rider-bike {
  position: absolute;
  left: 8%;
  right: 4%;
  bottom: 3%;
  height: 46%;
  border-bottom: 24px solid #0e0e0e;
  border-radius: 28% 38% 12% 16%;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.52));
}

.rider-bike::before,
.rider-bike::after {
  content: "";
  position: absolute;
  bottom: -52px;
  width: 120px;
  max-width: 32%;
  aspect-ratio: 1;
  border: 18px solid #111111;
  border-top-color: #ffc400;
  border-radius: 50%;
  background: radial-gradient(circle, #262626 0 35%, transparent 36%);
}

.rider-bike::before { left: 3%; }
.rider-bike::after { right: 4%; }

.pede-hero-copy {
  max-width: 650px;
  z-index: 2;
  animation: pedeHeroCopyIn 0.86s ease both;
}

.pede-kicker {
  margin: 0 0 14px;
  color: #ffc400;
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pede-hero-copy h1 {
  margin: 0;
  font-size: clamp(3.4rem, 6.2vw, 6rem);
  line-height: 0.95;
}

.pede-hero-copy h1 span,
.pede-services h2 span,
.pede-app-banner h2 span {
  color: #ffc400;
}

.pede-hero-copy > p:not(.pede-kicker) {
  max-width: 570px;
  margin: 24px 0 0;
  font-size: clamp(1.12rem, 2vw, 1.48rem);
  font-weight: 850;
  line-height: 1.45;
}

.pede-hero-buttons {
  flex-wrap: wrap;
  margin-top: 32px;
}

.pede-hero-buttons .pede-cta {
  min-width: 210px;
  min-height: 72px;
  font-size: 1.05rem;
}

.cta-car-icon,
.cta-bike-icon,
.mini-car-icon,
.mini-food-icon {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 30px;
  flex: 0 0 36px;
  background: var(--hero-action-icon) center / contain no-repeat;
  animation: pedeIconNudge 2.8s ease-in-out infinite;
}

.cta-car-icon::before,
.cta-car-icon::after,
.cta-bike-icon::before,
.cta-bike-icon::after,
.mini-car-icon::before,
.mini-car-icon::after,
.mini-food-icon::before,
.mini-food-icon::after {
  display: none;
}

.cta-car-icon,
.mini-car-icon {
  --hero-action-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 48' fill='none' stroke='%23111111' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 27l5-13h30l5 13'/%3E%3Cpath d='M10 27h44v12H10z'/%3E%3Ccircle cx='21' cy='36' r='3' fill='%23111111'/%3E%3Ccircle cx='43' cy='36' r='3' fill='%23111111'/%3E%3C/svg%3E");
}

.cta-bike-icon,
.mini-food-icon {
  --hero-action-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 48' fill='none' stroke='%23111111' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='20' cy='37' r='6'/%3E%3Ccircle cx='54' cy='37' r='6'/%3E%3Cpath d='M20 37h17l7-15h10l6 15'/%3E%3Cpath d='M33 22h-9l-7 10'/%3E%3Cpath d='M44 22l-6-9h-7'/%3E%3Ccircle cx='46' cy='8' r='4' fill='%23111111'/%3E%3Cpath d='M46 13l-4 11 10 2'/%3E%3C/svg%3E");
}

.pede-trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 650px;
  margin-top: 48px;
}

.pede-trust-points div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 8px 12px;
  align-items: start;
  animation: pedeTrustIn 0.72s ease both;
  animation-delay: var(--trust-delay, 0s);
}

.pede-trust-points div:nth-child(1) { --trust-delay: 0.12s; }
.pede-trust-points div:nth-child(2) { --trust-delay: 0.24s; }
.pede-trust-points div:nth-child(3) { --trust-delay: 0.36s; }

.pede-trust-points span {
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  border: 2px solid #ffc400;
  border-radius: 50%;
  background: var(--trust-icon) center / 18px 18px no-repeat;
  animation: pedeTrustPulse 3.2s ease-in-out infinite;
  animation-delay: var(--trust-delay, 0s);
}

.trust-clock {
  --trust-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23ffc400' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='16' cy='16' r='11'/%3E%3Cpath d='M16 9v8l6 3'/%3E%3C/svg%3E");
}

.trust-shield {
  --trust-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23ffc400' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 4l10 4v7c0 7-4 11-10 13C10 26 6 22 6 15V8l10-4z'/%3E%3Cpath d='M11 16l4 4 7-8'/%3E%3C/svg%3E");
}

.trust-pin {
  --trust-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23ffc400' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 28S7 20 7 12a9 9 0 0 1 18 0c0 8-9 16-9 16z'/%3E%3Ccircle cx='16' cy='12' r='3'/%3E%3C/svg%3E");
}

.pede-trust-points b,
.pede-trust-points small {
  display: block;
}

.pede-trust-points small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
  line-height: 1.35;
}

.pede-services,
.pede-how,
.pede-featured-stores,
.pede-partner-zone {
  padding: clamp(34px, 5vw, 66px) clamp(18px, 4vw, 56px);
  background: #f8f8f7;
}

.pede-services h2,
.pede-how h2 {
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.pede-service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.pede-service-grid article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 190px;
  padding: 22px 16px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(9, 9, 9, 0.06);
  overflow: hidden;
  animation: pedeServiceIn 0.72s ease both, pedeServiceFloat 5.2s ease-in-out infinite;
  animation-delay: var(--service-delay, 0s), calc(var(--service-delay, 0s) + 0.7s);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pede-service-grid article:nth-child(1) { --service-delay: 0s; }
.pede-service-grid article:nth-child(2) { --service-delay: 0.1s; }
.pede-service-grid article:nth-child(3) { --service-delay: 0.2s; }
.pede-service-grid article:nth-child(4) { --service-delay: 0.3s; }
.pede-service-grid article:nth-child(5) { --service-delay: 0.4s; }
.pede-service-grid article:nth-child(6) { --service-delay: 0.5s; }

.pede-service-grid article::after {
  content: "";
  position: absolute;
  inset: -35% auto auto -55%;
  width: 54%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.84), transparent);
  transform: rotate(18deg);
  animation: pedeServiceShine 5.4s ease-in-out infinite;
  animation-delay: calc(var(--service-delay, 0s) + 0.8s);
}

.pede-service-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 196, 0, 0.42);
  box-shadow: 0 28px 70px rgba(9, 9, 9, 0.12);
}

.service-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  color: #111111;
  box-shadow: 0 16px 34px rgba(9, 9, 9, 0.13);
  animation: pedeServiceIconPulse 3.4s ease-in-out infinite;
  animation-delay: var(--service-delay, 0s);
  z-index: 1;
}

.service-icon.car { background: #ffc400; }
.service-icon.food { background: #ff6a00; }
.service-icon.market { background: #21a63d; color: #ffffff; }
.service-icon.butcher { background: #9d1419; color: #ffffff; }
.service-icon.pharma { background: #1769d8; color: #ffffff; }
.service-icon.store { background: #8a4ed8; color: #ffffff; }

.service-icon::before {
  content: "";
  width: 48px;
  height: 48px;
  background: var(--service-svg) center / contain no-repeat;
}

.service-icon.car::before {
  --service-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23111111' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 35l5-14h30l5 14'/%3E%3Cpath d='M10 35h44v13H10z' fill='none'/%3E%3Cpath d='M18 48v5M46 48v5'/%3E%3Ccircle cx='21' cy='42' r='3' fill='%23111111'/%3E%3Ccircle cx='43' cy='42' r='3' fill='%23111111'/%3E%3C/svg%3E");
}

.service-icon.food::before {
  --service-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 64' fill='none' stroke='%23111111' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='18' cy='49' r='7'/%3E%3Ccircle cx='55' cy='49' r='7'/%3E%3Cpath d='M18 49h18l8-17h11l6 17'/%3E%3Cpath d='M33 32h-9l-8 12'/%3E%3Cpath d='M44 32l-7-11h-8'/%3E%3Ccircle cx='47' cy='16' r='5' fill='%23111111'/%3E%3Cpath d='M50 21l-5 12 12 2'/%3E%3Crect x='13' y='23' width='15' height='12' rx='3'/%3E%3C/svg%3E");
}

.service-icon.market::before {
  --service-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23ffffff' stroke-width='4.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 27h34l-5 19H22l-4-19z'/%3E%3Cpath d='M24 27l8-12 8 12'/%3E%3Cpath d='M28 35v6M38 35v6'/%3E%3C/svg%3E");
}

.service-icon.butcher::before {
  --service-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23ffffff' stroke-width='4.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 39c0-10 8-18 19-18 8 0 14 5 17 12 3 1 5 4 5 8 0 8-7 13-17 13H27c-6 0-10-4-10-10v-5z'/%3E%3Cpath d='M24 40c6-3 12-3 19 1M33 30c4 3 8 3 13 1'/%3E%3Cpath d='M11 17l12 12M15 12l14 14'/%3E%3C/svg%3E");
}

.service-icon.pharma::before {
  --service-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23ffffff' stroke-width='4.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='14' y='20' width='36' height='30' rx='7'/%3E%3Cpath d='M25 20v-5h14v5'/%3E%3Cpath d='M32 29v13M25 35h14'/%3E%3C/svg%3E");
}

.service-icon.store::before {
  --service-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23ffffff' stroke-width='4.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 27h34l-3-12H18l-3 12z'/%3E%3Cpath d='M17 27v22h30V27'/%3E%3Cpath d='M24 49V37h16v12'/%3E%3Cpath d='M15 27c0 5 7 5 7 0 0 5 7 5 7 0 0 5 7 5 7 0 0 5 7 5 7 0'/%3E%3C/svg%3E");
}

.pede-service-grid strong {
  font-size: 1.12rem;
  z-index: 1;
}

.pede-service-grid small {
  color: #333333;
  font-weight: 700;
  line-height: 1.35;
  z-index: 1;
}

@keyframes pedeHeaderDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pedeLogoSettle {
  from {
    opacity: 0;
    transform: translateX(-10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes pedeUnderline {
  from {
    transform: scaleX(0.3);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes pedeRoadFlow {
  0%, 100% {
    background-position: 100% 50%;
    opacity: 0.8;
  }
  50% {
    background-position: 0 50%;
    opacity: 1;
  }
}

@keyframes pedeGlowPulse {
  0%, 100% {
    transform: scale(0.92);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes pedePhoneFloat {
  0%, 100% {
    transform: translateY(0) rotate(-6deg);
  }
  50% {
    transform: translateY(-10px) rotate(-4deg);
  }
}

@keyframes pedeChoicePop {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.025);
  }
}

@keyframes pedeRiderCruise {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-12px);
  }
}

@keyframes pedeDeliveryBoxGlow {
  0%, 100% {
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.04), 0 26px 48px rgba(0, 0, 0, 0.45);
  }
  50% {
    box-shadow: inset 0 0 0 2px rgba(255, 196, 0, 0.16), 0 30px 58px rgba(255, 196, 0, 0.2);
  }
}

@keyframes pedeHeroCopyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pedeIconNudge {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
}

@keyframes pedeTrustIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pedeTrustPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(255, 196, 0, 0);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(255, 196, 0, 0.12);
  }
}

@keyframes pedeServiceIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pedeServiceFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -4px;
  }
}

@keyframes pedeServiceShine {
  0%, 44% {
    transform: translateX(0) rotate(18deg);
  }
  72%, 100% {
    transform: translateX(330%) rotate(18deg);
  }
}

@keyframes pedeServiceIconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes pedeStoreIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pedeStorePhotoSweep {
  0%, 42% {
    transform: translateX(-110%);
  }
  78%, 100% {
    transform: translateX(110%);
  }
}

@keyframes pedeStoreLogoBeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes pedePanelRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pedePhonePeek {
  0%, 100% {
    transform: translateY(26px) rotate(-7deg);
  }
  50% {
    transform: translateY(16px) rotate(-5deg);
  }
}

.pede-how {
  padding-top: 20px;
}

.pede-how-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.pede-how-steps article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  animation: pedeStepRise 0.7s ease both;
  animation-delay: var(--step-delay, 0s);
}

.pede-how-steps article:nth-child(1) { --step-delay: 0s; }
.pede-how-steps article:nth-child(2) { --step-delay: 0.12s; }
.pede-how-steps article:nth-child(3) { --step-delay: 0.24s; }
.pede-how-steps article:nth-child(4) { --step-delay: 0.36s; }

.pede-how-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 50px;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, #cfcfcf, #ffc400, #cfcfcf);
  background-size: 220% 100%;
  animation: pedeFlowLine 2.8s ease-in-out infinite;
  animation-delay: var(--step-delay, 0s);
}

.pede-how-steps b {
  position: absolute;
  left: 14px;
  top: 42px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #111111;
  background: #ffc400;
  font-size: 1.35rem;
  box-shadow: 0 10px 22px rgba(255, 196, 0, 0.32);
  animation: pedeStepDot 3s ease-in-out infinite;
  animation-delay: var(--step-delay, 0s);
  z-index: 2;
}

.pede-how-steps span {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 190px;
  max-width: 100%;
  height: 94px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 196, 0, 0.22), transparent 30%),
    linear-gradient(135deg, #ffffff, #ececec);
  box-shadow:
    inset 0 0 0 1px rgba(9, 9, 9, 0.06),
    0 16px 36px rgba(9, 9, 9, 0.08);
  animation: pedeStepCard 3s ease-in-out infinite;
  animation-delay: var(--step-delay, 0s);
  isolation: isolate;
}

.pede-how-steps span::before,
.pede-how-steps span::after {
  content: "";
  position: absolute;
  z-index: 1;
}

.pede-how-steps span::before {
  width: 68px;
  height: 68px;
  background: var(--how-icon) center / contain no-repeat;
}

.pede-how-steps span::after {
  inset: -45% auto auto -65%;
  width: 70%;
  height: 190%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  transform: rotate(18deg);
  animation: pedeStepShine 3.8s ease-in-out infinite;
  animation-delay: var(--step-delay, 0s);
}

.how-phone::before {
  --how-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23111111' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='20' y='7' width='24' height='50' rx='7'/%3E%3Cpath d='M29 50h6'/%3E%3C/svg%3E");
}

.how-pin::before {
  --how-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23111111' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 58s20-18 20-34A20 20 0 0 0 12 24c0 16 20 34 20 34z' fill='%23111111'/%3E%3Ccircle cx='32' cy='24' r='7' fill='%23ffc400' stroke='%23ffc400'/%3E%3C/svg%3E");
}

.how-bike::before {
  --how-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 64' fill='none' stroke='%23111111' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='26' cy='48' r='9'/%3E%3Ccircle cx='72' cy='48' r='9'/%3E%3Cpath d='M26 48h22l9-19h15l8 19'/%3E%3Cpath d='M45 29H30l-9 13'/%3E%3Cpath d='M55 29l-9-12h-9'/%3E%3Cpath d='M70 29h11l7 8'/%3E%3Ccircle cx='58' cy='13' r='6' fill='%23111111'/%3E%3Cpath d='M58 19l-6 14 14 2'/%3E%3C/svg%3E");
  animation: pedeBikeMove 1.6s ease-in-out infinite;
}

.how-box::before {
  --how-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23111111' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 21l21-11 21 11-21 11-21-11z'/%3E%3Cpath d='M11 21v22l21 11 21-11V21'/%3E%3Cpath d='M32 32v22'/%3E%3Cpath d='M22 16l21 11'/%3E%3C/svg%3E");
}

.pede-how-steps strong {
  margin-top: 4px;
  font-size: 1.05rem;
}

.pede-how-steps small {
  color: #333333;
  font-weight: 700;
}

@keyframes pedeStepRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pedeStepCard {
  0%, 100% {
    transform: translateY(0);
    box-shadow: inset 0 0 0 1px rgba(9, 9, 9, 0.06), 0 16px 36px rgba(9, 9, 9, 0.08);
  }
  50% {
    transform: translateY(-5px);
    box-shadow: inset 0 0 0 1px rgba(255, 196, 0, 0.28), 0 22px 46px rgba(9, 9, 9, 0.12);
  }
}

@keyframes pedeStepDot {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes pedeFlowLine {
  0%, 100% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 0 50%;
  }
}

@keyframes pedeStepShine {
  0%, 42% {
    transform: translateX(0) rotate(18deg);
  }
  78%, 100% {
    transform: translateX(310%) rotate(18deg);
  }
}

@keyframes pedeBikeMove {
  0%, 100% {
    transform: translateX(-2px);
  }
  50% {
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pede-landing-header,
  .pede-landing-brand img,
  .pede-motion-road,
  .pede-motion-glow,
  .pede-phone-mock,
  .phone-choice,
  .pede-delivery-rider,
  .rider-box,
  .pede-hero-copy,
  .cta-car-icon,
  .cta-bike-icon,
  .mini-car-icon,
  .mini-food-icon,
  .pede-trust-points div,
  .pede-trust-points span,
  .pede-service-grid article,
  .pede-service-grid article::after,
  .service-icon,
  .pede-store-card a,
  .pede-store-card.loading,
  .store-photo::after,
  .store-logo-mark,
  .pede-partner-copy,
  .pede-partner-form,
  .pede-app-banner,
  .app-banner-phone,
  .pede-how-steps article,
  .pede-how-steps article:not(:last-child)::after,
  .pede-how-steps b,
  .pede-how-steps span,
  .pede-how-steps span::after,
  .how-bike::before {
    animation: none;
  }
}

.pede-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.pede-section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.pede-section-head a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: #e3a900;
  font-weight: 950;
}

.pede-store-carousel {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 18px;
}

.pede-store-card a,
.pede-store-card.loading {
  display: grid;
  overflow: hidden;
  color: #111111;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  box-shadow: 0 20px 54px rgba(9, 9, 9, 0.08);
  animation: pedeStoreIn 0.7s ease both;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pede-store-card a:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 196, 0, 0.45);
  box-shadow: 0 28px 72px rgba(9, 9, 9, 0.13);
}

.store-photo {
  position: relative;
  min-height: 146px;
  background: radial-gradient(circle at 50% 42%, #f2a13b 0 20%, transparent 21%), linear-gradient(135deg, #7a2e0c, #160803);
  overflow: hidden;
}

.store-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 35%, rgba(255, 255, 255, 0.3) 45%, transparent 58%);
  transform: translateX(-110%);
  animation: pedeStorePhotoSweep 5.8s ease-in-out infinite;
}

.store-photo.burger { background: radial-gradient(circle at 50% 42%, #f2a13b 0 20%, transparent 21%), linear-gradient(135deg, #7a2e0c, #160803); }
.store-photo.sushi { background: radial-gradient(circle at 48% 48%, #fff2d4 0 24%, transparent 25%), linear-gradient(135deg, #d95b32, #1d1111); }
.store-photo.pizza { background: radial-gradient(circle at 50% 45%, #f4c16d 0 28%, transparent 29%), linear-gradient(135deg, #a62110, #2b0904); }
.store-photo.market { background: radial-gradient(circle at 54% 46%, #5dcc65 0 25%, transparent 26%), linear-gradient(135deg, #e7c36a, #4f6a21); }
.store-photo.healthy { background: radial-gradient(circle at 50% 44%, #ffe1b1 0 24%, transparent 25%), linear-gradient(135deg, #2f8e47, #122b19); }

.store-photo span {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #111111;
  background: #ffffff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.store-card-body {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
}

.store-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #111111;
  border: 3px solid #ffffff;
  box-shadow: 0 10px 24px rgba(9, 9, 9, 0.18);
  animation: pedeStoreLogoBeat 3.6s ease-in-out infinite;
}

.store-card-body strong,
.store-card-body small,
.store-card-body b {
  display: block;
  min-width: 0;
}

.store-card-body small,
.store-card-foot {
  color: #555555;
  font-size: 0.84rem;
  font-weight: 750;
}

.store-card-body b {
  justify-self: end;
  color: #111111;
  font-size: 0.86rem;
}

.store-card-body b span {
  color: #e3a900;
  font-size: 0;
}

.store-card-body b span::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-left: 3px;
  background: #ffc400;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 92%, 50% 70%, 21% 92%, 32% 57%, 2% 35%, 39% 35%);
}

.store-card-foot {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 0 12px 12px;
  line-height: 1.2;
}

.store-card-foot span:last-child {
  text-align: right;
  overflow-wrap: anywhere;
}

.pede-partner-zone {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.58fr);
  gap: 22px;
  align-items: start;
}

.pede-partner-copy,
.pede-partner-form {
  padding: clamp(22px, 4vw, 38px);
  border-radius: 18px;
}

.pede-partner-copy {
  min-height: 100%;
  color: #ffffff;
  background: linear-gradient(135deg, #070707, #121212 65%, #2b2104);
  animation: pedePanelRise 0.8s ease both;
}

.pede-partner-copy h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.pede-partner-copy p:not(.pede-kicker) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.5;
}

.partner-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.partner-metrics div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.partner-metrics strong,
.partner-metrics span {
  display: block;
}

.partner-metrics span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 760;
}

.pede-partner-form {
  display: grid;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 24px 70px rgba(9, 9, 9, 0.08);
  animation: pedePanelRise 0.8s ease both;
  animation-delay: 0.12s;
}

.pede-partner-form h3 {
  margin: 0;
  font-size: 2rem;
}

.pede-partner-form label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.pede-partner-form label span {
  color: #4e4e4e;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.pede-partner-form input,
.pede-partner-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: #111111;
  background: #f8f8f8;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
}

.pede-partner-form textarea {
  min-height: 92px;
  padding-top: 10px;
  resize: vertical;
}

.pede-partner-cta {
  align-content: start;
  min-height: 100%;
}

.pede-partner-cta p,
.pede-partner-cta small {
  color: #444444;
  font-weight: 800;
  line-height: 1.5;
}

.partner-flow {
  display: grid;
  gap: 10px;
}

.partner-flow span {
  display: block;
  padding: 12px;
  color: #111111;
  background: #f7f7f7;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  font-weight: 950;
}

.pede-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pede-app-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(290px, auto) 150px;
  align-items: center;
  gap: 22px;
  width: min(1240px, calc(100% - 36px));
  min-height: 132px;
  margin: 0 auto 26px;
  padding: 26px clamp(22px, 4vw, 52px);
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #050505, #151515);
  border-radius: 18px;
  animation: pedePanelRise 0.8s ease both;
}

.pede-app-banner h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.pede-app-banner p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.app-store-buttons {
  flex-wrap: wrap;
  justify-self: start;
  max-width: 420px;
}

.app-store-buttons .landing-form-result {
  flex-basis: 100%;
}

.pede-install-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  color: #090909;
  background: linear-gradient(135deg, #ffc400, #ffe179);
  border: 1px solid #ffc400;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(255, 196, 0, 0.22);
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pede-install-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(255, 196, 0, 0.3);
}

.install-help {
  max-width: 210px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.3;
}

.app-banner-phone {
  justify-self: end;
  width: 150px;
  height: 120px;
  border: 8px solid #2c2c2c;
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  background: radial-gradient(circle at 50% 42%, #ffc400 0 22%, transparent 23%), #111111;
  transform: translateY(26px) rotate(-7deg);
  animation: pedePhonePeek 4.6s ease-in-out infinite;
}

.pede-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(150px, 0.55fr));
  gap: 28px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background: #070707;
}

.pede-footer img {
  width: 226px;
  max-height: 62px;
  object-fit: contain;
}

.pede-footer p,
.pede-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.pede-footer strong,
.pede-footer a {
  display: block;
  margin-bottom: 10px;
}

.social-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  background: rgba(255, 196, 0, 0.22);
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.pede-page-hero {
  padding: clamp(62px, 8vw, 110px) clamp(18px, 4vw, 56px);
  color: #ffffff;
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 196, 0, 0.2), transparent 28%),
    linear-gradient(135deg, #050505, #141414 62%, #1d1604);
}

.pede-page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.98;
}

.pede-page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.45;
}

.pede-page-content {
  display: grid;
  gap: 18px;
  padding: clamp(30px, 5vw, 62px) clamp(18px, 4vw, 56px);
  background: #f8f8f7;
}

.pede-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pede-info-card {
  padding: 22px;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(9, 9, 9, 0.06);
}

.pede-info-card strong,
.pede-info-card span {
  display: block;
}

.pede-info-card strong {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.pede-info-card span,
.pede-page-content p,
.pede-page-content li {
  color: #3d3d3d;
  font-weight: 750;
  line-height: 1.55;
}

.pede-page-content h2 {
  margin: 16px 0 0;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.pede-page-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

/* V64 public store menu with cart. */
.delivery-product-grid {
  display: grid;
  gap: 12px;
}

.delivery-product-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) minmax(118px, auto);
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.delivery-product-photo {
  position: relative;
  overflow: hidden;
  min-height: 104px;
  border-radius: 10px;
  background: radial-gradient(circle at 50% 45%, #f2a13b 0 24%, transparent 25%), linear-gradient(135deg, #7a2e0c, #160803);
}

.delivery-product-photo.has-image {
  background: #101010;
}

.delivery-product-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.delivery-product-photo.drink { background: radial-gradient(circle at 50% 42%, #79d7ff 0 22%, transparent 23%), linear-gradient(135deg, #073e54, #050d14); }
.delivery-product-photo.pizza { background: radial-gradient(circle at 50% 45%, #f4c16d 0 28%, transparent 29%), linear-gradient(135deg, #a62110, #2b0904); }
.delivery-product-photo.market { background: radial-gradient(circle at 54% 46%, #5dcc65 0 25%, transparent 26%), linear-gradient(135deg, #e7c36a, #4f6a21); }
.delivery-product-photo.healthy { background: radial-gradient(circle at 50% 44%, #ffe1b1 0 24%, transparent 25%), linear-gradient(135deg, #2f8e47, #122b19); }
.delivery-product-photo.butcher { background: radial-gradient(circle at 50% 45%, #c82a2f 0 24%, transparent 25%), linear-gradient(135deg, #43100f, #090605 62%, #1f1306); }

.delivery-product-copy {
  display: grid;
  gap: 5px;
}

.delivery-product-copy > span {
  color: #ffc400 !important;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.delivery-product-copy p {
  margin: 0;
}

.delivery-addons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 6px;
}

.delivery-addons label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 9px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  cursor: pointer;
}

.delivery-addons label span {
  color: inherit !important;
  font-size: 0.76rem;
  text-transform: none;
}

.delivery-product-buy {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.delivery-product-buy > strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.delivery-stepper {
  display: grid;
  grid-template-columns: 36px 56px 36px;
  gap: 6px;
  align-items: center;
}

.delivery-stepper button {
  min-height: 36px;
  color: #080808;
  background: #ffc400;
  border: 0;
  border-radius: 8px;
  font-weight: 950;
}

.delivery-stepper input {
  min-height: 36px !important;
  padding: 0 !important;
  text-align: center;
}

/* V75 premium store menu organization. */
.public-store-screen {
  width: min(100%, 1180px);
}

.public-store-screen .store-menu-hero {
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 16px;
  min-height: auto;
  padding: clamp(18px, 3vw, 28px);
}

.public-store-screen .store-menu-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(4, 4, 4, 0.9), rgba(4, 4, 4, 0.66) 52%, rgba(4, 4, 4, 0.72));
  pointer-events: none;
}

.store-menu-banner {
  opacity: 0.3;
  object-position: right center;
}

.store-menu-hero-content {
  display: grid;
  gap: 10px;
  max-width: 760px;
  min-width: 0;
}

.store-hero-brand > div:last-child {
  min-width: 0;
}

.public-store-screen .store-menu-hero h2 {
  max-width: 100%;
  margin: 6px 0 0;
  font-size: clamp(2rem, 4.8vw, 4rem);
  overflow-wrap: anywhere;
}

.public-store-screen .store-menu-hero p {
  max-width: 720px;
  overflow-wrap: anywhere;
}

.store-menu-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.store-menu-summary div {
  min-width: 0;
}

.store-menu-summary strong {
  overflow-wrap: anywhere;
}

.delivery-product-card {
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
  padding: 14px;
}

.delivery-product-photo {
  min-height: 112px;
  aspect-ratio: 1;
}

.delivery-product-copy {
  min-width: 0;
}

.delivery-product-copy strong,
.delivery-product-copy p {
  overflow-wrap: anywhere;
}

.delivery-addons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.delivery-addons label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  min-height: 48px;
  padding: 8px 10px;
  border-radius: 12px;
}

.delivery-addons input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #ffc400;
}

.delivery-addons label:has(input:checked) {
  color: #0b0b0b;
  background: linear-gradient(135deg, #ffc400, #ffdf73);
  border-color: #ffc400;
}

.delivery-addons label span {
  display: grid;
  gap: 2px;
  min-width: 0;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.delivery-addons label b,
.delivery-addons label small {
  min-width: 0;
  color: inherit;
  font-size: 0.78rem;
  line-height: 1.2;
}

.delivery-product-buy {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.delivery-product-buy > strong {
  white-space: nowrap;
}

.delivery-stepper {
  flex: 0 0 auto;
}

.merchant-onboarding-screen .store-menu-panel {
  display: grid;
  gap: 14px;
}

.merchant-onboarding-screen .grid-2 {
  align-items: start;
}

.merchant-signup-form .grid-2,
.merchant-onboarding-screen .form .grid-2 {
  gap: 12px;
}

.delivery-cart-items {
  display: grid;
  gap: 8px;
}

.delivery-cart-row,
.delivery-cart-totals div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.delivery-cart-row {
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.delivery-cart-row span,
.delivery-cart-row small {
  display: block;
}

.delivery-cart-row small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.delivery-cart-totals {
  display: grid;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.delivery-cart-totals div:last-child strong {
  color: #ffc400;
  font-size: 1.28rem;
}

.delivery-quote-actions {
  align-items: stretch;
}

.delivery-quote-actions .primary-button,
.delivery-quote-actions .secondary-button {
  flex: 1 1 180px;
}

.delivery-quote-card {
  margin: 0;
  border-color: rgba(255, 196, 0, 0.35);
}

@media (max-width: 1120px) {
  .pede-landing-header {
    grid-template-columns: 1fr auto;
  }

  .pede-landing-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
  }

  .pede-hero {
    grid-template-columns: 1fr;
  }

  .pede-phone-mock {
    right: 8%;
    opacity: 0.34;
  }

  .pede-delivery-rider {
    opacity: 0.5;
  }

  .pede-service-grid,
  .pede-store-carousel,
  .pede-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pede-how-steps,
  .pede-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pede-how-steps {
    max-width: 660px;
  }

  .pede-how-steps article:not(:last-child)::after {
    display: none;
  }

  .pede-partner-zone,
  .pede-app-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .app-body:has(.public-store-screen) .floating-install {
    display: none;
  }

  .pede-landing-header,
  .pede-landing-actions {
    grid-template-columns: 1fr;
  }

  .pede-landing-header {
    gap: 10px;
    padding: 10px 12px;
  }

  .pede-landing-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .pede-landing-nav a {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .pede-landing-brand {
    width: 204px;
  }

  .pede-landing-actions {
    display: grid;
    width: 100%;
  }

  .pede-landing-actions a,
  .pede-hero-buttons .pede-cta {
    width: 100%;
  }

  .pede-hero {
    min-height: auto;
    padding: 42px 12px;
  }

  .pede-phone-mock,
  .pede-delivery-rider {
    display: none;
  }

  .pede-hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .pede-trust-points,
  .pede-service-grid,
  .pede-how-steps,
  .pede-store-carousel,
  .pede-page-grid,
  .partner-metrics,
  .pede-form-grid,
  .pede-footer,
  .delivery-product-card {
    grid-template-columns: 1fr;
  }

  .pede-how-steps article:not(:last-child)::after {
    display: none;
  }

  .pede-how-steps b {
    left: calc(50% - 92px);
  }

  .pede-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .delivery-product-buy {
    justify-items: stretch;
  }

  .delivery-stepper {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }
}

@media (max-width: 760px) {
  .public-store-screen {
    gap: 10px;
  }

  .public-store-screen .store-menu-hero,
  .public-store-screen .store-menu-panel {
    padding: 14px;
    border-radius: 10px;
  }

  .store-hero-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-hero-logo {
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }

  .public-store-screen .store-menu-hero h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .store-menu-summary {
    grid-template-columns: 1fr;
  }

  .delivery-product-card {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
  }

  .delivery-product-photo {
    min-height: 86px;
  }

  .delivery-addons {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .delivery-product-buy {
    align-items: stretch;
    flex-direction: column;
  }

  .delivery-stepper {
    width: 100%;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }
}

@media (max-width: 360px) {
  .delivery-product-card {
    grid-template-columns: 1fr;
  }

  .delivery-product-photo {
    aspect-ratio: 16 / 9;
  }
}

/* V78 premium intelligent menu. */
.pede-landing-brand {
  width: 88px;
}

.pede-landing-brand img {
  max-height: 72px;
  aspect-ratio: 1;
}

.pede-footer img {
  width: 126px;
  max-height: 126px;
  aspect-ratio: 1;
}

.app-sidebar .brand img,
.brand img {
  object-fit: contain;
}

.app-sidebar .brand img {
  max-height: 126px;
}

.menu-category-tabs {
  display: flex;
  gap: 10px;
  margin: 2px 0 18px;
  padding: 4px 2px 10px;
  overflow-x: auto;
  scroll-padding-inline: 12px;
  scrollbar-width: thin;
}

.menu-category-tabs a {
  flex: 0 0 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 215, 0, 0.26);
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.menu-category-tabs a:hover {
  transform: translateY(-2px);
  background: rgba(255, 215, 0, 0.13);
  border-color: rgba(255, 215, 0, 0.58);
}

.public-store-screen .store-menu-panel {
  background: #0f0f0f;
  border-color: rgba(255, 215, 0, 0.18);
}

.delivery-product-grid {
  grid-template-columns: repeat(auto-fit, minmax(242px, 1fr));
  gap: 18px;
}

.delivery-product-card.premium-product-card {
  position: relative;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.98), rgba(12, 12, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
  transform: translateZ(0);
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.delivery-product-card.premium-product-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(255, 215, 0, 0.46);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(255, 215, 0, 0.08);
}

.delivery-product-card.product-added {
  animation: productAddedPulse 520ms ease;
}

.delivery-product-card.premium-product-card .delivery-product-photo {
  width: 100%;
  min-height: auto;
  aspect-ratio: 1;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 215, 0, 0.36) 0 24%, transparent 25%),
    linear-gradient(145deg, #1b1b1b, #080808 60%, #1a1506);
}

.delivery-product-card.premium-product-card .delivery-product-photo.has-image .premium-fallback-icon {
  opacity: 0;
}

.premium-fallback-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(3rem, 9vw, 5rem);
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.42));
}

.product-tags {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 2;
}

.product-tags span {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  color: #0a0a0a;
  background: rgba(255, 215, 0, 0.94);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 950;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.premium-product-card .delivery-product-copy {
  padding: 14px 14px 4px;
}

.premium-product-card .delivery-product-copy > span {
  letter-spacing: 0;
}

.premium-product-card .delivery-product-copy strong {
  color: #ffffff;
  font-size: clamp(1.08rem, 2.4vw, 1.34rem);
  line-height: 1.13;
}

.premium-product-card .delivery-product-copy p {
  min-height: 44px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.36;
}

.product-demand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
  padding: 8px 10px;
  color: #ffe083;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.16);
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 900;
}

.product-demand small,
.product-image-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  font-weight: 850;
}

.premium-product-card .delivery-addons {
  grid-template-columns: 1fr;
}

.premium-product-card .delivery-product-buy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: stretch;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-product-card .delivery-product-buy > strong {
  color: #ffd700;
  font-size: 1.44rem;
  line-height: 1;
}

.product-add-button {
  min-height: 48px;
  width: 100%;
  color: #080808;
  background: linear-gradient(135deg, #ffd700, #ffb800);
  border: 0;
  border-radius: 11px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(255, 184, 0, 0.24);
  transition: transform 160ms ease, filter 160ms ease;
}

.product-add-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.premium-product-card .delivery-stepper {
  width: 100%;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
}

.premium-product-card .delivery-stepper button {
  min-height: 40px;
}

.store-checkout-panel.cart-bump,
.delivery-cart-dock.cart-bump,
.cart-count-bump {
  animation: cartBump 520ms ease;
}

.smart-menu-panel {
  border-color: rgba(255, 215, 0, 0.28) !important;
}

.smart-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.smart-menu-grid div,
.smart-form-note {
  min-width: 0;
  padding: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 12px;
}

.smart-menu-grid span,
.smart-menu-grid small,
.smart-form-note span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.smart-menu-grid strong,
.smart-form-note strong {
  color: #ffd700;
}

.merchant-item-list {
  display: grid;
  gap: 14px;
}

.merchant-item-editor {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.merchant-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.merchant-item-head strong,
.merchant-item-head span {
  min-width: 0;
}

.merchant-item-head strong {
  overflow-wrap: anywhere;
}

.merchant-item-head span {
  flex: 0 0 auto;
  color: #ffd700;
  font-weight: 950;
}

.merchant-item-editor p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.45;
}

@keyframes productAddedPulse {
  0% { box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34); }
  45% { box-shadow: 0 26px 72px rgba(0, 0, 0, 0.46), 0 0 0 4px rgba(255, 215, 0, 0.22); }
  100% { box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34); }
}

@keyframes cartBump {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.025); }
}

@media (max-width: 900px) {
  .pede-landing-brand {
    width: 76px;
  }

  .delivery-product-grid,
  .smart-menu-grid {
    grid-template-columns: 1fr;
  }

  .public-store-screen .store-checkout-panel {
    position: static;
  }
}

@media (max-width: 520px) {
  .pede-landing-brand {
    width: 68px;
  }

  .delivery-product-grid {
    gap: 14px;
  }

  .product-demand {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* V78 public menu overflow guards. */
.app-body.is-public-auth,
.is-public-auth .app-layout,
.is-public-auth .app-main,
.is-public-auth .screen,
.public-store-screen,
.public-store-screen .store-menu-hero,
.public-store-screen .store-menu-panel,
.public-store-screen .store-order-form {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.app-body.is-public-auth,
.is-public-auth .app-layout,
.is-public-auth .app-main {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.is-public-auth .screen,
.public-store-screen {
  width: 100%;
}

.store-hero-brand > div,
.store-menu-hero-content,
.store-menu-summary,
.panel-header,
.delivery-product-grid,
.delivery-product-card,
.delivery-product-copy,
.delivery-cart-row,
.delivery-cart-totals div {
  min-width: 0;
}

.merchant-onboarding-screen .delivery-store-card,
.public-store-screen .list-item.delivery-store-card {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-left: 5px solid #00bcd4;
}

.merchant-onboarding-screen .delivery-store-card p,
.merchant-onboarding-screen .delivery-store-card span,
.public-store-screen .list-item.delivery-store-card p,
.public-store-screen .list-item.delivery-store-card span {
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 900px) {
  .public-store-screen .store-order-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .is-public-auth .app-main {
    padding: 10px;
  }

  .public-store-screen .store-menu-hero,
  .public-store-screen .store-menu-panel {
    width: 100%;
  }

  .public-store-screen .panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .public-store-screen .payment-choice {
    grid-template-columns: 1fr;
  }

  .menu-category-tabs {
    margin-inline: -2px;
  }
}

/* V79: keep the readable horizontal logo in top navigation. */
.pede-landing-brand {
  width: 236px;
}

.pede-landing-brand img {
  width: 100%;
  max-height: 58px;
  aspect-ratio: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .pede-landing-brand {
    width: 198px;
  }
}

@media (max-width: 520px) {
  .pede-landing-brand {
    width: 172px;
  }
}

/* V81 premium product image system and calmer menu cards. */
.delivery-product-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.delivery-product-card.premium-product-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) minmax(102px, auto);
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 12px;
  overflow: visible;
  border-radius: 12px;
}

.delivery-product-card.premium-product-card .delivery-product-photo {
  width: 112px;
  min-height: 0;
  aspect-ratio: 1;
  border-radius: 10px;
}

.delivery-product-photo picture,
.delivery-product-photo picture img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.delivery-product-card.premium-product-card .delivery-product-photo img {
  object-fit: cover;
}

.premium-fallback-icon {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 34px;
  height: 24px;
  transform: translateX(-50%);
  border: 2px solid rgba(255, 215, 0, 0.78);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom: 0;
}

.premium-fallback-icon::before,
.premium-fallback-icon::after {
  content: "";
  position: absolute;
  background: rgba(255, 215, 0, 0.78);
}

.premium-fallback-icon::before {
  top: -7px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateX(-50%);
}

.premium-fallback-icon::after {
  left: -6px;
  right: -6px;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
}

.premium-fallback-name {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.delivery-product-photo.has-image .premium-fallback-icon,
.delivery-product-photo.has-image .premium-fallback-name {
  opacity: 0;
}

.product-tags {
  top: 6px;
  right: auto;
  left: 6px;
}

.product-tags span {
  min-height: 22px;
  padding: 0 7px;
  font-size: 0.62rem;
}

.premium-product-card .delivery-product-copy {
  min-width: 0;
  padding: 0;
}

.premium-product-card .delivery-product-copy > span {
  font-size: 0.68rem;
}

.premium-product-card .delivery-product-copy strong {
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.premium-product-card .delivery-product-copy p {
  min-height: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.premium-product-card .delivery-addons {
  gap: 6px;
  margin-top: 4px;
}

.delivery-flavor-choice,
.delivery-addon-choice {
  display: grid;
  gap: 8px;
  margin: 6px 0 0;
  padding: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  background: rgba(255, 215, 0, 0.055);
}

.delivery-flavor-choice legend,
.delivery-addon-choice legend {
  padding: 0 4px;
  color: #ffd700;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.delivery-flavor-choice > div,
.delivery-addon-choice > div,
.delivery-addon-loose {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.delivery-flavor-choice label,
.delivery-addon-choice label,
.delivery-addon-loose label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  min-height: 32px;
  padding: 7px 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  cursor: pointer;
}

.delivery-flavor-choice input,
.delivery-addon-choice input,
.delivery-addon-loose input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  accent-color: #ffd700;
}

.delivery-flavor-choice span,
.delivery-flavor-choice b,
.delivery-flavor-choice small,
.delivery-addon-choice span,
.delivery-addon-choice b,
.delivery-addon-choice small,
.delivery-addon-loose span,
.delivery-addon-loose b,
.delivery-addon-loose small {
  min-width: 0;
  color: inherit !important;
  font-size: 0.75rem;
  line-height: 1.15;
}

.delivery-flavor-choice span,
.delivery-addon-choice span,
.delivery-addon-loose span {
  display: grid;
  gap: 2px;
}

.delivery-flavor-choice label:has(input:checked),
.delivery-addon-choice label:has(input:checked),
.delivery-addon-loose label:has(input:checked) {
  color: #080808;
  background: linear-gradient(135deg, #ffd700, #ffe083);
  border-color: #ffd700;
}

.delivery-flavor-choice > small,
.delivery-addon-choice > small {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 850;
}

.delivery-flavor-choice.is-invalid,
.delivery-addon-choice.is-invalid {
  border-color: rgba(255, 84, 84, 0.55);
}

.delivery-flavor-choice.is-invalid > small,
.delivery-addon-choice.is-invalid > small {
  color: #ffb4a8;
}

.delivery-flavor-choice.is-complete > small,
.delivery-addon-choice.is-complete > small {
  color: #52e2a2;
}

.premium-product-card .delivery-addons label {
  min-height: 28px;
  padding: 0 8px;
  font-size: 0.74rem;
}

.premium-product-card .delivery-product-buy {
  display: grid;
  justify-items: end;
  gap: 8px;
  min-width: 102px;
  padding: 0;
  border-top: 0;
}

.premium-product-card .delivery-product-buy > strong {
  font-size: 1.1rem;
}

.product-add-button {
  display: none;
}

.premium-product-card .delivery-stepper {
  width: auto;
  grid-template-columns: 32px 42px 32px;
}

.premium-product-card .delivery-stepper button,
.premium-product-card .delivery-stepper input {
  min-height: 34px;
}

.product-image-upload small {
  color: rgba(255, 255, 255, 0.64);
}

.checkout-submit[hidden] {
  display: none !important;
}

.public-store-screen .delivery-payment-choice {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-store-screen .delivery-payment-choice label {
  min-height: 66px;
  padding: 10px;
}

.delivery-quote-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 8px;
}

.delivery-quote-actions .primary-button,
.delivery-quote-actions .secondary-button {
  width: 100%;
  min-width: 0;
  flex: none;
}

@media (max-width: 760px) {
  .delivery-product-card.premium-product-card {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
  }

  .delivery-product-card.premium-product-card .delivery-product-photo {
    width: 84px;
  }

  .premium-fallback-icon {
    top: 19px;
    width: 28px;
    height: 20px;
  }

  .premium-fallback-name {
    font-size: 0.64rem;
  }

  .premium-product-card .delivery-product-buy {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
  }

  .delivery-flavor-choice > div {
    grid-template-columns: 1fr;
  }

  .public-store-screen .delivery-payment-choice {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .delivery-product-card.premium-product-card {
    grid-template-columns: 76px minmax(0, 1fr);
    padding: 10px;
  }

  .delivery-product-card.premium-product-card .delivery-product-photo {
    width: 76px;
  }

  .premium-product-card .delivery-product-copy p {
    -webkit-line-clamp: 1;
  }

  .premium-product-card .delivery-stepper {
    grid-template-columns: 30px 36px 30px;
  }

  .delivery-quote-actions {
    grid-template-columns: 1fr;
  }

  .public-store-screen .delivery-payment-choice label {
    min-height: 62px;
    padding: 8px;
  }
}

/* V83 hidden checkout drawer for public delivery menus. */
.public-store-screen .store-order-form {
  grid-template-columns: 1fr;
  padding-bottom: 0;
}

.public-store-screen .store-order-form.has-cart {
  padding-bottom: 104px;
}

.delivery-cart-dock[hidden],
.delivery-checkout-backdrop[hidden],
.store-checkout-panel[hidden] {
  display: none !important;
}

.delivery-cart-dock {
  position: fixed;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: 18px;
  z-index: 74;
  width: min(720px, calc(100vw - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.98), rgba(22, 22, 22, 0.98));
  border: 1px solid rgba(255, 215, 0, 0.42);
  border-radius: 16px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(255, 215, 0, 0.08);
}

.delivery-cart-dock div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.delivery-cart-dock span,
.delivery-cart-dock small {
  min-width: 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
  line-height: 1.2;
}

.delivery-cart-dock strong {
  color: #ffd700;
  font-size: 1.26rem;
  line-height: 1.05;
}

.delivery-cart-dock .primary-button {
  min-height: 48px;
  white-space: nowrap;
}

.delivery-checkout-backdrop {
  position: fixed;
  inset: 0;
  z-index: 78;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(0, 0, 0, 0.62);
  border: 0;
  cursor: pointer;
}

.public-store-screen .store-checkout-panel {
  position: fixed;
  top: 22px;
  right: max(18px, calc((100vw - 1180px) / 2 + 18px));
  bottom: 22px;
  z-index: 80;
  width: min(440px, calc(100vw - 36px));
  max-height: calc(100dvh - 44px);
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  outline: none;
  border-radius: 16px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(255, 215, 0, 0.1);
}

.delivery-checkout-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
}

.delivery-checkout-close {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
}

.delivery-checkout-close:hover {
  color: #080808;
  background: #ffd700;
  border-color: #ffd700;
}

.store-order-form.checkout-open .delivery-cart-dock {
  display: none;
}

@media (max-width: 760px) {
  .public-store-screen .store-order-form.has-cart {
    padding-bottom: 116px;
  }

  .delivery-cart-dock {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    width: calc(100vw - 20px);
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 11px;
  }

  .delivery-cart-dock .primary-button {
    width: 100%;
  }

  .public-store-screen .store-checkout-panel {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: min(92dvh, 760px);
    border-radius: 18px 18px 0 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }

  .delivery-checkout-head {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .delivery-checkout-head .status-pill {
    grid-column: 1;
    width: max-content;
  }

  .delivery-checkout-close {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 420px) {
  .delivery-cart-dock strong {
    font-size: 1.14rem;
  }
}

/* V84 premium menu density after hidden checkout. */
.public-store-screen {
  width: min(100%, 1260px);
}

.public-store-screen .store-order-form > .store-menu-panel:not(.store-checkout-panel) {
  padding: clamp(16px, 2.2vw, 24px);
}

.public-store-screen .delivery-product-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap: 14px;
  align-items: start;
}

.public-store-screen .store-all-product-grid {
  margin-top: 12px;
}

.public-store-screen .menu-product-anchor {
  min-width: 0;
  scroll-margin-top: 18px;
}

.public-store-screen .menu-product-anchor .delivery-product-card {
  height: 100%;
}

.public-store-screen .delivery-product-card.premium-product-card {
  grid-template-columns: 104px minmax(0, 1fr) minmax(96px, auto);
  align-items: start;
  gap: 12px;
  padding: 12px;
  overflow: visible;
  border-radius: 14px;
}

.public-store-screen .delivery-product-card.premium-product-card .delivery-product-photo {
  width: 104px;
  min-height: 0;
  aspect-ratio: 1;
  border-radius: 12px;
}

.public-store-screen .premium-product-card .delivery-product-copy {
  display: grid;
  gap: 6px;
  padding: 0;
}

.public-store-screen .premium-product-card .delivery-product-copy > span {
  font-size: 0.68rem;
}

.public-store-screen .premium-product-card .delivery-product-copy strong {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.public-store-screen .premium-product-card .delivery-product-copy p {
  min-height: 0;
  margin: 0;
  font-size: 0.9rem;
  -webkit-line-clamp: 2;
}

.public-store-screen .delivery-flavor-choice,
.public-store-screen .delivery-addon-choice {
  gap: 7px;
  margin-top: 4px;
  padding: 9px;
  border-radius: 12px;
}

.public-store-screen .delivery-flavor-choice > div,
.public-store-screen .delivery-addon-choice > div,
.public-store-screen .delivery-addon-loose {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 7px;
}

.public-store-screen .delivery-flavor-choice label,
.public-store-screen .delivery-addon-choice label,
.public-store-screen .delivery-addon-loose label {
  min-height: 36px;
  padding: 7px 9px;
}

.public-store-screen .premium-product-card .delivery-addons {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 7px;
  margin-top: 0;
}

.public-store-screen .premium-product-card .delivery-addons label {
  min-height: 36px;
  padding: 7px 9px;
  border-radius: 10px;
}

.public-store-screen .premium-product-card .delivery-product-buy {
  display: grid;
  align-self: stretch;
  align-content: end;
  justify-items: end;
  gap: 8px;
  min-width: 96px;
  padding: 0;
  border-top: 0;
}

.public-store-screen .premium-product-card .delivery-product-buy > strong {
  font-size: 1.12rem;
  white-space: nowrap;
}

.public-store-screen .premium-product-card .delivery-stepper {
  width: auto;
  grid-template-columns: 32px 42px 32px;
}

.public-store-screen .premium-product-card .delivery-stepper button,
.public-store-screen .premium-product-card .delivery-stepper input {
  min-height: 34px;
}

.public-store-screen .product-tags {
  top: 7px;
  right: auto;
  left: 7px;
}

.public-store-screen .product-tags span {
  min-height: 22px;
  padding: 0 7px;
  font-size: 0.62rem;
}

.public-store-screen .store-checkout-panel {
  width: min(420px, calc(100vw - 36px));
}

@media (min-width: 1180px) {
  .public-store-screen .delivery-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .public-store-screen .delivery-product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .public-store-screen .delivery-product-card.premium-product-card {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
    padding: 11px;
  }

  .public-store-screen .delivery-product-card.premium-product-card .delivery-product-photo {
    width: 84px;
  }

  .public-store-screen .premium-product-card .delivery-product-buy {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
  }

  .public-store-screen .delivery-flavor-choice,
  .public-store-screen .delivery-addon-choice,
  .public-store-screen .premium-product-card .delivery-addons {
    grid-column: 1 / -1;
  }

  .public-store-screen .delivery-flavor-choice > div,
  .public-store-screen .delivery-addon-choice > div,
  .public-store-screen .delivery-addon-loose,
  .public-store-screen .premium-product-card .delivery-addons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .public-store-screen .delivery-product-card.premium-product-card {
    grid-template-columns: 76px minmax(0, 1fr);
    padding: 10px;
  }

  .public-store-screen .delivery-product-card.premium-product-card .delivery-product-photo {
    width: 76px;
  }

  .public-store-screen .premium-product-card .delivery-product-copy p {
    -webkit-line-clamp: 1;
  }
}

/* V85 homepage partner stores: two-store horizontal carousel. */
.pede-featured-stores {
  display: grid;
  gap: 10px;
}

.pede-store-carousel {
  width: min(100%, 460px);
  display: block !important;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 2px 2px 34px;
}

.pede-store-track {
  display: flex;
  width: 100%;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.pede-store-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 2px;
}

.pede-store-slide .pede-store-card {
  height: 100%;
}

.pede-store-slide .pede-store-card a,
.pede-store-slide .pede-store-card.loading {
  min-height: 316px;
}

.pede-store-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pede-store-dots button {
  width: 30px;
  height: 8px;
  padding: 0;
  background: rgba(17, 17, 17, 0.18);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.pede-store-dots button.is-active {
  width: 46px;
  background: #ffc400;
}

@media (min-width: 900px) {
  .pede-featured-stores .pede-section-head {
    max-width: 720px;
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .pede-store-carousel {
    width: 100%;
  }

  .pede-store-slide .pede-store-card a,
  .pede-store-slide .pede-store-card.loading {
    min-height: 292px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pede-store-track {
    transition: none;
  }
}

/* V86 full UI audit: tighter responsive guards, logo polish and app install cleanup. */
.pede-delivery-landing,
.pede-delivery-landing main,
.pede-delivery-landing section,
.public-store-screen,
.public-store-screen * {
  min-width: 0;
}

.pede-delivery-landing {
  overflow-x: clip;
}

.pede-motion-road.main {
  right: -3%;
  width: 78%;
}

.pede-motion-road.cross {
  right: -2%;
  width: 66%;
}

.pede-how-steps article {
  min-width: 0;
  min-height: 166px;
}

.pede-how-steps article:not(:last-child)::after {
  right: 0;
  width: 36px;
}

.pede-how-steps span {
  width: min(190px, calc(100% - 8px));
}

.pede-how-steps strong,
.pede-how-steps small,
.partner-metrics strong,
.partner-metrics span,
.pede-info-card span,
.store-menu-summary strong,
.store-menu-summary span,
.store-menu-summary small,
.store-hero-brand h2,
.store-hero-brand p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.partner-metrics div,
.store-menu-summary div {
  overflow: hidden;
}

.menu-category-tabs {
  max-width: 100%;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.public-store-screen .store-menu-panel:has(.menu-category-tabs) {
  overflow: hidden;
}

.premium-fallback-icon {
  width: 42px;
  height: 28px;
  overflow: visible;
  box-sizing: border-box;
}

.premium-fallback-icon::after {
  left: 0;
  right: 0;
}

.premium-fallback-name {
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pede-footer img {
  display: block;
  object-fit: contain;
}

.social-row {
  flex-wrap: wrap;
}

.social-icon {
  overflow: hidden;
}

.social-icon svg {
  display: block;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .pede-phone-mock,
  .pede-delivery-rider {
    display: none;
  }
}

@media (max-width: 520px) {
  .pede-how-steps article {
    min-height: 154px;
  }

  .pede-how-steps span {
    height: 86px;
    border-radius: 18px;
  }

  .pede-how-steps b {
    left: calc(50% - 86px);
    top: 38px;
  }

  .public-store-screen .store-menu-hero p {
    font-size: 0.88rem;
  }

  .premium-fallback-icon {
    width: 34px;
    height: 24px;
  }
}

/* V89 delivery premium super app. */
.pede-delivery-landing {
  --pede-black: #050505;
  --pede-ink: #111111;
  --pede-yellow: #ffc400;
  --pede-yellow-soft: #ffe27a;
  --pede-surface: #ffffff;
  --pede-muted: #666666;
  background:
    linear-gradient(180deg, #f4f1e8 0, #f8f8f6 360px, #f1f2ed 100%);
  color: var(--pede-ink);
}

.pede-delivery-landing .pede-landing-header {
  top: 12px;
  width: min(1180px, calc(100% - 24px));
  min-height: 74px;
  margin: 12px auto 0;
  padding: 12px 18px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.86), rgba(22, 22, 20, 0.72)),
    rgba(5, 5, 5, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(140%);
}

.pede-delivery-landing .pede-landing-brand {
  width: 218px;
}

.pede-delivery-landing .pede-landing-nav {
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.pede-delivery-landing .pede-landing-nav a {
  padding: 9px 11px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.82);
}

.pede-delivery-landing .pede-landing-nav a::after {
  display: none;
}

.pede-delivery-landing .pede-landing-nav a:hover,
.pede-delivery-landing .pede-landing-nav a.is-active {
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--pede-yellow), var(--pede-yellow-soft));
  box-shadow: 0 10px 26px rgba(255, 196, 0, 0.22);
}

.pede-delivery-landing .pede-login-button,
.pede-delivery-landing .pede-register-button,
.pede-delivery-landing .pede-cta {
  border-radius: 8px;
}

.pede-delivery-landing .pede-login-button {
  background: rgba(255, 255, 255, 0.08);
}

.pede-delivery-landing .pede-register-button,
.pede-delivery-landing .pede-cta.yellow {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent 34%),
    linear-gradient(135deg, var(--pede-yellow), var(--pede-yellow-soft));
  box-shadow: 0 18px 44px rgba(255, 196, 0, 0.28);
}

.pede-delivery-landing .pede-cta.ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.pede-delivery-landing .pede-hero {
  min-height: calc(100svh - 98px);
  padding: 84px 56px 78px;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.98) 0%, rgba(8, 8, 8, 0.94) 42%, rgba(17, 17, 13, 0.74) 100%),
    radial-gradient(circle at 72% 22%, rgba(255, 196, 0, 0.22), transparent 34%),
    linear-gradient(180deg, #040404, #10100e);
}

.pede-delivery-landing .pede-hero::after {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 34px 34px, 96px 96px, 96px 96px;
  opacity: 0.7;
}

.pede-premium-particles {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 196, 0, 0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 68% 18%, rgba(255, 255, 255, 0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 64%, rgba(255, 196, 0, 0.2) 0 1px, transparent 2px);
  background-size: 160px 160px, 220px 220px, 190px 190px;
  opacity: 0.82;
  animation: pedeParticleDrift 12s linear infinite;
}

.pede-delivery-landing .pede-motion-glow {
  right: 0;
  top: 6%;
  width: 62%;
  height: 82%;
  background:
    radial-gradient(ellipse at center, rgba(255, 196, 0, 0.22), transparent 62%),
    linear-gradient(90deg, transparent, rgba(255, 196, 0, 0.08), transparent);
  filter: blur(14px);
}

.pede-delivery-landing .pede-hero-copy h1 {
  max-width: 760px;
  font-size: 5rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.pede-delivery-landing .pede-hero-copy > p:not(.pede-kicker) {
  max-width: 620px;
  font-size: 1.32rem;
  color: rgba(255, 255, 255, 0.84);
}

.pede-delivery-landing .pede-hero-buttons .pede-cta {
  min-width: 184px;
  min-height: 64px;
}

.pede-phone-mock {
  right: 18%;
  top: 8%;
  width: min(340px, 28vw);
  min-height: 610px;
  padding: 22px;
  background:
    linear-gradient(180deg, #171717, #090909);
  border: 9px solid #242424;
  border-radius: 32px;
  box-shadow:
    0 42px 100px rgba(0, 0, 0, 0.74),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 70px rgba(255, 196, 0, 0.18);
}

.phone-top {
  justify-content: space-between;
  margin-bottom: 18px;
}

.phone-top em {
  padding: 5px 8px;
  color: #0b0b0b;
  background: #35f097;
  border-radius: 8px;
  font-size: 0.68rem;
  font-style: normal;
  text-transform: uppercase;
}

.phone-search {
  min-height: 46px;
  padding: 14px 15px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 850;
}

.phone-category-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0;
}

.phone-category-row span {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: #0a0a0a;
  background: #ffffff;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 950;
}

.phone-order-card {
  display: grid;
  gap: 4px;
  min-height: 126px;
  margin-top: 12px;
  padding: 16px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.phone-order-card.is-hot {
  color: #0a0a0a;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 38%),
    linear-gradient(135deg, var(--pede-yellow), var(--pede-yellow-soft));
}

.phone-order-card small,
.phone-order-card span {
  font-weight: 850;
  opacity: 0.76;
}

.phone-order-card strong {
  font-size: 1.55rem;
  line-height: 1;
}

.phone-bottom-nav {
  position: absolute;
  right: 34px;
  bottom: 20px;
  left: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.phone-bottom-nav b {
  display: block;
  height: 8px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.phone-bottom-nav b:first-child {
  background: var(--pede-yellow);
}

.pede-floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  width: 210px;
  padding: 14px;
  color: #ffffff;
  background: rgba(10, 10, 10, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  animation: pedeFloatCard 5s ease-in-out infinite;
}

.pede-floating-card strong {
  color: var(--pede-yellow);
}

.pede-floating-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
}

.pede-floating-card.eta {
  right: 42%;
  bottom: 15%;
}

.pede-floating-card.stores {
  right: 5%;
  top: 19%;
  animation-delay: 0.8s;
}

.pede-quick-categories {
  padding: 52px 56px 38px;
  background:
    linear-gradient(180deg, #f8f8f6, #efeee8);
}

.pede-quick-categories .pede-section-head {
  max-width: 1180px;
  margin-inline: auto;
}

.pede-quick-categories .pede-section-head h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.pede-category-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 22px auto 0;
}

.pede-category-rail a {
  display: grid;
  gap: 8px;
  min-height: 182px;
  padding: 18px;
  color: #111111;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pede-category-rail a:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 196, 0, 0.52);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.13);
}

.category-glyph {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #0a0a0a;
  background: var(--category-bg, var(--pede-yellow));
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.12);
}

.category-glyph::before {
  content: "";
  width: 34px;
  height: 34px;
  background: var(--category-icon) center / contain no-repeat;
}

.category-glyph.pizza { --category-bg: #ffc400; }
.category-glyph.bakery { --category-bg: #ffffff; }
.category-glyph.market { --category-bg: #2dda76; }
.category-glyph.butcher { --category-bg: #9d1419; }
.category-glyph.pharma { --category-bg: #49a7ff; }
.category-glyph.store { --category-bg: #ffd85b; }

.category-glyph.pizza::before {
  --category-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23111111' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 48h40'/%3E%3Cpath d='M16 48c2-18 10-30 16-34 6 4 14 16 16 34'/%3E%3Cpath d='M23 34h.1M32 27h.1M41 38h.1'/%3E%3C/svg%3E");
}

.category-glyph.bakery::before {
  --category-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23111111' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 38c0-11 8-20 18-20s18 9 18 20v6H14v-6z'/%3E%3Cpath d='M22 32c4 1 7 1 10 0M32 26c3 2 7 3 12 3'/%3E%3Cpath d='M12 44h40'/%3E%3C/svg%3E");
}

.category-glyph.market::before {
  --category-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23111111' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 28h34l-5 20H23l-5-20z'/%3E%3Cpath d='M24 28l8-12 8 12'/%3E%3Cpath d='M28 36v6M38 36v6'/%3E%3Ccircle cx='24' cy='52' r='2'/%3E%3Ccircle cx='46' cy='52' r='2'/%3E%3C/svg%3E");
}

.category-glyph.butcher::before {
  --category-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23ffffff' stroke-width='4.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 38c0-9 7-17 16-17 7 0 12 4 14 10 3 1 5 4 5 8 0 7-6 12-15 12H26c-5 0-8-4-8-8v-5z'/%3E%3Cpath d='M24 39c5-2 10-2 15 1'/%3E%3Cpath d='M31 30c3 2 6 2 10 1'/%3E%3Cpath d='M14 18l10 10'/%3E%3Cpath d='M16 14l12 12'/%3E%3C/svg%3E");
}

.category-glyph.pharma::before {
  --category-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23111111' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='14' y='21' width='36' height='29' rx='7'/%3E%3Cpath d='M25 21v-6h14v6'/%3E%3Cpath d='M32 30v12M26 36h12'/%3E%3C/svg%3E");
}

.category-glyph.store::before {
  --category-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23111111' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 27h34l-3-12H18l-3 12z'/%3E%3Cpath d='M17 27v22h30V27'/%3E%3Cpath d='M24 49V37h16v12'/%3E%3Cpath d='M15 27c0 5 7 5 7 0 0 5 7 5 7 0 0 5 7 5 7 0 0 5 7 5 7 0'/%3E%3C/svg%3E");
}

.pede-category-rail strong {
  font-size: 1.08rem;
}

.pede-category-rail small {
  color: #555555;
  font-weight: 760;
  line-height: 1.35;
}

.pede-delivery-live-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 22px 56px 54px;
  background: #efeee8;
}

.pede-delivery-live-band article {
  min-height: 150px;
  padding: 18px;
  background: #101010;
  border: 1px solid rgba(255, 196, 0, 0.2);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

.pede-delivery-live-band span {
  color: var(--pede-yellow);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pede-delivery-live-band strong,
.pede-delivery-live-band small {
  display: block;
}

.pede-delivery-live-band strong {
  margin-top: 10px;
  color: #ffffff;
  font-size: 1.32rem;
}

.pede-delivery-live-band small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 760;
  line-height: 1.42;
}

.pede-services,
.pede-how,
.pede-featured-stores,
.pede-partner-zone {
  padding-inline: 56px;
}

.pede-delivery-landing .pede-services h2,
.pede-delivery-landing .pede-how h2 {
  font-size: 2.65rem;
  letter-spacing: 0;
}

.pede-delivery-landing .pede-service-grid article {
  border-radius: 8px;
}

.pede-featured-stores {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.98), rgba(20, 18, 11, 0.96)),
    #050505;
  border-top: 1px solid rgba(255, 196, 0, 0.16);
}

.pede-featured-stores .pede-section-head {
  max-width: 980px;
}

.pede-featured-stores .pede-section-head h2 {
  color: #ffffff;
  font-size: 2.35rem;
  letter-spacing: 0;
}

.pede-featured-stores .pede-section-head a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: #0b0b0b;
  background: var(--pede-yellow);
  border-radius: 8px;
}

.pede-store-carousel {
  width: min(100%, 980px);
  display: grid !important;
  grid-template-columns: minmax(0, 560px) minmax(260px, 1fr);
  gap: 20px;
  overflow: visible;
  padding: 0;
}

.pede-store-stage {
  position: relative;
  overflow: hidden;
  padding: 2px 2px 34px;
}

.pede-store-slide .pede-store-card a,
.pede-store-slide .pede-store-card.loading {
  min-height: 348px;
  background:
    linear-gradient(180deg, #ffffff, #f5f3ed);
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
}

.pede-store-card a:hover {
  transform: translateY(-4px) scale(1.01);
}

.store-photo {
  min-height: 176px;
}

.store-photo .store-eta-pill,
.store-photo > span {
  position: absolute;
  right: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #0b0b0b;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.store-photo-line {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.84), transparent);
  border-radius: 8px;
}

.store-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 16px 16px;
  padding: 12px;
  color: #111111;
  background: rgba(255, 196, 0, 0.16);
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: 8px;
  font-weight: 950;
}

.store-card-action strong {
  color: #0b0b0b;
}

.pede-store-live-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 348px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.pede-store-live-panel h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.62rem;
  line-height: 1.12;
}

.pede-store-live-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 760;
  line-height: 1.45;
}

.pede-live-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pede-live-metrics div {
  padding: 12px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.pede-live-metrics strong,
.pede-live-metrics span {
  display: block;
}

.pede-live-metrics strong {
  color: var(--pede-yellow);
}

.pede-live-metrics span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.pede-store-card.loading {
  position: relative;
}

.pede-store-card.loading .store-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  animation: pedeSkeletonSweep 1.5s ease-in-out infinite;
}

.delivery-shop-screen {
  width: min(100%, 1280px);
  gap: 16px;
}

.delivery-shop-screen .store-menu-hero,
.delivery-shop-screen .store-menu-panel {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top: 1px solid rgba(255, 196, 0, 0.44);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.36);
}

.delivery-shop-screen .store-menu-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.42fr);
  gap: 20px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.98), rgba(17, 16, 10, 0.92)),
    #070707;
}

.delivery-shop-screen .store-menu-hero::after {
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.84), rgba(4, 4, 4, 0.5) 56%, rgba(4, 4, 4, 0.78)),
    radial-gradient(circle at 80% 18%, rgba(255, 196, 0, 0.18), transparent 40%);
}

.delivery-shop-screen .store-menu-banner {
  opacity: 0.36;
  filter: saturate(1.08) contrast(1.04);
}

.delivery-shop-screen .store-hero-logo {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  border-color: rgba(255, 196, 0, 0.42);
}

.delivery-shop-screen .store-menu-hero h2 {
  font-size: 3.65rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.store-hero-live-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.store-hero-live-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  color: #0b0b0b;
  background: rgba(255, 196, 0, 0.92);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 950;
}

.delivery-shop-screen .store-menu-summary {
  align-self: stretch;
  grid-template-columns: 1fr;
}

.delivery-shop-screen .store-menu-summary div {
  min-height: 86px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
}

.delivery-shop-screen .store-menu-summary strong {
  color: var(--premium-yellow, #ffc400);
}

.delivery-shop-screen .store-order-form {
  grid-template-columns: 1fr;
}

.delivery-shop-screen .store-order-form > .store-menu-panel:not(.store-checkout-panel) {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(10, 10, 10, 0.98));
}

.delivery-menu-head {
  align-items: end;
}

.delivery-menu-head h2 {
  margin: 4px 0 0;
  color: #ffffff;
  font-size: 1.72rem;
  letter-spacing: 0;
}

.delivery-menu-search {
  display: block;
  margin: 12px 0;
}

.delivery-menu-search span {
  display: block;
  margin-bottom: 6px;
  color: rgba(248, 250, 252, 0.72);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.delivery-menu-search input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 850;
}

.delivery-menu-search input:focus {
  outline: 3px solid rgba(255, 196, 0, 0.22);
  border-color: rgba(255, 196, 0, 0.62);
}

.delivery-shop-screen .menu-category-tabs {
  position: sticky;
  top: 8px;
  z-index: 6;
  margin: 10px 0 14px;
  padding: 8px;
  background: rgba(10, 10, 10, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.delivery-shop-screen .menu-category-tabs a {
  border-radius: 8px;
}

.delivery-shop-screen .delivery-product-grid {
  gap: 16px;
}

.delivery-shop-screen .delivery-product-card.premium-product-card {
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.delivery-shop-screen .delivery-product-card.premium-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 196, 0, 0.38);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.32);
}

.delivery-shop-screen .delivery-product-card.premium-product-card .delivery-product-photo {
  border-radius: 8px;
}

.delivery-shop-screen .premium-product-card .delivery-product-copy strong {
  color: #ffffff;
  letter-spacing: 0;
}

.delivery-shop-screen .premium-product-card .delivery-product-copy p {
  color: rgba(248, 250, 252, 0.72);
}

.delivery-shop-screen .premium-product-card .delivery-product-buy > strong {
  color: var(--premium-yellow, #ffc400);
}

.delivery-shop-screen .delivery-stepper {
  overflow: hidden;
  border: 1px solid rgba(255, 196, 0, 0.22);
  border-radius: 8px;
}

.delivery-shop-screen .delivery-stepper button {
  color: #0b0b0b;
  background: var(--premium-yellow, #ffc400);
}

.delivery-shop-screen .delivery-stepper input {
  background: rgba(255, 255, 255, 0.08);
}

.delivery-search-empty {
  margin-top: 12px;
}

.delivery-shop-screen .delivery-cart-dock {
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -20px 58px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.delivery-shop-screen .store-checkout-panel {
  width: min(460px, calc(100vw - 36px));
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.99), rgba(8, 8, 8, 0.99));
}

.delivery-shop-screen .delivery-checkout-close {
  border-radius: 8px;
}

.butcher-shop-screen {
  --premium-yellow: #f4c76a;
}

.butcher-shop-screen .store-menu-hero {
  min-height: 360px;
  background:
    linear-gradient(105deg, rgba(6, 6, 6, 0.98) 0 38%, rgba(68, 11, 13, 0.9) 70%, rgba(13, 8, 5, 0.98)),
    #070707;
}

.butcher-shop-screen .store-menu-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 70% 35%, rgba(205, 31, 36, 0.22), transparent 35%),
    linear-gradient(90deg, rgba(244, 199, 106, 0.1), transparent 42%);
  pointer-events: none;
}

.butcher-shop-screen .store-menu-hero-content,
.butcher-shop-screen .store-menu-summary {
  position: relative;
  z-index: 2;
}

.butcher-shop-screen .store-menu-hero h2 {
  color: #fff8e6;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.46);
}

.butcher-shop-screen .store-hero-logo {
  background: linear-gradient(145deg, rgba(244, 199, 106, 0.18), rgba(134, 17, 20, 0.68));
  border-color: rgba(244, 199, 106, 0.58);
}

.butcher-shop-screen .store-hero-live-row span {
  color: #170707;
  background: linear-gradient(135deg, #f4c76a, #dca344);
}

.butcher-shop-screen .menu-category-tabs a {
  color: #ffe8b3;
  border-color: rgba(244, 199, 106, 0.2);
}

.butcher-shop-screen .delivery-product-card.premium-product-card {
  background:
    linear-gradient(180deg, rgba(32, 14, 13, 0.98), rgba(12, 9, 8, 0.98));
  border-color: rgba(244, 199, 106, 0.16);
}

.butcher-shop-screen .delivery-product-card.premium-product-card:hover {
  border-color: rgba(244, 199, 106, 0.52);
  box-shadow: 0 26px 70px rgba(85, 8, 10, 0.44), 0 0 0 1px rgba(244, 199, 106, 0.1);
}

.butcher-shop-screen .delivery-product-card.premium-product-card .delivery-product-photo.butcher {
  background:
    radial-gradient(circle at 52% 40%, rgba(244, 199, 106, 0.18) 0 22%, transparent 23%),
    linear-gradient(145deg, #731418, #180706 60%, #070504);
}

.butcher-shop-screen .product-tags span {
  color: #230707;
  background: linear-gradient(135deg, #f4c76a, #dfaa45);
}

.butcher-shop-screen .delivery-addon-choice legend,
.butcher-shop-screen .delivery-flavor-choice legend {
  color: #f4c76a;
}

.butcher-shop-screen .delivery-addons label:has(input:checked) {
  color: #1a0707;
  background: linear-gradient(135deg, #f4c76a, #e0a43d);
  border-color: rgba(244, 199, 106, 0.85);
}

@keyframes pedeParticleDrift {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 160px 160px, -220px 220px, 190px -190px; }
}

@keyframes pedeFloatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pedeSkeletonSweep {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(110%); }
}

@media (max-width: 1120px) {
  .pede-delivery-landing .pede-landing-header {
    width: calc(100% - 20px);
  }

  .pede-delivery-landing .pede-hero {
    grid-template-columns: 1fr;
  }

  .pede-delivery-landing .pede-hero-copy h1 {
    font-size: 4rem;
  }

  .pede-category-rail,
  .pede-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pede-store-carousel {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .pede-store-live-panel {
    min-height: 0;
  }

  .delivery-shop-screen .store-menu-hero {
    grid-template-columns: 1fr;
  }

  .delivery-shop-screen .store-menu-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .pede-delivery-landing .pede-landing-header {
    top: 0;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .pede-delivery-landing .pede-hero {
    min-height: auto;
    padding: 64px 22px;
  }

  .pede-delivery-landing .pede-hero-copy h1 {
    font-size: 3.25rem;
  }

  .pede-delivery-landing .pede-hero-copy > p:not(.pede-kicker) {
    font-size: 1.08rem;
  }

  .pede-floating-card {
    display: none;
  }

  .pede-quick-categories,
  .pede-services,
  .pede-how,
  .pede-featured-stores,
  .pede-partner-zone {
    padding-inline: 22px;
  }

  .pede-delivery-live-band {
    padding-inline: 22px;
    grid-template-columns: 1fr;
  }

  .pede-category-rail,
  .pede-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pede-delivery-landing .pede-landing-actions {
    display: none;
  }

  .pede-delivery-landing .pede-hero {
    padding: 48px 16px 56px;
  }

  .pede-delivery-landing .pede-hero-copy h1 {
    font-size: 2.7rem;
  }

  .pede-delivery-landing .pede-hero-buttons .pede-cta {
    width: 100%;
    min-height: 58px;
  }

  .pede-trust-points,
  .pede-category-rail,
  .pede-service-grid,
  .pede-how-steps,
  .delivery-shop-screen .store-menu-summary {
    grid-template-columns: 1fr;
  }

  .pede-category-rail a {
    min-height: 132px;
  }

  .pede-delivery-landing .pede-services h2,
  .pede-delivery-landing .pede-how h2,
  .pede-quick-categories .pede-section-head h2,
  .pede-featured-stores .pede-section-head h2 {
    font-size: 2rem;
  }

  .delivery-shop-screen .store-menu-hero {
    padding: 18px;
  }

  .delivery-shop-screen .store-hero-brand {
    align-items: flex-start;
  }

  .delivery-shop-screen .store-hero-logo {
    width: 68px;
    height: 68px;
  }

  .delivery-shop-screen .store-menu-hero h2 {
    font-size: 2.2rem;
  }

  .delivery-menu-head {
    align-items: start;
  }

  .delivery-shop-screen .menu-category-tabs {
    top: 0;
  }
}

/* V91 configurable cart lines for delivery menus. */
.delivery-add-button {
  width: 100%;
  min-height: 40px;
}

.delivery-product-buy > small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: right;
}

.delivery-cart-row {
  align-items: flex-start;
}

.delivery-cart-row-side {
  display: grid;
  justify-items: end;
  gap: 7px;
  flex: 0 0 auto;
}

.delivery-line-actions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.delivery-line-actions button,
.delivery-line-actions b {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  min-height: 28px;
  padding: 0 8px;
  color: #0a0a0a;
  background: #ffc400;
  border: 0;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 950;
}

.delivery-line-actions b {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.delivery-line-actions .remove-line {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 520px) {
  .delivery-product-buy > small {
    text-align: left;
  }

  .delivery-cart-row {
    display: grid;
  }

  .delivery-cart-row-side {
    width: 100%;
    justify-items: stretch;
  }

  .delivery-line-actions {
    justify-content: space-between;
  }
}

/* V92 centered floating home icons on mobile. */
@media (max-width: 640px) {
  .pede-category-rail a,
  .pede-service-grid article {
    justify-items: center;
    align-content: center;
    text-align: center;
  }

  .pede-category-rail a {
    min-height: 164px;
    padding: 22px 18px;
    border-color: rgba(17, 17, 17, 0.07);
    box-shadow: 0 20px 56px rgba(17, 17, 17, 0.1);
  }

  .category-glyph,
  .service-icon {
    margin-inline: auto;
    transform: translateY(-3px);
  }

  .category-glyph {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.14);
  }

  .category-glyph::before {
    width: 39px;
    height: 39px;
  }

  .pede-category-rail strong,
  .pede-service-grid strong {
    width: 100%;
    max-width: 250px;
  }

  .pede-category-rail small,
  .pede-service-grid small {
    width: 100%;
    max-width: 270px;
    margin-inline: auto;
  }
}

/* V94 home as transport + delivery super app, with official social channels. */
.pede-delivery-landing .pede-landing-nav a {
  white-space: nowrap;
}

.pede-delivery-landing .pede-cta.dark {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.16), transparent 42%),
    #111111;
  border: 1px solid rgba(255, 196, 0, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.pede-transport-entry {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 20px;
  padding: 72px 56px 42px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 196, 0, 0.18), transparent 28%),
    linear-gradient(180deg, #f8f8f6, #efeee8);
}

.pede-transport-copy,
.pede-transport-grid {
  max-width: 1180px;
}

.pede-transport-copy {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 330px;
  padding: 30px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.18), transparent 42%),
    linear-gradient(145deg, #080808, #171714);
  border: 1px solid rgba(255, 196, 0, 0.22);
  border-radius: 8px;
  box-shadow: 0 26px 78px rgba(17, 17, 17, 0.2);
}

.pede-transport-copy h2 {
  margin: 0;
  max-width: 620px;
  color: #ffffff;
  font-size: 2.6rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.pede-transport-copy p:not(.pede-kicker) {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 760;
  line-height: 1.55;
}

.pede-transport-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.pede-transport-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.pede-transport-grid article {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 330px;
  padding: 20px;
  color: #111111;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 68px rgba(17, 17, 17, 0.11);
}

.pede-transport-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 196, 0, 0.24), transparent 31%),
    linear-gradient(180deg, transparent, rgba(255, 196, 0, 0.08));
  pointer-events: none;
}

.pede-transport-grid article > * {
  position: relative;
}

.transport-icon {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin-bottom: auto;
  color: #111111;
  background: #ffc400;
  border-radius: 50%;
  box-shadow: 0 20px 46px rgba(255, 196, 0, 0.24);
}

.transport-icon::before {
  content: "";
  width: 44px;
  height: 44px;
  background: var(--transport-icon) center / contain no-repeat;
}

.transport-icon.ride::before,
.category-glyph.ride::before {
  --transport-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23111111' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 38l5-13c1-3 3-5 7-5h12c4 0 6 2 7 5l5 13'/%3E%3Cpath d='M13 38h38v10H13z'/%3E%3Cpath d='M20 48a4 4 0 1 0 8 0M36 48a4 4 0 1 0 8 0'/%3E%3Cpath d='M24 29h16M10 31h7M47 31h7'/%3E%3C/svg%3E");
  background-image: var(--transport-icon);
}

.transport-icon.driver::before {
  --transport-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23111111' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='22' r='10'/%3E%3Cpath d='M18 53c2-10 8-16 14-16s12 6 14 16'/%3E%3Cpath d='M20 20c4-7 20-7 24 0'/%3E%3Cpath d='M24 34c5 4 11 4 16 0'/%3E%3C/svg%3E");
  background-image: var(--transport-icon);
}

.transport-icon.delivery::before {
  --transport-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23111111' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 40h8l5-18h19l6 18h4'/%3E%3Cpath d='M24 22l7-8h14l-2 8'/%3E%3Ccircle cx='22' cy='45' r='6'/%3E%3Ccircle cx='47' cy='45' r='6'/%3E%3Cpath d='M28 40h13M9 29h8M7 35h9'/%3E%3C/svg%3E");
  background-image: var(--transport-icon);
}

.pede-transport-grid strong {
  font-size: 1.24rem;
}

.pede-transport-grid small {
  color: #555555;
  font-weight: 760;
  line-height: 1.45;
}

.pede-category-rail {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.category-glyph.ride {
  --category-bg: #111111;
  color: #ffc400;
}

.category-glyph.ride::before {
  --transport-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23ffc400' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 38l5-13c1-3 3-5 7-5h12c4 0 6 2 7 5l5 13'/%3E%3Cpath d='M13 38h38v10H13z'/%3E%3Cpath d='M20 48a4 4 0 1 0 8 0M36 48a4 4 0 1 0 8 0'/%3E%3Cpath d='M24 29h16M10 31h7M47 31h7'/%3E%3C/svg%3E");
  background-image: var(--transport-icon);
}

.social-icon {
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  filter: saturate(1.15);
}

.social-icon.instagram {
  background:
    radial-gradient(circle at 28% 100%, #ffd95b 0 20%, transparent 21%),
    linear-gradient(135deg, #6d45ff, #e43f8d 52%, #ff7a00);
}

.social-icon.tiktok {
  background:
    linear-gradient(135deg, rgba(37, 244, 238, 0.92), transparent 32%),
    linear-gradient(315deg, rgba(254, 44, 85, 0.9), transparent 36%),
    #080808;
}

.social-icon.facebook {
  background: #1877f2;
}

.social-icon.whatsapp {
  background: #19b45b;
}

@media (max-width: 1180px) {
  .pede-delivery-landing .pede-landing-brand {
    width: 170px;
  }

  .pede-delivery-landing .pede-landing-nav a {
    padding-inline: 8px;
    font-size: 0.74rem;
  }
}

@media (max-width: 760px) {
  .pede-delivery-landing .pede-landing-header {
    gap: 12px;
  }

  .pede-delivery-landing .pede-landing-brand {
    width: min(230px, 78vw);
  }

  .pede-delivery-landing .pede-landing-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    padding: 6px;
  }

  .pede-delivery-landing .pede-landing-nav a {
    padding: 10px 13px;
    font-size: 0.86rem;
  }
}

@media (max-width: 1120px) {
  .pede-transport-entry {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .pede-transport-entry {
    padding: 52px 22px 34px;
  }

  .pede-transport-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pede-transport-copy h2 {
    font-size: 2.25rem;
  }

  .pede-delivery-landing .pede-landing-nav {
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .pede-delivery-landing .pede-landing-nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 640px) {
  .pede-transport-entry {
    padding: 42px 16px 30px;
  }

  .pede-transport-copy {
    min-height: auto;
    padding: 24px 20px;
  }

  .pede-transport-copy h2 {
    font-size: 2rem;
  }

  .pede-transport-actions .pede-cta {
    width: 100%;
  }

  .pede-transport-grid {
    grid-template-columns: 1fr;
  }

  .pede-transport-grid article {
    justify-items: center;
    min-height: 226px;
    text-align: center;
  }

  .transport-icon {
    width: 76px;
    height: 76px;
    margin-inline: auto;
  }
}

/* V95 mobile responsiveness pass. */
.pede-store-dots {
  min-height: 36px;
  align-items: center;
}

.pede-store-dots button {
  position: relative;
  width: 44px;
  min-width: 44px;
  height: 36px;
  min-height: 36px;
  background: transparent;
}

.pede-store-dots button::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 50%;
  height: 8px;
  transform: translateY(-50%);
  background: rgba(17, 17, 17, 0.18);
  border-radius: 999px;
}

.pede-store-dots button.is-active {
  width: 54px;
  min-width: 54px;
  background: transparent;
}

.pede-store-dots button.is-active::before {
  left: 4px;
  right: 4px;
  background: #ffc400;
}

.inline-auth-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
}

.pede-footer > div > a {
  display: flex;
  align-items: center;
  min-height: 34px;
}

.app-body:not(.is-public-auth) .ghost-button {
  min-height: 40px;
}

.app-body:not(.is-public-auth) #logoutButton {
  min-height: 40px;
}

.doc-view-button {
  min-width: 42px;
  min-height: 34px;
}

.app-body:not(.is-public-auth) .screen,
.app-body:not(.is-public-auth) .panel,
.app-body:not(.is-public-auth) .list,
.app-body:not(.is-public-auth) .list-item {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .app-body:not(.is-public-auth) .mobile-nav {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .app-body:not(.is-public-auth) .mobile-nav::-webkit-scrollbar {
    display: none;
  }

  .app-body:not(.is-public-auth) .mobile-nav a {
    flex: 0 0 46px;
    min-width: 46px;
    min-height: 46px;
    padding: 0 10px;
  }

  .app-body:not(.is-public-auth) .mobile-nav a.is-active {
    flex: 0 0 auto;
    min-width: 108px;
  }

  .app-body:not(.is-public-auth) .nav-icon {
    width: 22px;
    height: 22px;
  }

  .app-body:not(.is-public-auth) .list-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pede-category-rail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .public-store-screen .delivery-product-card.premium-product-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  .public-store-screen .delivery-product-card.premium-product-card .delivery-product-photo {
    width: 88px;
  }

  .public-store-screen .premium-product-card .delivery-product-copy,
  .public-store-screen .premium-product-card .delivery-product-buy {
    grid-column: 1;
    width: 100%;
  }

  .public-store-screen .premium-product-card .delivery-product-copy p {
    -webkit-line-clamp: 2;
  }

  .public-store-screen .delivery-flavor-choice > div,
  .public-store-screen .delivery-addon-choice > div,
  .public-store-screen .delivery-addon-loose,
  .public-store-screen .premium-product-card .delivery-addons {
    grid-template-columns: 1fr;
  }

  .public-store-screen .delivery-flavor-choice label,
  .public-store-screen .delivery-addon-choice label,
  .public-store-screen .delivery-addon-loose label,
  .public-store-screen .premium-product-card .delivery-addons label {
    min-height: 44px;
  }

  .public-store-screen .premium-product-card .delivery-product-buy {
    justify-items: stretch;
    align-items: stretch;
  }

  .public-store-screen .premium-product-card .delivery-product-buy > strong,
  .public-store-screen .premium-product-card .delivery-product-buy > small {
    text-align: left;
  }
}
