:root {
  /* Theme 4: Minimal Apple-style clean white/gray */
  --theme-background: #f3f4f6;
  --theme-background-top: #fbfcfc;
  --theme-background-bottom: #edf2f2;
  --theme-card: #ffffff;
  --theme-card-soft: #f8fbfb;
  --theme-card-tint: #f5fbfa;
  --theme-text-primary: #111214;
  --theme-text-secondary: #6b7280;
  --theme-border: #e5e7eb;
  --theme-border-strong: #cad9d7;
  --theme-primary: #2c9c93;
  --theme-primary-soft: #dff3f1;
  --theme-primary-tint: rgba(44, 156, 147, 0.08);
  --theme-primary-tint-strong: rgba(44, 156, 147, 0.16);
  --theme-accent: #2c9c93;
  --theme-danger: #dc2626;
  --theme-success-soft: #eef9f7;
  --theme-warning-bg: #fef3c7;
  --theme-warning-text: #92400e;
  --theme-placeholder-start: #e3f2ef;
  --theme-placeholder-end: #d3e7e3;
  --theme-shadow-subtle: 0 8px 20px rgba(17, 24, 39, 0.06);
  --theme-shadow-card: 0 14px 34px rgba(17, 24, 39, 0.08);
  --theme-shadow-float: 0 10px 24px rgba(17, 24, 39, 0.1);
  --theme-backdrop: rgba(255, 255, 255, 0.86);

  /* Compatibility aliases */
  --bg: var(--theme-background);
  --surface: var(--theme-card);
  --surface-soft: var(--theme-card-soft);
  --text: var(--theme-text-primary);
  --muted: var(--theme-text-secondary);
  --line: var(--theme-border);
  --brand: var(--theme-primary);
  --brand-soft: var(--theme-primary-soft);
  --accent: var(--theme-accent);
  --shadow: var(--theme-shadow-card);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(44, 156, 147, 0.08) 0%, rgba(44, 156, 147, 0) 28%),
    linear-gradient(180deg, var(--theme-background-top) 0%, var(--bg) 34%, var(--theme-background-bottom) 100%);
  color: var(--text);
}

button,
input {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 16px 24px;
}

.customer-brand-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: 0 0 10px;
}

.customer-brand-button {
  border: none;
  background: transparent;
  padding: 0;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 0;
}

.customer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.customer-brand-home .customer-brand-mark {
  width: 34px;
}

.customer-brand-compact {
  margin-left: 0;
  flex: 0 0 auto;
  align-self: center;
}

.customer-brand-compact .customer-brand-mark {
  width: 34px;
}

.customer-brand-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.hero {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 247, 248, 0.95) 100%);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
}

.hero p {
  margin: 0;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.5;
}

.screen-intro {
  margin-bottom: 14px;
}

.customer-brand-header.search-results-header {
  justify-content: space-between;
  margin-bottom: 6px;
}

.search-results-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 8px;
}

.search-results-intro .screen-label {
  align-self: center;
  margin-bottom: 6px;
}

.search-results-intro h2 {
  margin: 0;
}

.screen-intro h2 {
  margin: 0 0 6px;
  font-size: clamp(24px, 3.5vw, 32px);
}

.screen-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.home-tagline {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--theme-primary-tint);
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.screen-label {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--theme-primary-tint-strong);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.toolbar,
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.floating-back-button {
  position: sticky;
  top: 10px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--theme-backdrop);
  color: var(--text);
  box-shadow: var(--theme-shadow-float);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  padding: 0;
  font-size: 24px;
  font-weight: 900;
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.floating-back-button:active {
  transform: scale(0.97);
}

.customer-brand-header .floating-back-button,
.customer-nav-row .floating-back-button {
  position: static;
  top: auto;
}

.customer-nav-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.customer-nav-meta {
  min-width: 0;
  font-size: 13px;
  line-height: 1.35;
}

.store-detail-nav-row {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.store-detail-nav-title {
  justify-self: center;
  width: 100%;
  max-width: 100%;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mall-nav-row {
  margin-bottom: 6px;
}

.mall-nav-title {
  min-width: 0;
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 820;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.home-top-shell {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 4px;
}

.home-top-shell::before {
  content: "";
  position: absolute;
  inset: -8px -6px 0;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(44, 156, 147, 0.12) 0%, rgba(44, 156, 147, 0.03) 34%, rgba(44, 156, 147, 0) 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(248, 251, 251, 0.28) 100%);
  pointer-events: none;
  z-index: 0;
}

.home-top-shell > * {
  position: relative;
  z-index: 1;
}

.search-wrap {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 251, 250, 0.97) 100%);
  border: 1px solid rgba(44, 156, 147, 0.16);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
  margin-bottom: 14px;
}

.search-wrap input,
.search-input-wrap input {
  width: 100%;
  border: 1px solid rgba(44, 156, 147, 0.22);
  border-radius: 14px;
  padding: 15px 16px;
  background: white;
  font-size: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 8px 18px rgba(17, 24, 39, 0.04);
}

.search-wrap input:focus-visible,
.search-input-wrap input:focus-visible {
  outline: 2px solid rgba(44, 156, 147, 0.22);
  outline-offset: 2px;
}

.home-promo-slot {
  margin-bottom: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(44, 156, 147, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(246, 251, 250, 0.78) 100%);
}

.home-promo-kicker {
  margin-bottom: 4px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.home-promo-summary {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.home-promo-meta {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.sponsored-banner-section {
  margin: 0 0 18px;
}

.sponsored-banner-carousel {
  position: relative;
}

.sponsored-banner-track {
  display: flex;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pinch-zoom;
}

.sponsored-banner-track::-webkit-scrollbar {
  display: none;
}

.sponsored-banner-track:focus-visible {
  outline: 2px solid rgba(44, 156, 147, 0.24);
  outline-offset: 3px;
  border-radius: 24px;
}

.sponsored-banner-slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.sponsored-banner-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 120px;
  padding: 14px;
  border: 1px solid rgba(44, 156, 147, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(44, 156, 147, 0.12) 0%, rgba(255, 255, 255, 0.98) 52%, rgba(247, 251, 250, 0.98) 100%);
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.08);
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

button.sponsored-banner-card {
  appearance: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.sponsored-banner-card:hover,
.sponsored-banner-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(44, 156, 147, 0.28);
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.1);
}

.sponsored-banner-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.sponsored-banner-label {
  margin-bottom: 6px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sponsored-banner-title {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
}

.sponsored-banner-subtitle {
  margin-top: 6px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.sponsored-banner-sponsor {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.sponsored-banner-media {
  flex: 0 0 92px;
  width: 92px;
  height: 92px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(44, 156, 147, 0.12);
}

.sponsored-banner-media-image,
.sponsored-banner-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.sponsored-banner-media-image {
  object-fit: cover;
}

.sponsored-banner-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(44, 156, 147, 0.16) 0%, rgba(44, 156, 147, 0.08) 100%);
  color: #236e68;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.sponsored-banner-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.sponsored-banner-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(44, 156, 147, 0.2);
  box-shadow: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.sponsored-banner-dot.active {
  background: var(--brand);
  transform: scale(1.12);
}

.sponsored-banner-dot:focus-visible {
  outline: 2px solid rgba(44, 156, 147, 0.24);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mall-search-wrap {
  margin-bottom: 16px;
}

.search-input-wrap {
  position: relative;
  width: 100%;
}

.search-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 16px;
  pointer-events: none;
}

.search-input-wrap input {
  padding: 15px 16px 15px 44px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.button {
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  cursor: pointer;
  background: var(--brand);
  color: white;
  min-height: 44px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(44, 156, 147, 0.18);
}

.button.secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}

.button.saved {
  background: var(--brand);
  color: white;
}

.location-permission-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  background: rgba(17, 24, 39, 0.22);
  backdrop-filter: blur(8px);
}

.location-permission-card {
  width: min(100%, 420px);
  padding: 22px 18px 18px;
  border: 1px solid rgba(44, 156, 147, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.16);
}

.location-permission-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--theme-primary-tint);
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.location-permission-card h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 5vw, 30px);
  line-height: 1.15;
}

.location-permission-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.location-permission-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.location-permission-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.location-permission-actions .button,
.location-permission-actions .button.secondary {
  width: 100%;
  justify-content: center;
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

.section {
  margin-bottom: 28px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0;
  font-size: 22px;
}

.section-kicker {
  margin-bottom: 6px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 251, 251, 0.96) 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.mall-detail-card {
  display: grid;
  gap: 14px;
}

.mall-summary-card {
  margin-bottom: 18px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 247, 248, 0.96) 100%);
  border: 1px solid var(--line);
}

.mall-summary-card.compact-first {
  margin-top: 0;
}

.mall-summary-card.minimal {
  padding: 8px 0 12px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.mall-summary-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.mall-summary-copy {
  min-width: 0;
}

.mall-summary-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 5vw, 28px);
  line-height: 1.15;
}

.mall-place-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--theme-primary-tint) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid var(--line);
}

.mall-place-summary.compact {
  padding: 0;
  background: transparent;
  border: none;
}

.mall-place-copy {
  min-width: 0;
}

.mall-place-copy h3 {
  margin: 0 0 8px;
}

.mall-address {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.mall-summary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.mall-summary-meta span {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.mall-place-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--brand);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mall-summary-toggle {
  align-self: center;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 14px;
}

.subtle-action {
  border: 1px solid rgba(44, 156, 147, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(44, 156, 147, 0.14) 100%);
  color: var(--brand);
  border-radius: 999px;
  padding: 10px 16px;
  min-height: 42px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(44, 156, 147, 0.16);
}

.mall-details-panel {
  margin-bottom: 18px;
}

.mall-detail-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  background: var(--theme-placeholder-start);
}

.mall-detail-image,
.mall-detail-placeholder {
  display: block;
  width: 100%;
}

.mall-detail-image {
  max-height: 240px;
  object-fit: cover;
}

.mall-detail-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  max-height: 240px;
  background:
    radial-gradient(circle at top center, rgba(44, 156, 147, 0.16) 0%, rgba(44, 156, 147, 0) 42%),
    linear-gradient(180deg, rgba(12, 20, 22, 0.96) 0%, rgba(19, 36, 38, 0.92) 100%);
  color: rgba(248, 252, 251, 0.76);
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.mall-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.mall-info-tile {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--theme-shadow-subtle);
}

.mall-info-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mall-info-tile strong {
  display: block;
  color: var(--text);
  line-height: 1.45;
}

.mall-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mall-map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.card-subtitle {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.mall-card {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 6px;
  padding: 14px;
  min-height: 0;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.09);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.mall-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.11);
  border-color: rgba(44, 156, 147, 0.18);
}

.mall-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mall-card-brand {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.mall-card-logo-image,
.mall-card-logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mall-card-logo-image {
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  border: 1px solid rgba(44, 156, 147, 0.16);
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.08);
  padding: 6px;
}

.mall-card-logo-placeholder {
  background: linear-gradient(135deg, rgba(44, 156, 147, 0.18) 0%, rgba(44, 156, 147, 0.1) 100%);
  color: var(--brand);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.mall-card-title-group {
  min-width: 0;
}

.mall-card-title-group h3 {
  margin: 0 0 2px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 750;
}

.mall-card-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mall-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  min-height: 0;
}

.mall-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--theme-primary-tint);
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
}

.mall-card-actions {
  margin-top: 2px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.mall-card-map-button {
  text-decoration: none;
  width: auto;
  flex: 0 0 auto;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(44, 156, 147, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.mall-card-map-button:hover,
.mall-card-map-button:focus-visible {
  color: var(--brand);
  border-color: rgba(44, 156, 147, 0.22);
  background: rgba(44, 156, 147, 0.06);
  box-shadow: none;
}

.saved-store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.saved-store-card {
  display: grid;
  gap: 10px;
}

.saved-store-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 0 4px;
  -webkit-overflow-scrolling: touch;
}

.saved-store-icon-button {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  border: none;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.saved-store-icon-image,
.saved-store-icon-placeholder,
.saved-store-more-button span {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.saved-store-icon-image {
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  border: 1px solid rgba(44, 156, 147, 0.16);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
  padding: 8px;
}

.saved-store-icon-placeholder {
  background: linear-gradient(135deg, rgba(44, 156, 147, 0.2) 0%, rgba(44, 156, 147, 0.12) 100%);
  color: #236e68;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.07);
}

.saved-store-more-button span {
  background: var(--theme-primary-tint);
  color: var(--brand);
  border: 1px dashed var(--theme-border-strong);
  font-size: 28px;
  font-weight: 700;
}

.saved-stores-page-grid {
  display: grid;
  gap: 12px;
}

.saved-store-page-card {
  padding: 14px 16px;
}

.saved-store-page-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.saved-store-page-image,
.saved-store-page-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.saved-store-page-image {
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  border: 1px solid rgba(44, 156, 147, 0.16);
  padding: 7px;
}

.saved-store-page-placeholder {
  background: linear-gradient(135deg, rgba(44, 156, 147, 0.18) 0%, rgba(44, 156, 147, 0.1) 100%);
  color: #236e68;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.saved-store-page-copy {
  min-width: 0;
}

.saved-store-page-copy h3 {
  margin: 0 0 4px;
  font-size: 17px;
  line-height: 1.25;
}

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

.store-tile {
  min-height: 110px;
  padding: 10px 9px 9px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 251, 250, 0.97) 100%);
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.1);
  display: grid;
  grid-template-rows: auto minmax(0, 2.2em) minmax(0, 1.2em);
  justify-items: center;
  align-content: start;
  gap: 5px;
  text-align: center;
  aspect-ratio: 0.95 / 1;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.store-tile:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(17, 24, 39, 0.12);
  border-color: rgba(44, 156, 147, 0.18);
}

.store-tile:active {
  transform: scale(0.975);
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.1);
}

.store-tile-media {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
}

.store-tile-logo,
.store-tile-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(44, 156, 147, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.82),
    0 8px 16px rgba(17, 24, 39, 0.08);
  overflow: hidden;
}

.store-tile-logo {
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 9px;
}

.store-tile-placeholder {
  background: linear-gradient(135deg, rgba(44, 156, 147, 0.22) 0%, rgba(44, 156, 147, 0.12) 100%);
  color: #236e68;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.store-tile h3 {
  margin: 0;
  font-size: 13px;
  line-height: 1.1;
  max-width: 100%;
  min-height: 2.2em;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.store-tile-meta {
  max-width: 100%;
  min-height: 1.2em;
  color: rgba(95, 106, 123, 0.72);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  align-self: end;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.store-tile-offer-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 19px;
  max-width: calc(100% - 16px);
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 6px 12px rgba(44, 156, 147, 0.22);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

.store-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 14px;
}

.store-detail-image-wrap {
  margin: 12px 0 14px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--theme-placeholder-start);
  border: 1px solid var(--line);
  box-shadow: var(--theme-shadow-float);
  aspect-ratio: 3 / 1;
  max-height: 140px;
}

.store-detail-image,
.store-detail-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.store-detail-image {
  object-fit: cover;
}

.store-detail-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(44, 156, 147, 0.18) 0%, rgba(44, 156, 147, 0) 48%),
    linear-gradient(180deg, rgba(17, 30, 33, 0.96) 0%, rgba(11, 19, 22, 0.96) 100%);
  color: rgba(248, 252, 251, 0.72);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.action-helper-text {
  margin: -2px 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.category-filter {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  margin-bottom: 16px;
  -webkit-overflow-scrolling: touch;
}

.category-chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 16px;
  white-space: nowrap;
  cursor: pointer;
  min-height: 42px;
  flex: 0 0 auto;
  box-shadow: var(--theme-shadow-subtle);
}

.category-chip.active {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  box-shadow: 0 10px 20px rgba(44, 156, 147, 0.22);
}

.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.visit-guidance-section {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 251, 250, 0.92) 100%);
  box-shadow: var(--theme-shadow-subtle);
}

.visit-guidance-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

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

.visit-guidance-item {
  display: grid;
  gap: 4px;
}

.visit-guidance-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.visit-guidance-value {
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.offer-list {
  display: grid;
  gap: 18px;
}

.new-offers-section {
  background: linear-gradient(180deg, rgba(44, 156, 147, 0.08) 0%, rgba(255, 255, 255, 0.97) 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.section-head-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  vertical-align: middle;
}

.offer-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 251, 0.96) 100%);
  box-shadow: var(--theme-shadow-subtle);
}

.new-offer-card {
  background: var(--surface);
  border-color: var(--theme-border-strong);
}

.clickable-card {
  cursor: pointer;
}

.clickable-card:focus-visible {
  outline: 2px solid rgba(44, 156, 147, 0.36);
  outline-offset: 3px;
}

.offer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.offer-card h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.offer-visibility {
  display: inline-block;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
}

.offer-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.offer-new-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--theme-danger);
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.offer-freshness {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--theme-success-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
}

.offer-time {
  color: var(--theme-warning-text);
  background: var(--theme-warning-bg);
  border-radius: 999px;
  display: inline-block;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.offer-image-wrap {
  margin-bottom: 12px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--theme-placeholder-start);
}

.offer-image,
.offer-image-placeholder {
  display: block;
  width: 100%;
}

.offer-image {
  max-height: 220px;
  object-fit: cover;
}

.offer-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  max-height: 220px;
  background:
    linear-gradient(135deg, rgba(255, 107, 157, 0.16) 0%, rgba(44, 156, 147, 0.12) 100%),
    linear-gradient(180deg, rgba(18, 23, 28, 0.96) 0%, rgba(14, 18, 22, 0.96) 100%);
  color: rgba(248, 252, 251, 0.72);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.offer-description {
  color: var(--muted);
  line-height: 1.6;
}

.empty {
  background: rgba(255, 255, 255, 0.76);
  border: 1px dashed var(--theme-border-strong);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  color: var(--muted);
}

.empty strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.new-offers-empty {
  background: rgba(255, 255, 255, 0.92);
  border-style: solid;
  border-color: var(--line);
}

.new-offers-empty strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.result-group {
  margin-top: 12px;
}

.result-group h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

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

.result-item {
  background: linear-gradient(180deg, rgba(248, 251, 251, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
}

.result-item strong {
  display: block;
  margin-bottom: 3px;
  line-height: 1.3;
}

.result-item .meta {
  margin-bottom: 6px;
}

.search-result-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.search-result-actions .button {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 8px 12px;
  font-size: 13px;
  box-shadow: none;
}

.search-result-map-button {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .home-top-shell::before {
    inset: -6px -2px 2px;
    border-radius: 22px;
  }

  .shell {
    padding: 12px 12px 20px;
  }

  .customer-brand-home .customer-brand-mark {
    width: 34px;
  }

  .customer-brand-compact .customer-brand-mark {
    width: 34px;
  }

  .hero,
  .card,
  .search-wrap,
  .new-offers-section {
    border-radius: 18px;
  }

  .hero {
    padding: 20px;
  }

  .screen-intro {
    margin-bottom: 12px;
  }

  .screen-intro h2 {
    font-size: 26px;
  }

  .section-head h2 {
    font-size: 20px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card {
    padding: 18px 16px;
  }

  .mall-detail-grid {
    grid-template-columns: 1fr;
  }

  .mall-summary-top,
  .mall-place-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .mall-summary-toggle {
    width: 100%;
    justify-content: center;
  }

  .mall-card-actions .wide-mobile,
  .mall-card-actions .mall-card-map-button {
    width: auto;
    justify-content: center;
  }

  .topbar,
  .toolbar,
  .card-footer {
    align-items: stretch;
  }

  .wide-mobile,
  .mall-map-button {
    width: 100%;
    justify-content: center;
  }

  .offer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .offer-card {
    padding: 16px 14px;
  }

  .sponsored-banner-card {
    align-items: stretch;
    gap: 12px;
    padding: 13px;
    min-height: 112px;
  }

  .sponsored-banner-title {
    font-size: 17px;
  }

  .sponsored-banner-media {
    flex-basis: 78px;
    width: 78px;
    height: 78px;
    border-radius: 14px;
  }
}

@media (min-width: 720px) {
  .location-permission-overlay {
    align-items: center;
    padding: 24px;
  }

  .location-permission-card {
    padding: 24px 22px 22px;
  }

  .location-permission-actions {
    grid-template-columns: 1fr 1fr;
  }

  .store-tile-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }
}

/* Pulse Lifestyle theme overrides */
:root {
  --theme-background: #0e0f10;
  --theme-background-top: #16181b;
  --theme-background-bottom: #090a0b;
  --theme-card: #17191b;
  --theme-card-soft: #1d2023;
  --theme-card-tint: #202428;
  --theme-text-primary: #fafaf7;
  --theme-text-secondary: #a5adb5;
  --theme-border: #2a2d31;
  --theme-border-strong: #363b40;
  --theme-primary: #d4ff3c;
  --theme-primary-soft: rgba(212, 255, 60, 0.14);
  --theme-primary-tint: rgba(212, 255, 60, 0.1);
  --theme-primary-tint-strong: rgba(212, 255, 60, 0.18);
  --theme-accent: #d4ff3c;
  --theme-danger: #ff6b9d;
  --theme-success-soft: rgba(212, 255, 60, 0.12);
  --theme-warning-bg: rgba(255, 179, 122, 0.18);
  --theme-warning-text: #ffcf9f;
  --theme-placeholder-start: #23272c;
  --theme-placeholder-end: #171a1d;
  --theme-shadow-subtle: 0 10px 26px rgba(0, 0, 0, 0.22);
  --theme-shadow-card: 0 22px 44px rgba(0, 0, 0, 0.28);
  --theme-shadow-float: 0 16px 30px rgba(0, 0, 0, 0.34);
  --theme-backdrop: rgba(18, 20, 22, 0.88);
  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --bg: var(--theme-background);
  --surface: var(--theme-card);
  --surface-soft: var(--theme-card-soft);
  --text: var(--theme-text-primary);
  --muted: var(--theme-text-secondary);
  --line: var(--theme-border);
  --brand: var(--theme-primary);
  --brand-soft: var(--theme-primary-soft);
  --accent: var(--theme-accent);
  --shadow: var(--theme-shadow-card);
}

html {
  background: #090a0b;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top center, rgba(212, 255, 60, 0.16) 0%, rgba(212, 255, 60, 0) 28%),
    radial-gradient(circle at bottom right, rgba(255, 107, 157, 0.08) 0%, rgba(255, 107, 157, 0) 24%),
    linear-gradient(180deg, var(--theme-background-top) 0%, var(--bg) 34%, var(--theme-background-bottom) 100%);
  color: var(--text);
}

a {
  color: inherit;
}

input::placeholder {
  color: rgba(250, 250, 247, 0.56);
}

.shell {
  max-width: 1080px;
  padding: 14px 14px 26px;
}

.customer-brand-header {
  margin: 0 0 12px;
}

.home-brand-header {
  justify-content: space-between;
}

.customer-brand-button {
  width: 46px;
  height: 46px;
}

.customer-brand-mark {
  width: 100%;
  padding: 9px;
  border-radius: 16px;
  background: rgba(26, 27, 29, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--theme-shadow-subtle);
}

.customer-brand-image {
  filter: saturate(1.08);
}

.home-top-shell {
  margin-bottom: 22px;
  padding-bottom: 0;
}

.home-top-shell::before {
  inset: -10px -4px 0;
  border-radius: 32px;
  background:
    radial-gradient(circle at top center, rgba(212, 255, 60, 0.2) 0%, rgba(212, 255, 60, 0.03) 28%, rgba(212, 255, 60, 0) 60%),
    linear-gradient(180deg, rgba(23, 25, 27, 0.96) 0%, rgba(14, 15, 16, 0.42) 100%);
}

.home-topbar-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(26, 27, 29, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--theme-shadow-subtle);
}

.home-city-pill {
  cursor: pointer;
  appearance: none;
}

.home-city-pill-text {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: min(48vw, 220px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-city-pill-caret {
  color: rgba(250, 250, 247, 0.58);
  font-size: 11px;
  line-height: 1;
}

.home-topbar-dot,
.home-hero-kicker-dot,
.mall-card-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 12px rgba(212, 255, 60, 0.72);
}

.hero,
.card,
.mall-summary-card,
.mall-place-summary,
.mall-info-tile,
.offer-card,
.result-item,
.location-permission-card,
.empty,
.new-offers-section {
  background: linear-gradient(180deg, rgba(24, 26, 28, 0.98) 0%, rgba(18, 20, 22, 0.98) 100%);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: var(--shadow);
}

.hero h1,
.screen-intro h2,
.mall-summary-copy h2,
.section-head h2,
.offer-card h4,
.mall-nav-title,
.store-detail-nav-title {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.screen-intro,
.search-results-intro {
  margin-bottom: 16px;
}

.screen-intro h2 {
  font-size: clamp(28px, 6vw, 38px);
}

.screen-intro p,
.hero p,
.card p,
.meta,
.card-subtitle,
.mall-card-meta,
.action-helper-text,
.offer-description,
.result-item .meta,
.location-permission-note {
  color: var(--muted);
}

.screen-label,
.section-kicker,
.location-permission-eyebrow,
.sponsored-banner-label {
  background: rgba(212, 255, 60, 0.12);
  color: var(--brand);
  border: 1px solid rgba(212, 255, 60, 0.12);
  letter-spacing: 0.14em;
}

.home-hero {
  padding: 8px 2px 4px;
}

.home-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-hero h1 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(36px, 11vw, 54px);
  font-weight: 650;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.home-hero h1 span {
  color: var(--brand);
}

.home-hero p {
  margin: 0;
  max-width: 28rem;
  font-size: 14px;
  line-height: 1.55;
}

.home-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

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

.home-hero-stat {
  min-width: 0;
  padding: 12px 12px 11px;
  border-radius: 18px;
  background: rgba(26, 27, 29, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--theme-shadow-subtle);
}

.home-hero-stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 650;
  line-height: 1;
}

.home-hero-stat span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-search-results-intro {
  align-items: flex-start;
  text-align: left;
}

.pulse-search-results-intro p {
  margin: 0 0 12px;
  max-width: 28rem;
}

.search-reset-button {
  min-height: 42px;
  padding-inline: 14px;
}

.city-filter-fallback-note {
  margin: -2px 0 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 179, 122, 0.12);
  border: 1px solid rgba(255, 179, 122, 0.16);
  color: var(--theme-warning-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.search-wrap,
.mall-search-wrap {
  background: linear-gradient(180deg, rgba(21, 23, 25, 0.98) 0%, rgba(18, 20, 22, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.home-search-wrap {
  margin-bottom: 0;
}

.home-search-field,
.search-input-wrap {
  position: relative;
}

.home-search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  min-height: 58px;
  border-radius: 18px;
  background: #202225;
  border: 1px solid rgba(250, 250, 247, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 10px 22px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(212, 255, 60, 0.04);
}

.home-search-field input {
  flex: 1 1 auto;
  min-width: 0;
}

.home-search-icon {
  color: rgba(250, 250, 247, 0.72);
  font-size: 17px;
  line-height: 1;
}

.home-search-accent {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 16px rgba(212, 255, 60, 0.82);
}

.search-wrap input,
.search-input-wrap input,
.home-search-field input {
  width: 100%;
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  box-shadow: none;
}

.search-input-wrap input {
  border: 1px solid #2a2d31;
  border-radius: 18px;
  padding: 15px 16px 15px 44px;
  background: #1a1b1d;
}

.search-wrap input:focus-visible,
.search-input-wrap input:focus-visible,
.home-search-field:focus-within {
  outline: none;
}

.home-search-field:focus-within,
.search-input-wrap input:focus-visible {
  border-color: rgba(212, 255, 60, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 26px rgba(0, 0, 0, 0.2),
    0 0 0 3px rgba(212, 255, 60, 0.1);
}

.home-search-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.home-search-pill,
.pill,
.offer-visibility,
.offer-freshness {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(212, 255, 60, 0.1);
  color: var(--brand);
  border: 1px solid rgba(212, 255, 60, 0.1);
  font-size: 12px;
  font-weight: 800;
}

.toolbar,
.topbar,
.section-head,
.card-footer {
  gap: 10px;
}

.section {
  margin-bottom: 22px;
}

.section-head {
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 24px;
}

.meta {
  font-size: 13px;
  font-weight: 600;
}

.button,
.subtle-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #0e0f10;
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(212, 255, 60, 0.18);
}

.button.secondary,
.mall-card-map-button,
.mall-map-button,
.search-result-map-button,
.category-chip {
  background: #1e2124;
  color: var(--text);
  border-color: #2f3439;
  box-shadow: none;
}

.button.saved,
.category-chip.active {
  background: var(--brand);
  color: #0e0f10;
  border-color: var(--brand);
  box-shadow: 0 14px 24px rgba(212, 255, 60, 0.18);
}

.floating-back-button {
  background: rgba(26, 27, 29, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text);
  box-shadow: var(--theme-shadow-float);
}

.clickable-card:focus-visible,
.button:focus-visible,
.button.secondary:focus-visible,
.mall-card-map-button:focus-visible,
.category-chip:focus-visible,
.search-result-map-button:focus-visible,
.floating-back-button:focus-visible {
  outline: 2px solid rgba(212, 255, 60, 0.5);
  outline-offset: 3px;
}

.sponsored-banner-section {
  margin: 0 0 22px;
}

.sponsored-banner-track:focus-visible {
  outline-color: rgba(212, 255, 60, 0.38);
}

.sponsored-banner-card {
  min-height: 160px;
  padding: 18px;
  border: 1px solid rgba(212, 255, 60, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(14, 15, 16, 0.08) 0%, rgba(14, 15, 16, 0) 32%),
    linear-gradient(135deg, #d4ff3c 0%, #b9e533 100%);
  color: #0e0f10;
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.26);
}

.sponsored-banner-card:hover,
.sponsored-banner-card:focus-visible {
  border-color: rgba(212, 255, 60, 0.24);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.3);
}

.sponsored-banner-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  background: #0e0f10;
  color: var(--brand);
  border: none;
}

.sponsored-banner-title {
  color: #0e0f10;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.sponsored-banner-subtitle {
  color: rgba(14, 15, 16, 0.8);
  font-size: 13px;
  line-height: 1.45;
}

.sponsored-banner-sponsor {
  color: rgba(14, 15, 16, 0.66);
  font-size: 12px;
  font-weight: 700;
}

.sponsored-banner-media {
  flex-basis: 100px;
  width: 100px;
  height: 100px;
  border-radius: 22px;
  background: rgba(14, 15, 16, 0.08);
  border: 1px solid rgba(14, 15, 16, 0.08);
}

.sponsored-banner-dots {
  gap: 7px;
  margin-top: 12px;
}

.sponsored-banner-dot {
  width: 8px;
  height: 8px;
  background: rgba(250, 250, 247, 0.24);
}

.sponsored-banner-dot.active {
  width: 24px;
  background: var(--brand);
  transform: none;
}

.saved-stores-section .section-head {
  align-items: end;
}

.saved-store-strip {
  gap: 12px;
  padding: 2px 0 2px;
}

.saved-store-icon-button {
  width: 62px;
  height: 62px;
  border-radius: 20px;
}

.saved-store-icon-image,
.saved-store-icon-placeholder,
.saved-store-more-button span {
  width: 62px;
  height: 62px;
  border-radius: 20px;
}

.saved-store-icon-image {
  background: #f5f7f0;
  border: 1px solid rgba(212, 255, 60, 0.16);
  box-shadow: var(--theme-shadow-subtle);
}

.saved-store-icon-placeholder {
  background: linear-gradient(135deg, rgba(212, 255, 60, 0.28) 0%, rgba(212, 255, 60, 0.12) 100%);
  color: #172100;
}

.saved-store-more-button span {
  background: #1d2023;
  color: var(--brand);
  border: 1px dashed rgba(212, 255, 60, 0.32);
}

.mall-card {
  display: block;
  overflow: hidden;
  padding: 0;
  border-radius: 28px;
  background: #17191b;
  box-shadow: var(--shadow);
}

.mall-card:hover {
  border-color: rgba(212, 255, 60, 0.2);
  box-shadow: 0 26px 42px rgba(0, 0, 0, 0.32);
}

.mall-card-visual {
  position: relative;
  min-height: 168px;
}

.mall-card-cover-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.mall-card-cover-image,
.mall-card-cover-placeholder {
  width: 100%;
  height: 100%;
  display: block;
}

.mall-card-cover-image {
  object-fit: cover;
  background: #121416;
}

.mall-card-cover-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top center, rgba(212, 255, 60, 0.16) 0%, rgba(212, 255, 60, 0) 36%),
    linear-gradient(180deg, #21252a 0%, #15181b 100%);
  color: rgba(250, 250, 247, 0.74);
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.mall-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 15, 16, 0.02) 0%, rgba(14, 15, 16, 0.14) 36%, rgba(14, 15, 16, 0.72) 100%);
}

.mall-card-visual-top {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  z-index: 1;
}

.mall-card-feature-pill,
.mall-card-badge,
.mall-summary-meta span,
.mall-place-badge,
.offer-time {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.mall-card-feature-pill {
  max-width: calc(100% - 6px);
  background: rgba(14, 15, 16, 0.68);
  color: var(--text);
  backdrop-filter: blur(12px);
}

.mall-card-distance-pill {
  background: var(--brand);
  color: #0e0f10;
}

.mall-card-offer-pill {
  background: rgba(255, 107, 157, 0.92);
  color: #0e0f10;
}

.mall-card-body {
  padding: 16px;
}

.mall-card-status-row {
  margin-bottom: 10px;
}

.mall-card-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(250, 250, 247, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mall-card-header {
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.mall-card-brand {
  width: 56px;
  height: 56px;
}

.mall-card-logo-image,
.mall-card-logo-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 18px;
}

.mall-card-logo-image {
  background: #f5f7f0;
  border: 1px solid rgba(212, 255, 60, 0.16);
  box-shadow: var(--theme-shadow-subtle);
}

.mall-card-logo-placeholder {
  background: linear-gradient(135deg, rgba(212, 255, 60, 0.34) 0%, rgba(212, 255, 60, 0.14) 100%);
  color: #172100;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 650;
}

.mall-card-title-group h3 {
  margin: 0 0 3px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.mall-card-meta {
  font-size: 12px;
  font-weight: 600;
}

.mall-card-badges {
  gap: 8px;
  margin-bottom: 14px;
}

.mall-card-badge {
  background: #202428;
  color: var(--text);
  border: 1px solid #2b3035;
}

.mall-card-badge-strong {
  background: rgba(212, 255, 60, 0.12);
  color: var(--brand);
  border-color: rgba(212, 255, 60, 0.14);
}

.mall-card-badge-accent {
  background: rgba(255, 107, 157, 0.14);
  color: #ff8ab2;
  border-color: rgba(255, 107, 157, 0.18);
}

.mall-card-actions {
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
}

.mall-card-primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 16px;
  background: var(--brand);
  color: #0e0f10;
  font-size: 13px;
  font-weight: 800;
}

.mall-card-map-button {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 16px;
}

.customer-nav-row,
.mall-summary-top,
.mall-place-summary,
.mall-detail-actions,
.store-detail-actions {
  gap: 12px;
}

.mall-place-summary,
.mall-summary-card,
.mall-info-tile,
.offer-card,
.store-tile,
.saved-store-page-card,
.result-item {
  border-radius: 22px;
}

.mall-summary-card.minimal,
.mall-place-summary.compact {
  background: transparent;
  border: none;
  box-shadow: none;
}

.mall-address,
.mall-info-tile strong {
  color: var(--text);
}

.subtle-action,
.mall-summary-meta span,
.mall-place-badge {
  background: #1e2124;
  color: var(--text);
  border-color: #2f3439;
  box-shadow: none;
}

.mall-detail-image-wrap,
.store-detail-image-wrap,
.offer-image-wrap {
  border: 1px solid var(--line);
  background: #111315;
}

.store-tile {
  min-height: 116px;
  border-color: var(--line);
  background: linear-gradient(180deg, rgba(24, 26, 28, 0.98) 0%, rgba(17, 19, 21, 0.98) 100%);
}

.store-tile-logo,
.saved-store-page-image {
  background: #f5f7f0;
  border-color: rgba(212, 255, 60, 0.14);
}

.store-tile-placeholder,
.saved-store-page-placeholder {
  background: linear-gradient(135deg, rgba(212, 255, 60, 0.32) 0%, rgba(212, 255, 60, 0.14) 100%);
  color: #172100;
}

.store-tile h3,
.saved-store-page-copy h3,
.result-item strong {
  color: var(--text);
}

.store-tile-meta {
  color: rgba(250, 250, 247, 0.56);
}

.store-tile-offer-badge {
  background: rgba(255, 107, 157, 0.96);
  color: #0e0f10;
  box-shadow: none;
}

.category-chip {
  min-height: 42px;
}

.new-offers-section {
  background:
    radial-gradient(circle at top left, rgba(212, 255, 60, 0.1) 0%, rgba(212, 255, 60, 0) 30%),
    linear-gradient(180deg, rgba(24, 26, 28, 0.98) 0%, rgba(18, 20, 22, 0.98) 100%);
}

.section-head-icon,
.offer-new-badge {
  background: var(--theme-danger);
  color: #0e0f10;
}

.offer-time {
  background: rgba(255, 179, 122, 0.16);
  color: var(--theme-warning-text);
}

.empty,
.new-offers-empty {
  background: rgba(24, 26, 28, 0.88);
  border-style: dashed;
  border-color: #31363b;
}

.empty strong,
.new-offers-empty strong {
  color: var(--text);
}

.result-group h3 {
  color: var(--text);
}

.search-result-actions {
  justify-content: flex-start;
}

.location-permission-overlay {
  background: rgba(5, 6, 7, 0.6);
}

.location-permission-card p {
  color: var(--muted);
}

@media (max-width: 640px) {
  .shell {
    padding: 12px 12px 22px;
  }

  .home-top-shell {
    margin-bottom: 16px;
  }

  .home-top-shell::before {
    inset: -8px -2px 0;
    border-radius: 28px;
  }

  .home-hero {
    margin-bottom: 10px;
    padding: 0 2px 2px;
  }

  .home-hero-kicker {
    margin-bottom: 8px;
  }

  .home-hero h1 {
    margin-bottom: 8px;
    font-size: clamp(36px, 10.2vw, 38px);
    line-height: 0.9;
  }

  .home-hero p {
    font-size: 13px;
    line-height: 1.45;
  }

  .home-hero-stats {
    margin-top: 14px;
    gap: 8px;
  }

  .home-hero-stat {
    padding: 11px 10px 10px;
    border-radius: 16px;
  }

  .home-hero-stat strong {
    font-size: 20px;
  }

  .search-wrap,
  .mall-search-wrap,
  .hero,
  .card,
  .new-offers-section,
  .location-permission-card {
    border-radius: 22px;
  }

  .home-search-field {
    min-height: 54px;
    padding: 0 12px;
  }

  .sponsored-banner-card {
    min-height: 132px;
    padding: 15px;
    border-radius: 24px;
  }

  .sponsored-banner-title {
    font-size: 23px;
  }

  .sponsored-banner-media {
    flex-basis: 82px;
    width: 82px;
    height: 82px;
    border-radius: 18px;
  }

  .mall-card {
    border-radius: 24px;
  }

  .mall-card-visual {
    min-height: 154px;
  }

  .mall-card-body {
    padding: 14px;
  }

  .mall-card-title-group h3 {
    font-size: 22px;
  }

  .mall-card-actions {
    flex-wrap: wrap;
  }

  .mall-card-primary-action,
  .mall-card-map-button {
    width: 100%;
  }
}

.customer-header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 10px;
}

.customer-account-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 12px 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(26, 27, 29, 0.92);
  color: var(--text);
  box-shadow: var(--theme-shadow-subtle);
  cursor: pointer;
}

.customer-account-monogram {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #0e0f10;
  font-size: 12px;
  font-weight: 800;
}

.customer-account-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.customer-notice {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 40;
  transform: translateX(-50%);
  width: min(calc(100% - 24px), 420px);
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--theme-shadow-float);
  backdrop-filter: blur(12px);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.customer-notice-success {
  background: rgba(212, 255, 60, 0.92);
  color: #0e0f10;
}

.customer-notice-warning {
  background: rgba(255, 179, 122, 0.92);
  color: #0e0f10;
}

.customer-notice-error {
  background: rgba(255, 107, 157, 0.95);
  color: #0e0f10;
}

.customer-notice-info {
  background: rgba(24, 26, 28, 0.94);
  color: var(--text);
}

.city-selector-overlay,
.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  background: rgba(5, 6, 7, 0.62);
  backdrop-filter: blur(12px);
}

.city-selector-sheet {
  width: min(100%, 460px);
  max-height: min(78vh, 720px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(24, 26, 28, 0.99) 0%, rgba(18, 20, 22, 0.98) 100%);
  box-shadow: var(--shadow);
}

.city-selector-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.city-selector-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(212, 255, 60, 0.12);
  color: var(--brand);
  border: 1px solid rgba(212, 255, 60, 0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.city-selector-head h2 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.city-selector-close-button {
  min-height: 40px;
  padding: 8px 12px;
}

.city-selector-search-wrap {
  flex: 0 0 auto;
}

.city-selector-search-wrap input {
  padding-right: 18px;
}

#customerCitySelectorResults {
  overflow-y: auto;
  padding-right: 2px;
}

.city-selector-section {
  display: grid;
  gap: 10px;
}

.city-selector-section-title {
  color: rgba(250, 250, 247, 0.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.city-selector-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(26, 27, 29, 0.94);
  color: var(--text);
  box-shadow: var(--theme-shadow-subtle);
  cursor: pointer;
  text-align: left;
}

.city-selector-option.active {
  border-color: rgba(212, 255, 60, 0.28);
  background: rgba(212, 255, 60, 0.08);
}

.city-selector-option:focus-visible,
.home-city-pill:focus-visible {
  outline: 2px solid rgba(212, 255, 60, 0.5);
  outline-offset: 3px;
}

.city-selector-option-name {
  font-size: 15px;
  font-weight: 700;
}

.city-selector-option-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.city-selector-empty {
  margin: 0;
  padding: 18px 16px;
  text-align: center;
}

.auth-card {
  width: min(100%, 420px);
  padding: 20px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(24, 26, 28, 0.98) 0%, rgba(18, 20, 22, 0.98) 100%);
  box-shadow: var(--shadow);
}

.auth-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.auth-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.auth-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.5;
}

.auth-card label {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.auth-card input {
  width: 100%;
  margin-bottom: 12px;
  border: 1px solid #2a2d31;
  border-radius: 16px;
  padding: 14px 15px;
  background: #1a1b1d;
  color: var(--text);
  box-shadow: none;
}

.auth-card input:focus-visible {
  outline: none;
  border-color: rgba(212, 255, 60, 0.42);
  box-shadow: 0 0 0 3px rgba(212, 255, 60, 0.12);
}

.auth-close-button {
  min-height: 40px;
  padding: 8px 12px;
}

.auth-actions {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.auth-message {
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.auth-message-success {
  background: rgba(212, 255, 60, 0.12);
  color: var(--brand);
}

.auth-message-warning {
  background: rgba(255, 179, 122, 0.14);
  color: var(--theme-warning-text);
}

.auth-message-error {
  background: rgba(255, 107, 157, 0.14);
  color: #ff8ab2;
}

.auth-message-info {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

@media (min-width: 720px) {
  .city-selector-overlay,
  .auth-overlay {
    align-items: center;
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .customer-account-button {
    min-height: 44px;
    padding-right: 10px;
  }

  .customer-account-label {
    display: none;
  }

  .home-city-pill-text {
    max-width: 56vw;
  }

  .city-selector-sheet {
    width: 100%;
    max-height: 82vh;
    padding: 18px 16px 16px;
    border-radius: 24px 24px 18px 18px;
  }

  .city-selector-head h2 {
    font-size: 24px;
  }

  .auth-card {
    padding: 18px 16px 16px;
    border-radius: 22px;
  }

  .auth-card h2 {
    font-size: 24px;
  }
}
