:root {
  color-scheme: dark;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --ios-top-buffer: max(28px, var(--safe-top));
  --page-x: clamp(18px, 5vw, 24px);
  --nav-height: 72px;
  --nav-bottom: max(12px, var(--safe-bottom));
  --bg: #041414;
  --panel: rgba(17, 34, 32, 0.74);
  --panel-strong: rgba(24, 43, 40, 0.84);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f7f8f5;
  --muted: rgba(247, 248, 245, 0.72);
  --dim: rgba(247, 248, 245, 0.52);
  --cream: #f7e7c8;
  --gold: #e8b566;
  --gold-soft: #f1d8a8;
  --glass: linear-gradient(145deg, rgba(21, 39, 36, 0.74), rgba(6, 20, 19, 0.86));
  --glass-soft: linear-gradient(180deg, rgba(20, 42, 38, 0.58), rgba(4, 16, 15, 0.88));
  --green: #72d388;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 95, 94, 0.5), transparent 38rem),
    #020c0c;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--text);
  background:
    linear-gradient(160deg, rgba(8, 35, 35, 0.9), rgba(0, 8, 8, 0.94)),
    var(--bg);
}

body.app-launching {
  overflow: hidden;
}

.launch-screen {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(114, 211, 136, 0.14), transparent 15rem),
    radial-gradient(circle at 50% 48%, rgba(232, 181, 102, 0.18), transparent 12rem),
    linear-gradient(180deg, rgba(1, 9, 9, 0.995), rgba(3, 16, 15, 0.992));
  opacity: 1;
  visibility: visible;
  transition:
    opacity 520ms ease,
    visibility 520ms ease;
}

body.app-ready .launch-screen {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.launch-screen-core {
  position: relative;
  width: min(86vw, 420px);
  display: grid;
  justify-items: center;
  gap: 14px;
}

body.app-ready .launch-screen-core {
  opacity: 0;
  transform: scale(1.08);
  transition:
    transform 560ms ease,
    opacity 560ms ease;
}

.launch-screen-orbit {
  position: absolute;
  top: 50%;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  filter: blur(1px);
  opacity: 0;
  animation: launch-orbit-in 1120ms cubic-bezier(.2,.8,.2,1) forwards;
}

.launch-screen-orbit-left {
  left: 6%;
  background: radial-gradient(circle, rgba(232, 181, 102, 0.18), transparent 72%);
  transform: translateY(-50%);
}

.launch-screen-orbit-right {
  right: 6%;
  background: radial-gradient(circle, rgba(114, 211, 136, 0.16), transparent 72%);
  transform: translateY(-50%);
  animation-delay: 180ms;
}

.launch-screen-flare {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(70vw, 320px);
  height: 72px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  filter: blur(18px);
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0.4);
  animation: launch-flare-pass 1320ms ease-out 180ms forwards;
}

.launch-screen-mark {
  position: relative;
  width: min(82vw, 342px);
  padding: 18px 20px;
  opacity: 0;
  transform: scale(0.92);
  animation: launch-mark-in 760ms cubic-bezier(.2,.8,.2,1) 180ms forwards;
}

.launch-screen-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008));
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.launch-screen-mark img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 14px rgba(232, 181, 102, 0.18))
    drop-shadow(0 0 30px rgba(255, 255, 255, 0.06));
}

.launch-screen-kicker {
  margin: 0;
  color: rgba(247, 248, 245, 0.8);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(10px);
  animation: launch-kicker-in 620ms ease 420ms forwards;
}

@keyframes launch-orbit-in {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0.42);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@keyframes launch-flare-pass {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0.34);
  }
  28% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(1.28);
  }
}

@keyframes launch-mark-in {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes launch-kicker-in {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-entry {
  position: fixed;
  inset: 0;
  z-index: 60;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 18px;
  overflow-y: auto;
  background:
    radial-gradient(circle at top, rgba(37, 110, 95, 0.3), transparent 34%),
    linear-gradient(180deg, #031310 0%, #051b17 100%);
}

.auth-entry[hidden] {
  display: none !important;
}

.auth-shell {
  max-width: 460px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  min-height: calc(100vh - 36px);
  align-items: center;
}

.auth-panel,
.pin-panel {
  border: 1px solid rgba(247, 231, 200, 0.1);
  border-radius: 34px;
  padding: 34px 26px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(26, 21, 49, 0.52), rgba(18, 52, 46, 0.92) 64%, rgba(8, 24, 22, 0.94));
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(28px);
}

.auth-panel-compact {
  max-width: 400px;
  margin: 0 auto;
  min-height: 760px;
}

.auth-brand-mark {
  width: 116px;
  margin: 0 auto 18px;
  display: block;
}

.auth-topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.auth-language-switch,
.auth-guest-link {
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(247, 231, 200, 0.22);
  background: transparent;
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
}

.auth-language-switch {
  min-width: 58px;
  padding: 0 12px;
}

.auth-guest-link {
  padding: 0 14px;
}

.auth-avatar-glow {
  width: 108px;
  height: 108px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 36%, rgba(232, 181, 102, 0.42), transparent 45%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow:
    0 24px 40px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.auth-avatar-core {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(232, 181, 102, 0.72), rgba(150, 91, 197, 0.72));
  color: #fff7ea;
  font-size: 28px;
  font-weight: 800;
}

.auth-kicker-text {
  margin: 0 0 8px;
  color: #b6da8f;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
}

.auth-panel h1,
.pin-panel h1 {
  margin: 0;
  font-size: clamp(30px, 8vw, 42px);
  line-height: 1.04;
  text-align: center;
}

.auth-panel p,
.pin-panel p,
.auth-note,
.auth-demo-code {
  color: var(--muted);
}

.auth-note {
  margin: 12px 0 0;
  text-align: center;
  line-height: 1.5;
  min-height: 72px;
}

.auth-toggle strong {
  display: block;
  font-size: 18px;
}

.auth-toggle small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.4;
}

.auth-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.auth-form-grid .full {
  grid-column: 1 / -1;
}

.auth-form-grid label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(247, 231, 200, 0.92);
}

.auth-form-grid input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(247, 231, 200, 0.16);
  border-radius: 18px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 15px;
}

.password-field-shell {
  position: relative;
  display: block;
}

.password-field-shell input {
  padding-right: 54px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  font-size: 15px;
  line-height: 1;
}

.auth-form-grid input:focus {
  outline: none;
  border-color: rgba(232, 181, 102, 0.58);
  box-shadow: 0 0 0 4px rgba(232, 181, 102, 0.14);
}

.auth-actions-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.auth-actions-row .gold-button,
.auth-actions-row .secondary-button {
  flex: 1;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  padding: 0 16px;
  border: 1px solid rgba(247, 231, 200, 0.14);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 800;
}

.auth-toggle-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.auth-toggle {
  flex: 1;
  border: 1px solid rgba(247, 231, 200, 0.1);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.auth-error {
  min-height: 18px;
  margin-top: 10px;
  color: #f6aaa4;
  font-size: 13px;
}

.auth-demo-code {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px dashed rgba(232, 181, 102, 0.35);
  border-radius: 16px;
  background: rgba(232, 181, 102, 0.08);
}

.auth-social-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.auth-social-stack-bottom {
  margin-top: 14px;
}

.auth-social-button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(247, 231, 200, 0.12);
  border-radius: 20px;
  text-align: left;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.auth-social-copy {
  min-width: 0;
}

.auth-social-button strong {
  display: block;
  font-size: 16px;
}

.auth-social-button span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.auth-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  justify-self: end;
  background: transparent;
  box-shadow: none;
}

.auth-social-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.auth-social-button.telegram .auth-social-icon {
  color: #7ecbff;
}

.auth-social-button.google .auth-social-icon {
  color: #f7e7c8;
}

.auth-social-button.telegram {
  background: linear-gradient(135deg, rgba(57, 120, 232, 0.26), rgba(13, 35, 32, 0.56));
}

.auth-social-button.google {
  background: linear-gradient(135deg, rgba(232, 181, 102, 0.18), rgba(120, 88, 214, 0.22));
}

.auth-divider {
  position: relative;
  margin-top: 16px;
  text-align: center;
}

.auth-divider::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  border-top: 1px solid rgba(247, 231, 200, 0.12);
}

.auth-divider span {
  position: relative;
  display: inline-block;
  padding: 0 12px;
  background: rgba(18, 33, 43, 0.9);
  color: var(--dim);
  font-size: 12px;
}

.auth-inline-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.auth-inline-meta label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.auth-inline-meta input[type="checkbox"] {
  width: 16px;
  min-height: 16px;
}

.auth-text-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #dcb67b;
  font-size: 13px;
  font-weight: 700;
}

.auth-primary-button {
  min-height: 48px;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.auth-switch-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  min-height: 24px;
}

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

.pin-grid button {
  min-height: 58px;
  border: 1px solid rgba(247, 231, 200, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
}

.pin-dots {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.pin-dots span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(247, 231, 200, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.pin-dots span.filled {
  background: #e8b566;
  border-color: #e8b566;
}

body:has(.phone-shell.hub-open) {
  overscroll-behavior: contain;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid rgba(247, 231, 200, 0.72);
  outline-offset: 3px;
}

button:active,
a:active {
  transform: translateY(1px);
}

.bottom-nav a:active,
.utility-nav a:active,
.category-card:active,
.quick-card:active {
  opacity: 0.86;
}

svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.phone-shell {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: visible;
  isolation: isolate;
  opacity: 1;
  transition:
    opacity 720ms ease,
    transform 720ms ease;
  background:
    linear-gradient(180deg, rgba(2, 12, 13, 0.08) 0%, rgba(2, 12, 12, 0.2) 32%, rgba(1, 10, 9, 0.5) 100%),
    #031111;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 28px 120px rgba(0, 0, 0, 0.58);
  scrollbar-width: none;
  overscroll-behavior-x: none;
}

body.app-launching .phone-shell {
  opacity: 1;
  transform: none;
}

.phone-shell.internal-screen {
  background:
    radial-gradient(circle at 28% 0%, rgba(30, 78, 68, 0.42), transparent 18rem),
    radial-gradient(circle at 80% 28%, rgba(232, 181, 102, 0.08), transparent 15rem),
    radial-gradient(circle at 16% 62%, rgba(74, 120, 107, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,0.015) 25%, transparent 25%) 0 0 / 16px 16px,
    linear-gradient(180deg, #061c1b 0%, #031211 48%, #010908 100%);
}

.phone-shell::-webkit-scrollbar {
  display: none;
}

.phone-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 11;
  background: rgba(1, 8, 8, 0.2);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0);
  transition:
    opacity 180ms ease,
    backdrop-filter 180ms ease;
}

.phone-shell.hub-open::before {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(5px);
}

@media (min-width: 520px) {
  body {
    padding: 28px 0;
  }

  .phone-shell {
    width: min(100vw, 430px);
    max-width: none;
    min-height: 932px;
    max-height: none;
    border-radius: 38px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 28px 120px rgba(0, 0, 0, 0.65);
  }

  .phone-shell::before {
    position: fixed;
    border-radius: inherit;
  }
}

.phone-shell::after {
  content: none;
}

.hero {
  --hero-background-image: url("./assets/hero-time-3-day.jpg");
  --hero-background-next-image: url("./assets/hero-time-3-day.jpg");
  --hero-background-bottom-gap: 86px;
  --hero-background-transition: 760ms;
  --hero-background-position: center 50%;
  --hero-blend-height: 110px;
  position: relative;
  --weather-card-top: calc(var(--ios-top-buffer) + 232px);
  --weather-card-right: var(--page-x);
  --weather-card-width: 178px;
  --search-card-gap: 156px;
  min-height: 410px;
  padding: calc(var(--safe-top) + 14px) var(--page-x) 0;
  overflow: hidden;
  border-radius: 0 0 34px 34px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0 -2px var(--hero-background-bottom-gap) -2px;
  z-index: -2;
  border-radius: inherit;
  transition: opacity var(--hero-background-transition) ease;
  will-change: opacity;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 12, 13, 0.3) 0%, rgba(4, 17, 17, 0.18) 38%, rgba(3, 13, 12, 0.72) 100%),
    linear-gradient(90deg, rgba(2, 12, 13, 0.54), rgba(6, 18, 18, 0.16) 53%, rgba(5, 12, 9, 0.1)),
    var(--hero-background-image) var(--hero-background-position) / cover no-repeat;
}

.hero-bg-overlay {
  z-index: -1;
  opacity: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(2, 12, 13, 0.3) 0%, rgba(4, 17, 17, 0.18) 38%, rgba(3, 13, 12, 0.72) 100%),
    linear-gradient(90deg, rgba(2, 12, 13, 0.54), rgba(6, 18, 18, 0.16) 53%, rgba(5, 12, 9, 0.1)),
    var(--hero-background-next-image) var(--hero-background-position) / cover no-repeat;
}

.hero.hero-transitioning .hero-bg-overlay {
  opacity: 1;
}

.hero::before,
.hero-bg::before,
.hero-bg::after {
  content: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--hero-background-bottom-gap);
  height: var(--hero-blend-height);
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(4, 20, 20, 0) 0%,
      rgba(4, 20, 20, 0.12) 22%,
      rgba(4, 20, 20, 0.32) 44%,
      rgba(4, 20, 20, 0.62) 68%,
      rgba(4, 20, 20, 0.82) 86%,
      rgba(4, 20, 20, 0.96) 100%
    );
  filter: blur(18px);
  transform: translateY(48%);
}

.phone-shell::after {
  content: none;
}

.topbar,
.hero-copy,
.time-card,
.weather-card,
.search-card {
  position: relative;
  z-index: 2;
}

.phone-shell[data-time-period] .hero-bg,
.phone-shell[data-weather-mode] .hero-bg {
  filter: none;
}

@keyframes hero-fog-drift {
  0% {
    transform: translate3d(-7%, 0, 0) scaleX(1.02);
  }
  50% {
    transform: translate3d(5%, -6px, 0) scaleX(1.08);
  }
  100% {
    transform: translate3d(16%, 2px, 0) scaleX(1.03);
  }
}

@keyframes hero-cloud-pass {
  0% {
    transform: translate3d(-10%, 0, 0);
  }
  100% {
    transform: translate3d(12%, -4px, 0);
  }
}

@keyframes hero-trees-sway {
  0%,
  100% {
    transform: translateX(0) rotate(-0.6deg) scale(1.01);
  }
  25% {
    transform: translateX(2px) rotate(0.3deg) scale(1.015);
  }
  55% {
    transform: translateX(-3px) rotate(-1deg) scale(1.02);
  }
  78% {
    transform: translateX(2px) rotate(0.45deg) scale(1.015);
  }
}

@keyframes hero-rain-shift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 0 0, -46px 84px;
  }
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 0;
}

.brand {
  display: block;
  flex: 0 1 174px;
  width: 174px;
  max-width: 48vw;
  height: 42px;
  overflow: hidden;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 9px rgba(0, 0, 0, 0.32));
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.location-pill,
.language-pill,
.icon-button,
.search-card,
.category-card,
.quick-card,
.rewards-card,
.utility-nav,
.bottom-nav {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.location-pill,
.language-pill,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.top-actions {
  position: relative;
}

.language-pill {
  gap: 7px;
  height: 38px;
  min-width: 68px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.language-pill svg {
  width: 17px;
  height: 17px;
}

.language-menu {
  position: absolute;
  top: 47px;
  right: 52px;
  z-index: 30;
  width: 170px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(17, 35, 33, 0.96), rgba(8, 20, 19, 0.92));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.language-menu button {
  display: flex;
  width: 100%;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 11px;
  padding: 0 10px;
  color: var(--text);
  background: transparent;
  font-size: 12px;
}

.language-menu button:hover {
  background: rgba(255, 255, 255, 0.07);
}

.location-pill {
  gap: 9px;
  min-width: 0;
  max-width: 154px;
  height: 39px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  white-space: nowrap;
}

.location-pill span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.location-pill svg {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

.location-pill .chevron {
  width: 15px;
  height: 15px;
}

.icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.notify-dot {
  position: absolute;
  top: 4px;
  right: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f3cc7d;
}

.icon-button svg {
  width: 18px;
  height: 18px;
}

.hero-copy {
  margin-top: 52px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero-copy p {
  max-width: 270px;
  margin: 0;
  color: #aad18d;
  font-size: 20px;
  line-height: 1.28;
}

.hero-copy p:last-child {
  max-width: 210px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.35;
}

.hero-copy h1 {
  margin: 0;
  font-size: 43px;
  line-height: 0.98;
  letter-spacing: 0;
}

.weather-card {
  position: absolute;
  z-index: 2;
  right: var(--weather-card-right);
  top: var(--weather-card-top);
  width: var(--weather-card-width);
  max-width: calc(100% - var(--page-x) - var(--page-x));
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(23, 38, 36, 0.28), rgba(15, 29, 27, 0.12));
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.34);
}

.time-card {
  position: absolute;
  z-index: 2;
  left: calc(var(--page-x) + 28px);
  top: calc(var(--weather-card-top) + 16px);
  width: 152px;
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.time-card strong {
  color: #fff;
  font-size: 38px;
  line-height: 0.92;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.time-card span {
  margin-left: 10px;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 16px;
  line-height: 1.1;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.26);
}

.weather-card div {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
}

.weather-card p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.2;
}

.weather-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  margin: 8px 0 0;
}

.weather-meta div {
  display: grid;
  gap: 1px;
  min-width: 0;
  font-size: inherit;
}

.weather-meta dt,
.weather-meta dd {
  margin: 0;
  line-height: 1.1;
}

.weather-meta dt {
  overflow: hidden;
  color: var(--dim);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.weather-meta dd {
  color: var(--cream);
  font-size: 11px;
  font-weight: 800;
}

.weather-card small {
  display: none;
  margin-top: 0;
  color: var(--dim);
  font-size: 9px;
}

.weather-card.loading,
.weather-card.error {
  opacity: 0.88;
}

.hero-copy h1 span {
  color: var(--cream);
  font-size: 0.66em;
  vertical-align: 0.16em;
}

.search-card {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 54px;
  margin-top: var(--search-card-gap);
  padding: 8px 15px 8px 17px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(14, 29, 28, 0.78), rgba(11, 25, 25, 0.7));
  box-shadow: var(--shadow);
}

.search-shell {
  position: relative;
  z-index: 6;
}

.search-suggestions {
  position: fixed;
  z-index: 30;
  display: none;
  gap: 0;
  width: min(100vw - 32px, 760px);
  margin: 0;
  padding: 4px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 31, 30, 0.96), rgba(11, 23, 22, 0.94));
  backdrop-filter: blur(24px);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.search-suggestions.is-visible {
  display: grid;
}

.search-suggestion-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  border: 0;
  border-radius: 0;
  color: var(--text);
  background: transparent;
  text-align: left;
}

.search-suggestion-item + .search-suggestion-item {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.search-suggestion-item strong {
  font-size: 15px;
  font-weight: 650;
  line-height: 1.2;
}

.search-suggestion-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.search-suggestion-item span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.3;
}

.search-suggestion-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(229, 196, 128, 0.34);
  border-radius: 999px;
  color: #f4e6cb;
  background: rgba(229, 196, 128, 0.1);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.search-suggestion-item.active,
.search-suggestion-item:active {
  background: rgba(255, 255, 255, 0.05);
}

.search-suggestion-empty {
  pointer-events: none;
}

.phone-shell.language-russian .hero {
  --weather-card-top: calc(var(--ios-top-buffer) + 256px);
  --weather-card-width: 178px;
  --search-card-gap: 164px;
  --hero-background-bottom-gap: 94px;
  --hero-blend-height: 118px;
  min-height: 512px;
}

.phone-shell.language-russian .hero-copy h1 {
  font-size: 38px;
  line-height: 1.02;
}

.phone-shell.language-russian .hero-copy p:last-child {
  max-width: 292px;
  font-size: 15px;
}

.phone-shell.language-russian .weather-card {
  padding: 10px 12px;
}

.phone-shell.language-russian .weather-card p {
  font-size: 11px;
}

.phone-shell.language-russian .time-card {
  left: calc(var(--page-x) + 30px);
  width: 166px;
}

.search-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
}

.search-card > svg,
.search-submit-button svg {
  width: 24px;
  height: 24px;
  color: #fff;
  stroke-width: 2.1;
}

.search-card input {
  min-width: 0;
  border: 0;
  color: var(--text);
  outline: 0;
  background: transparent;
  font-size: 17px;
}

.search-card input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 34px;
  min-width: 52px;
  border: 0;
  border-radius: 999px;
  color: var(--text);
  background: transparent;
}

.filter-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.18);
}

.filter-button svg {
  width: 18px;
  height: 18px;
}

.content {
  position: relative;
  z-index: 2;
  padding: 0 var(--page-x) calc(var(--nav-height) + var(--nav-bottom) + 42px);
}

.category-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(8px, 2.5vw, 14px);
}

.category-row.core-services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 62px;
  aspect-ratio: 1.02;
  border-radius: 17px;
  color: var(--cream);
  cursor: pointer;
}

.core-services .category-card {
  min-height: 82px;
  aspect-ratio: 1.28;
}

.rewards-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(247, 231, 200, 0.22);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.rewards-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 102px;
  gap: 10px;
  align-items: center;
  min-height: 116px;
  margin-top: 15px;
  padding: 12px 10px;
  background:
    radial-gradient(circle at 12% 48%, rgba(100, 155, 89, 0.24), transparent 8rem),
    linear-gradient(105deg, rgba(6, 39, 31, 0.84), rgba(7, 30, 29, 0.78));
}

.coin-orbit {
  position: relative;
  display: grid;
  width: 112px;
  height: 112px;
  transform: translateX(-18px);
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.coin-orbit::before,
.coin-orbit::after {
  content: none;
}

.coin-orbit img {
  display: block;
  width: 108%;
  height: 108%;
  object-fit: contain;
  filter: none;
}

.reward-copy h2 {
  margin: 0;
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: 0;
}

.reward-copy h2 span {
  color: var(--cream);
  font-size: 0.8em;
}

.reward-copy p {
  max-width: 150px;
  margin: 7px 0 10px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.3;
}

.points-panel {
  position: relative;
  min-height: 78px;
  padding: 0 0 24px 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.points-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.3;
}

.points-total {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 3px 0 9px;
}

.points-total strong {
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.points-total img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 201, 112, 0.34));
}

.progress {
  width: 100%;
  height: 4px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.level-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 3px 8px;
  border: 1px solid rgba(114, 211, 136, 0.78);
  border-radius: 999px;
  color: #9fed98;
  font-size: 10.5px;
  line-height: 1;
  white-space: nowrap;
}

.category-card svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.7;
}

.category-card span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(0.54rem, 2.38vw, 0.68rem);
  line-height: 1;
  text-align: center;
}

.category-card.active {
  border-color: rgba(247, 231, 200, 0.36);
  background: linear-gradient(145deg, rgba(247, 231, 200, 0.16), rgba(22, 43, 39, 0.58));
}

.discover-card,
.partner-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.discover-card {
  display: flex;
  align-items: stretch;
  min-height: 168px;
  margin-top: 13px;
  padding: 22px 18px;
  background:
    linear-gradient(90deg, rgba(8, 17, 16, 0.94) 0%, rgba(8, 18, 16, 0.82) 39%, rgba(8, 18, 16, 0.12) 68%),
    url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=980&q=82");
  background-position: center;
  background-size: cover;
}

.discover-card h2,
.partner-card h2,
.section-heading h2 {
  margin: 0;
  letter-spacing: 0;
}

.discover-card h2 {
  font-size: 30px;
  line-height: 1.08;
}

.discover-card p {
  max-width: 190px;
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.25;
}

.cream-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  color: #0b1110;
  background: linear-gradient(135deg, #fff5dc, #edd19a);
  font-size: 12px;
  font-weight: 700;
}

.cream-button span:last-child {
  font-size: 20px;
  line-height: 1;
}

.pager {
  position: absolute;
  left: 50%;
  bottom: 13px;
  display: flex;
  gap: 5px;
  transform: translateX(-50%);
}

.pager span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.pager .current {
  width: 18px;
  background: #fff;
}

.quick-section {
  margin-top: 18px;
}

.home-main-heading {
  margin-top: 9px;
  margin-bottom: 4px;
}

.feed-preview-section {
  margin-top: 18px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

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

.section-heading a {
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
}

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

.feed-preview-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(218px, 72%);
  gap: 11px;
  overflow-x: auto;
  padding: 1px 0 4px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.feed-preview-grid::-webkit-scrollbar {
  display: none;
}

.feed-preview-card {
  position: relative;
  display: flex;
  min-height: 136px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  overflow: hidden;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--text);
  scroll-snap-align: start;
  background:
    linear-gradient(180deg, rgba(4, 14, 13, 0.08), rgba(3, 12, 11, 0.88)),
    var(--trend-img) center / cover;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.feed-preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 12%, rgba(232, 181, 102, 0.18), transparent 8rem),
    linear-gradient(90deg, rgba(2, 10, 9, 0.72), rgba(2, 10, 9, 0.1));
  pointer-events: none;
}

.feed-preview-card > * {
  position: relative;
  z-index: 1;
}

.feed-preview-card span {
  color: #e8b566;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.feed-preview-card strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  line-height: 1.1;
}

.feed-preview-card small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.feed-preview-card.premium {
  border-color: rgba(232, 181, 102, 0.38);
  background:
    linear-gradient(180deg, rgba(4, 14, 13, 0.04), rgba(3, 12, 11, 0.9)),
    var(--trend-img) center / cover;
}

.brand-footer {
  display: grid;
  gap: 13px;
  margin-top: 20px;
  padding-bottom: 6px;
}

.brand-footer-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.brand-footer h2 {
  margin: 0 0 5px;
  font-size: 18px;
}

.brand-footer p {
  margin: 0;
  max-width: 230px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.social-block {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.social-block h2 {
  font-size: 13px;
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream);
  background: var(--glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(232, 181, 102, 0.55);
  box-shadow: 0 0 22px rgba(232, 181, 102, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.partner-mini-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(176px, 62%);
  gap: 10px;
  overflow-x: auto;
  padding: 1px 0 5px;
  scrollbar-width: none;
}

.partner-mini-grid::-webkit-scrollbar {
  display: none;
}

.partner-mini-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--glass-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.partner-mini-card > span {
  grid-row: 1 / 3;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(4, 14, 13, 0.06), rgba(4, 14, 13, 0.48)), var(--partner-thumb) center / cover;
}

.partner-mini-card strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.partner-mini-card small {
  color: var(--muted);
  font-size: 12px;
}

.store-section {
  margin-top: 12px;
}

.anima-store-wide-button {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 78px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(232, 181, 102, 0.2);
  border-radius: var(--radius-md);
  color: var(--cream);
  background:
    radial-gradient(circle at 48% 22%, rgba(232, 181, 102, 0.1), transparent 11rem),
    linear-gradient(145deg, rgba(12, 55, 48, 0.88), rgba(4, 22, 20, 0.92));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.anima-store-wide-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(114, 211, 136, 0.12), transparent 9rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 45%);
  pointer-events: none;
}

.anima-store-wide-button span {
  position: relative;
  z-index: 1;
  color: var(--gold-soft);
  font-size: clamp(22px, 7vw, 32px);
  font-weight: 300;
  letter-spacing: clamp(0.18em, 1.9vw, 0.34em);
  line-height: 1;
  text-shadow: 0 0 20px rgba(232, 181, 102, 0.18);
}

.anima-store-wide-button:focus-visible {
  outline: 2px solid rgba(232, 181, 102, 0.72);
  outline-offset: 3px;
}

.store-welcome-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.store-welcome-card img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(1.08) contrast(1.04) saturate(1.03);
}

.store-screen {
  gap: 16px;
  color: var(--text);
}

.store-header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  min-height: 48px;
}

.store-header h1,
.brand-title {
  margin: 0;
  color: var(--cream);
  font-size: clamp(17px, 4.8vw, 22px);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-title span {
  color: var(--gold-soft);
  font-weight: 300;
  letter-spacing: 0.24em;
  text-shadow: 0 0 18px rgba(232, 181, 102, 0.22);
}

.store-back {
  width: 38px;
  height: 38px;
  color: var(--cream);
}

.store-cart-button {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 26px rgba(0, 0, 0, 0.24);
}

.store-cart-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.store-cart-button span {
  position: absolute;
  top: -7px;
  right: -4px;
  display: grid;
  min-width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 999px;
  color: #07100e;
  background: linear-gradient(135deg, var(--cream), var(--gold));
  font-size: 10px;
  font-weight: 900;
}

.store-category-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 6px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.store-category-row::-webkit-scrollbar {
  display: none;
}

.store-category-row button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--muted);
  background: var(--glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  scroll-snap-align: start;
}

.store-category-row button.active {
  border-color: rgba(232, 181, 102, 0.68);
  color: #07100e;
  background: linear-gradient(135deg, var(--cream), var(--gold));
  box-shadow: 0 12px 28px rgba(232, 181, 102, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.store-category-row svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.store-category-row span {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.store-shelf {
  display: grid;
  gap: 10px;
  scroll-margin-top: 22px;
}

.store-shelf-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.store-shelf-heading h2 {
  margin: 0;
  color: var(--cream);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.store-shelf-heading a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.store-screen .store-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.store-product-card {
  position: relative;
  display: grid;
  min-height: 184px;
  align-content: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px;
  background: var(--glass-soft);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.store-favorite {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  width: 26px;
  height: 26px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 21px;
  line-height: 1;
}

.store-favorite.saved {
  color: var(--gold);
  text-shadow: 0 0 14px rgba(232, 181, 102, 0.55);
}

.store-product-visual {
  position: relative;
  display: grid;
  height: 88px;
  margin: 2px 0 8px;
  place-items: end center;
}

.store-product-visual::before {
  content: none;
}

.store-product-visual::after {
  content: none;
}

.store-product-visual img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.07) contrast(1.02) saturate(0.96);
}

.store-product-visual span {
  display: none;
}

.store-product-visual.coffee-bag::before,
.store-product-visual.berry-bag::before {
  width: 72px;
  height: 114px;
  border-radius: 8px 8px 12px 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(135deg, #17231f, #050b0a);
}

.store-product-visual.mug::before {
  width: 92px;
  height: 80px;
  border-radius: 14px 14px 28px 28px;
  background: linear-gradient(135deg, #182420, #070d0c);
}

.store-product-visual.mug::after {
  right: calc(50% - 62px);
  bottom: 38px;
  width: 28px;
  height: 35px;
  border-radius: 50%;
  background: transparent;
}

.store-product-visual.strawberry-box::before {
  width: 108px;
  height: 66px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 26% 35%, #b53428 0 8px, transparent 9px),
    radial-gradient(circle at 47% 28%, #c64032 0 8px, transparent 9px),
    radial-gradient(circle at 68% 42%, #b53428 0 8px, transparent 9px),
    linear-gradient(135deg, #9b6b35, #573718);
}

.store-product-visual.jam::before,
.store-product-visual.pollen::before,
.store-product-visual.dropper::before {
  width: 66px;
  height: 96px;
}

.store-product-card h3,
.store-product-card p {
  margin: 0;
}

.store-product-card h3 {
  min-height: 30px;
  color: #fff;
  font-size: 13px;
  line-height: 1.18;
}

.store-product-card p {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11.5px;
}

.store-product-card strong {
  margin-top: 8px;
  color: var(--cream);
  font-size: 12px;
}

.store-add {
  position: absolute;
  right: 9px;
  bottom: 9px;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(232, 181, 102, 0.42);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.07);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}

.store-cart-panel {
  position: fixed;
  inset: auto var(--page-x) calc(var(--nav-height) + var(--nav-bottom) + 12px);
  z-index: 28;
  transform: translateY(18px);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.about-screen,
.partners-screen,
.contact-screen {
  gap: 16px;
}

.brand-kicker {
  margin: 0;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-hero,
.partners-intro-card,
.contact-card {
  display: grid;
  gap: 12px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 80% 18%, rgba(232, 181, 102, 0.13), transparent 9rem),
    radial-gradient(circle at 18% 8%, rgba(114, 211, 136, 0.11), transparent 9rem),
    var(--glass-soft);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.about-hero h2,
.partners-intro-card h2,
.contact-card h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.06;
}

.about-hero p,
.partners-intro-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.about-grid {
  display: grid;
  gap: 10px;
}

.about-grid article,
.partner-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 16px 38px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.about-grid article {
  display: grid;
  gap: 7px;
  padding: 15px;
}

.about-grid span {
  color: var(--gold);
}

.about-grid h3,
.partner-card h3,
.about-cta h2 {
  margin: 0;
}

.about-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.about-cta {
  display: grid;
  gap: 13px;
  padding: 18px;
  border: 1px solid rgba(232, 181, 102, 0.24);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 14% 8%, rgba(232, 181, 102, 0.12), transparent 8rem),
    var(--glass-soft);
}

.about-cta p {
  margin: 0;
  color: var(--muted);
}

.about-cta div,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-list {
  display: grid;
  gap: 11px;
}

.partner-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  overflow: hidden;
  padding: 13px;
}

.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 13, 12, 0.78), rgba(3, 13, 12, 0.95)),
    var(--partner-img) center / cover;
  opacity: 0.62;
  pointer-events: none;
}

.partner-card > * {
  position: relative;
  z-index: 1;
}

.partner-logo {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(232, 181, 102, 0.34);
  border-radius: 17px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.partner-card p,
.partner-card span,
.partner-card small {
  margin: 0;
  color: var(--muted);
}

.partner-card p {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
}

.partner-card span,
.partner-card small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.35;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.tag-row em {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  font-size: 10px;
  font-style: normal;
}

.partner-card .mini-cta {
  grid-column: 2;
  width: max-content;
  margin-top: 2px;
}

.store-cart-panel.open {
  transform: translateY(0);
  opacity: 1;
}

.store-cart-sheet {
  border: 1px solid rgba(232, 181, 102, 0.28);
  border-radius: 22px;
  padding: 16px;
  background: rgba(5, 18, 16, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
}

.store-cart-head,
.store-cart-items article,
.store-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.store-cart-head h2 {
  margin: 0;
  color: #efbd70;
  font-size: 18px;
}

.store-cart-head button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font-size: 20px;
}

.store-cart-items {
  display: grid;
  gap: 9px;
  margin: 14px 0;
}

.store-cart-items article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 9px;
}

.store-cart-items h3,
.store-cart-items p,
.store-cart-empty {
  margin: 0;
}

.store-cart-items h3 {
  font-size: 13px;
}

.store-cart-items p,
.store-cart-empty {
  color: var(--muted);
  font-size: 12px;
}

.store-cart-items strong,
.store-cart-total strong {
  color: #f2c87f;
  font-size: 13px;
}

.store-cart-total {
  margin: 4px 0 14px;
  color: var(--muted);
}

.quick-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 121px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 8px 10px;
  border-radius: 15px;
  color: var(--text);
  text-align: center;
}

.quick-card.visual {
  justify-content: flex-start;
  overflow: visible;
  min-height: 236px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quick-card.visual::before {
  display: none;
}

.quick-card.visual > * {
  position: relative;
  z-index: 1;
}

.quick-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.74);
}

.quick-card.visual svg {
  position: static;
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  padding: 22px;
  box-sizing: content-box;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.035);
  color: var(--cream);
  filter: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 30px rgba(0, 0, 0, 0.18);
}

.quick-card strong {
  display: block;
  min-height: 48px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: initial;
  white-space: normal;
  font-size: 16px;
  line-height: 1.16;
  text-align: center;
}

.quick-card > span:not(.round-arrow) {
  display: block;
  min-height: 72px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  overflow-wrap: normal;
  word-break: normal;
}

.round-arrow {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 12px auto 0;
  place-items: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 28px;
}

.quick-card.visual .round-arrow {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.plus-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 136px;
  gap: 8px;
  min-height: 154px;
  margin-top: 13px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(232, 181, 102, 0.36);
  border-radius: 22px;
  background:
    radial-gradient(circle at 17% 31%, rgba(232, 181, 102, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(7, 35, 30, 0.86), rgba(3, 16, 15, 0.86));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.plus-brand {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.plus-mark {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 0 8px rgba(255, 201, 112, 0.24));
}

.plus-card h2 {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  line-height: 1;
}

.plus-card h2 img {
  display: block;
  width: 74px;
  height: 18px;
  object-fit: contain;
  object-position: left center;
}

.plus-card h2 span {
  padding: 2px 6px;
  border-radius: 5px;
  color: #07100e;
  background: linear-gradient(135deg, #f7e0ad, #c99243);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
}

.plus-brand p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  line-height: 1.22;
}

.plus-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
  margin-top: 9px;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item {
  display: grid;
  min-width: 0;
  place-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 7.8px;
  line-height: 1.12;
  text-align: center;
}

.benefit-item > span {
  display: block;
}

.benefit-icon {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  object-fit: cover;
  object-position: center;
}

.plus-price {
  min-width: 0;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.plus-price p {
  margin: 0 0 7px;
  color: #e8b566;
  font-size: 14px;
  font-weight: 650;
}

.plus-price-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
  min-width: 0;
  white-space: nowrap;
}

.plus-price-row strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.plus-price-row span {
  color: #e8b566;
  font-size: 8.5px;
  font-weight: 800;
}

.plus-price-row small {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 8.2px;
  line-height: 1;
}

.plus-price > small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.25;
}

.plus-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 30px;
  margin-top: 9px;
  padding: 0 8px;
  border-radius: 999px;
  color: #06100e;
  background: linear-gradient(135deg, #fff0cc, #c78d3d);
  font-size: 9.6px;
  font-weight: 800;
  white-space: nowrap;
}

.plus-note {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 6px;
  align-items: center;
  margin-top: 8px;
  padding: 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.plus-note span {
  color: var(--cream);
  font-size: 15px;
}

.plus-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 8.8px;
  line-height: 1.18;
}

.plus-learn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 9px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.68);
  font-size: 9.6px;
  line-height: 1;
  cursor: pointer;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.plus-learn span {
  color: #e8b566;
  font-size: 16px;
}

.plus-learn:hover,
.plus-learn:focus-visible {
  color: rgba(255, 239, 211, 0.92);
}

.utility-nav {
  position: fixed;
  left: 50%;
  bottom: calc(var(--nav-height) + var(--nav-bottom) + 16px);
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  width: min(calc(100vw - (var(--page-x) * 2)), 382px);
  padding: 12px;
  border: 1px solid rgba(247, 231, 200, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(247, 231, 200, 0.1), transparent 42%),
    linear-gradient(145deg, rgba(18, 39, 36, 0.72), rgba(6, 18, 17, 0.7));
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(28px) saturate(1.18);
  transform: translate(-50%, 18px) scale(0.96);
  transition:
    opacity 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.utility-nav[hidden] {
  display: grid;
}

.phone-shell.hub-open .utility-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.utility-nav a {
  display: flex;
  min-width: 0;
  min-height: 72px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.05;
  text-align: center;
}

.utility-nav svg {
  width: 24px;
  height: 24px;
}

.utility-nav .active {
  border-color: rgba(247, 231, 200, 0.22);
  color: var(--cream);
  background: linear-gradient(145deg, rgba(247, 231, 200, 0.12), rgba(255, 255, 255, 0.035));
}

.utility-nav .emergency-tool {
  border-color: rgba(255, 123, 123, 0.28);
  color: #ffc2bc;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 104, 104, 0.14), transparent 56%),
    linear-gradient(145deg, rgba(80, 24, 24, 0.24), rgba(255, 255, 255, 0.025));
}

.orb {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(247, 231, 200, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 67% 68%, rgba(248, 122, 70, 0.78), transparent 21%),
    radial-gradient(circle at 35% 35%, #5130b9, transparent 43%),
    radial-gradient(circle at 50% 50%, #183458, #050b12);
  box-shadow: 0 0 10px rgba(217, 192, 122, 0.45);
}

.partner-card {
  min-height: 126px;
  margin-top: 11px;
  padding: 27px 18px;
  background:
    linear-gradient(110deg, rgba(7, 38, 32, 0.96) 0%, rgba(9, 45, 37, 0.9) 48%, rgba(8, 27, 24, 0.08) 49%),
    url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=980&q=82");
  background-position: center right;
  background-size: cover;
}

.partner-card::after {
  content: "";
  position: absolute;
  right: 88px;
  bottom: -52px;
  width: 102px;
  height: 166px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(160deg, transparent 30%, rgba(3, 23, 18, 0.96) 31%);
  transform: rotate(11deg);
}

.partner-card > div {
  position: relative;
  z-index: 1;
}

.partner-card h2 {
  font-size: 19px;
}

.partner-card p {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

.partner-card a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--green);
  font-size: 15px;
  font-weight: 650;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: var(--nav-bottom);
  z-index: 14;
  display: grid;
  grid-template-columns: 1fr 1fr 78px 1fr 1fr;
  align-items: center;
  width: min(calc(100vw - 20px), 410px);
  height: var(--nav-height);
  padding: 8px 10px 9px;
  border-radius: 34px;
  transform: translateX(-50%);
  background: linear-gradient(145deg, rgba(17, 35, 33, 0.9), rgba(9, 23, 22, 0.82));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

@media (min-width: 520px) {
  .bottom-nav,
  .utility-nav {
    position: fixed;
  }
}

.bottom-nav a,
.center-action {
  display: flex;
  min-width: 0;
  min-height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1;
  pointer-events: auto;
}

.bottom-nav a.active,
.center-action[aria-expanded="true"] {
  color: var(--cream);
}

.bottom-nav svg {
  width: 23px;
  height: 23px;
}

.center-action {
  position: relative;
  width: 82px;
  height: 82px;
  min-height: 82px;
  margin: -19px auto -9px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 218, 150, 0.94);
  border-radius: 50%;
  color: var(--cream) !important;
  background:
    radial-gradient(circle at 50% 50%, rgba(17, 50, 35, 0.2), rgba(1, 7, 6, 0.52)),
    url("./assets/anima-hub-button.png") center / 142% 142% no-repeat;
  box-shadow:
    0 0 24px rgba(255, 203, 119, 0.52),
    0 14px 32px rgba(0, 0, 0, 0.58),
    inset 0 1px 8px rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.center-action:active {
  transform: translateY(1px) scale(0.985);
}

.center-action::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 205, 125, 0.36), transparent 68%);
  opacity: 0.9;
}

.center-action::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 230, 185, 0.18),
    inset 0 -14px 20px rgba(0, 0, 0, 0.2);
}

.center-action[aria-expanded="true"] {
  box-shadow:
    0 0 38px rgba(255, 210, 132, 0.76),
    0 14px 32px rgba(0, 0, 0, 0.56),
    inset 0 1px 10px rgba(255, 255, 255, 0.1),
    inset 0 -12px 22px rgba(0, 0, 0, 0.24);
}

.hub-logo {
  display: none;
}

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

.screen-view {
  min-height: 100dvh;
  padding: calc(var(--ios-top-buffer) + 22px) var(--page-x) calc(var(--nav-height) + var(--nav-bottom) + 34px);
}

.screen-view.detail-enter .screen-inner {
  animation: detailScreenIn 520ms cubic-bezier(0.2, 0.9, 0.24, 1) both;
}

.screen-view.detail-enter .stay-hero-detail,
.screen-view.detail-enter .stay-detail-card,
.screen-view.detail-enter .stay-booking-panel,
.screen-view.detail-enter .stay-gallery-strip,
.screen-view.detail-enter .stay-facts {
  animation: detailBlockIn 560ms cubic-bezier(0.2, 0.9, 0.24, 1) both;
}

.screen-view.detail-enter .stay-detail-card:nth-of-type(2),
.screen-view.detail-enter .stay-booking-panel,
.screen-view.detail-enter .price-details,
.screen-view.detail-enter .house-rules,
.screen-view.detail-enter .amenities-card {
  animation-delay: 70ms;
}

@keyframes detailScreenIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes detailBlockIn {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.screen-inner {
  display: grid;
  gap: 16px;
}

.screen-header {
  display: grid;
  gap: 8px;
}

.screen-header.internal {
  gap: 10px;
}

.screen-header.internal.root {
  padding-top: 4px;
}

.screen-nav-row {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  min-height: 42px;
}

.back-button {
  display: inline-flex;
  width: 40px;
  height: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 26px rgba(0, 0, 0, 0.22);
}

.back-button svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.4;
}

.screen-brand {
  display: block;
  width: 160px;
  height: 38px;
}

.screen-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.screen-nav-row h1 {
  margin: 0;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 26px;
  line-height: 1.05;
}

.screen-header.internal > p {
  max-width: 320px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

.screen-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.screen-actions .location-pill {
  max-width: 92px;
}

.screen-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(14, 29, 28, 0.78), rgba(11, 25, 25, 0.64));
  backdrop-filter: blur(22px);
}

.screen-search svg {
  width: 22px;
  height: 22px;
}

.screen-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: 14px;
}

.screen-search input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.filter-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.filter-chips::-webkit-scrollbar {
  display: none;
}

.filter-chips button {
  flex: 0 0 auto;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
  font-size: 12px;
}

.filter-chips button.active {
  color: #06100e;
  border-color: rgba(247, 231, 200, 0.6);
  background: linear-gradient(135deg, #fff0cc, #c78d3d);
}

.feature-card,
.listing-card,
.ai-card,
.welcome-card,
.feed-card,
.city-feed-card,
.experience-card,
.profile-card,
.map-preview {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(18, 39, 36, 0.72), rgba(6, 18, 17, 0.68));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.feature-card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(3, 12, 12, 0.05), rgba(2, 9, 8, 0.82)),
    var(--feature-img) center / cover;
}

.feature-card h2 {
  max-width: 270px;
  margin: 4px 0 8px;
  font-size: 28px;
  line-height: 1.05;
}

.feature-card p,
.listing-card p,
.screen-section > h2 {
  margin: 0;
  color: #e8b566;
  font-size: 12px;
  font-weight: 700;
}

.feature-card span,
.listing-card span,
.feed-card p,
.profile-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

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

.save-button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.save-button.saved {
  color: #07100e;
  background: linear-gradient(135deg, #fff0cc, #c78d3d);
}

.feature-card > .save-button {
  position: absolute;
  top: 14px;
  right: 14px;
}

.save-button.inline {
  width: 30px;
  height: 30px;
}

.gold-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  padding: 0 16px;
  color: #06100e;
  background: linear-gradient(135deg, #fff0cc, #c78d3d);
  font-size: 13px;
  font-weight: 800;
}

.secondary-action {
  margin-left: 8px;
  color: var(--cream);
  border: 1px solid rgba(247, 231, 200, 0.36);
  background: rgba(255, 255, 255, 0.07);
}

.reward-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--cream) !important;
  font-size: 11px !important;
  white-space: nowrap;
}

.reward-badge img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

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

.section-heading.compact {
  margin: 0;
}

.section-heading.compact h2 {
  font-size: 19px;
}

.horizontal-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(146px, 45%);
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.horizontal-list::-webkit-scrollbar {
  display: none;
}

.horizontal-list article,
.collection-grid a,
.settings-grid a {
  min-height: 94px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
}

.horizontal-list h3,
.listing-card h3,
.feed-card h2,
.profile-card h2,
.ai-card h2,
.welcome-card h2,
.map-preview h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.18;
}

.horizontal-list p,
.horizontal-list span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
}

.listing-stack,
.feed-stack {
  display: grid;
  gap: 10px;
}

.listing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
}

.listing-actions {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.ai-card,
.welcome-card,
.profile-card,
.map-preview {
  padding: 16px;
}

.profile-screen {
  gap: 14px;
}

.profile-control-card,
.settings-list,
.settings-modal-panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(18, 39, 36, 0.76), rgba(6, 18, 17, 0.68));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.profile-control-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-radius: 24px;
  padding: 14px;
}

.profile-control-card .avatar {
  width: 54px;
  height: 54px;
}

.profile-control-card h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
}

.profile-plus-mini {
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(232, 181, 102, 0.34));
}

.profile-control-card p {
  margin: 3px 0;
  color: var(--cream);
  font-size: 12px;
}

.profile-control-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.profile-control-card .progress {
  margin-top: 7px;
}

.settings-section {
  display: grid;
  gap: 8px;
}

.profile-membership-section {
  display: grid;
  gap: 12px;
}

.profile-membership-section > h2,
.settings-section > h2 {
  margin: 0 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.settings-list {
  overflow: hidden;
  border-radius: 22px;
}

.settings-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  gap: 11px;
  align-items: center;
  min-height: 62px;
  padding: 10px 13px;
  color: var(--text);
}

.settings-row + .settings-row {
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.settings-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: #06100e;
  background: linear-gradient(135deg, #fff0cc, #c78d3d);
  font-size: 14px;
  font-weight: 900;
}

.settings-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.settings-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.settings-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.settings-chevron {
  color: rgba(255, 255, 255, 0.42);
  font-size: 24px;
  line-height: 1;
}

.settings-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px var(--page-x) calc(var(--nav-height) + var(--nav-bottom) + 12px);
}

.settings-modal.centered {
  align-items: center;
  padding: 18px var(--page-x);
}

.settings-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(7px);
}

.settings-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(18, 39, 36, 0.92), rgba(6, 18, 17, 0.9));
  border: 1px solid var(--line);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: modal-pop-in 220ms cubic-bezier(.22,.9,.28,1);
}

.settings-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 10px;
}

.settings-modal-head h2 {
  margin: 0;
  font-size: 19px;
}

.settings-modal-head button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  font-size: 20px;
}

.settings-modal-body {
  display: grid;
  gap: 8px;
  padding: 0 14px 16px;
}

.settings-modal-body > button,
.toggle-row {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 13px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.settings-modal-body > button.selected {
  border-color: rgba(232, 181, 102, 0.58);
  background: rgba(232, 181, 102, 0.12);
}

.settings-modal-body button strong {
  color: #e8b566;
  font-size: 12px;
}

.toggle-row input {
  display: none;
}

.toggle-row i {
  position: relative;
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff0cc, #c78d3d);
}

.toggle-row i::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #06100e;
}

.settings-modal-text {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.profile-edit-form {
  display: grid;
  gap: 10px;
}

.profile-edit-form label {
  display: grid;
  gap: 6px;
}

.profile-edit-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.profile-edit-form input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  outline: 0;
}

.profile-edit-form input:focus {
  border-color: rgba(232, 181, 102, 0.44);
  box-shadow: 0 0 0 3px rgba(232, 181, 102, 0.1);
}

.profile-edit-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.guest-gate-modal {
  max-width: 420px;
}

.guest-gate-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 14px;
}

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

.notification-feed {
  display: grid;
  gap: 10px;
}

.notification-overlay {
  position: absolute;
  inset: 0;
  z-index: 90;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: calc(var(--ios-top-buffer) + 72px) var(--page-x) 28px;
  animation: notification-fade-in 180ms ease-out;
}

.notification-overlay-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 12, 11, 0.68);
  backdrop-filter: blur(20px) saturate(0.86);
  -webkit-backdrop-filter: blur(20px) saturate(0.86);
}

.notification-popover {
  position: relative;
  z-index: 1;
  width: min(100%, 380px);
  max-height: min(74vh, 620px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(18, 39, 36, 0.96), rgba(6, 18, 17, 0.98));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: modal-pop-in 220ms cubic-bezier(.22,.9,.28,1);
}

.notification-popover-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.notification-popover-head strong {
  display: block;
  margin-top: 2px;
  font-size: 24px;
  line-height: 1.1;
}

.notification-head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.notification-head-actions button,
.notification-popover-head button {
  min-height: 30px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.notification-head-actions button:first-child {
  width: auto;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
}

.notification-head-actions button:last-child,
.notification-popover-head > button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 18px;
}

.notification-popover-body {
  display: grid;
  gap: 10px;
  min-width: 0;
  max-height: calc(min(74vh, 620px) - 80px);
  overflow: auto;
  overflow-x: hidden;
  padding: 14px 18px 18px;
}

.notification-group-title {
  padding: 4px 2px 0;
  color: var(--accent-green);
  font-size: 13px;
  font-weight: 800;
}

.notification-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  min-width: 0;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.notification-type-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.notification-item-content {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.notification-item.unread {
  border-color: rgba(232, 181, 102, 0.34);
  background: linear-gradient(145deg, rgba(232, 181, 102, 0.12), rgba(255, 255, 255, 0.035));
}

.notification-item.read {
  opacity: 0.82;
}

.notification-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.notification-item-head strong {
  font-size: 14px;
  overflow-wrap: anywhere;
}

.notification-item-head small {
  color: var(--dim);
  font-size: 11px;
  white-space: nowrap;
}

.notification-item-text {
  display: block;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.notification-item-text,
.notification-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.notification-empty {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.notification-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.035);
}

.notification-pager button {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.notification-pager button:disabled {
  opacity: 0.45;
}

.notification-detail-card {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.notification-detail-head {
  display: grid;
  gap: 8px;
}

.notification-detail-head strong {
  font-size: 16px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.notification-back {
  justify-self: start;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.notification-detail-meta {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 12px;
}

.notification-detail-meta b {
  color: var(--text);
}

.notification-detail-text {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.notification-detail-actions {
  display: grid;
  gap: 10px;
}

.notification-reply-form {
  display: grid;
  gap: 10px;
}

.notification-reply-form textarea {
  min-height: 104px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  resize: vertical;
  outline: 0;
}

@media (max-width: 430px) {
  .notification-overlay {
    padding-right: 12px;
    padding-left: 12px;
  }

  .notification-popover {
    width: 100%;
  }
}

@keyframes notification-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modal-pop-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.request-preview {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(232, 181, 102, 0.24);
  border-radius: 16px;
  padding: 0 13px;
  color: var(--muted);
  background: rgba(232, 181, 102, 0.08);
}

.request-preview span {
  font-size: 12px;
}

.request-preview strong {
  color: #e8b566;
  font-size: 12px;
  text-align: right;
}

.telegram-button {
  width: 100%;
}

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

.profile-card-head p {
  margin: 0 0 4px;
  color: #e8b566;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-card-head img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(232, 181, 102, 0.22));
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

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

.membership-benefits span,
.achievement-grid span {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  line-height: 1.2;
}

.ai-card p,
.welcome-card p {
  margin: 7px 0 13px;
  color: var(--muted);
  font-size: 13px;
}

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

.collection-grid a,
.settings-grid a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 74px;
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
}

.collection-grid span,
.settings-grid span {
  color: var(--green);
  font-size: 12px;
}

.map-preview div {
  position: relative;
  height: 138px;
  margin: 12px 0;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.08) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, 0.08) 50%, transparent 51%),
    radial-gradient(circle at 40% 40%, rgba(232, 181, 102, 0.2), transparent 20%),
    #061716;
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.map-preview div span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e8b566;
  box-shadow: 0 0 18px #e8b566;
}

.map-preview div span:nth-child(1) { left: 24%; top: 35%; }
.map-preview div span:nth-child(2) { left: 58%; top: 28%; }
.map-preview div span:nth-child(3) { left: 68%; top: 62%; }
.map-preview div span:nth-child(4) { left: 36%; top: 72%; }

.feed-card {
  padding: 15px;
}

.feed-head {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.feed-head > span,
.avatar {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: #06100e;
  background: linear-gradient(135deg, #fff0cc, #c78d3d);
  font-weight: 800;
}

.feed-head h3 {
  margin: 0;
  font-size: 14px;
}

.feed-head p,
.feed-meta {
  color: var(--muted);
  font-size: 11px;
}

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

.feed-screen {
  gap: 14px;
}

.feed-list,
.experience-list {
  display: grid;
  gap: 14px;
}

.city-feed-card {
  overflow: hidden;
}

.city-feed-card > img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.city-feed-body {
  display: grid;
  gap: 10px;
  padding: 15px;
}

.feed-kicker,
.feed-card-meta,
.experience-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.feed-mini-author {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
}

.feed-mini-author > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #06100e;
  background: linear-gradient(135deg, #fff0cc, #c78d3d);
  font-size: 12px;
  font-weight: 900;
}

.feed-mini-author strong,
.feed-mini-author small {
  display: block;
}

.feed-mini-author strong {
  font-size: 13px;
}

.feed-mini-author small {
  color: var(--muted);
  font-size: 11px;
}

.feed-kicker > span,
.experience-card p {
  margin: 0;
  color: #e8b566;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.city-feed-card h2,
.experience-card h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.08;
}

.city-feed-card p,
.experience-card small {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.feed-card-meta {
  align-items: flex-start;
}

.feed-card-meta > span,
.experience-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.city-feed-card.experience {
  border-color: rgba(232, 181, 102, 0.38);
  box-shadow: 0 20px 60px rgba(232, 181, 102, 0.08), var(--shadow);
}

.experience-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 12px;
  overflow: hidden;
  padding: 10px;
}

.experience-card > img {
  width: 116px;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
}

.experience-card > div:not(.experience-actions) {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 4px 2px;
}

.experience-actions {
  grid-column: 1 / -1;
  padding-top: 2px;
}

.post-fab {
  position: fixed;
  right: calc(var(--page-x) + var(--safe-right));
  bottom: calc(var(--nav-height) + var(--nav-bottom) + 18px);
  z-index: 9;
  min-height: 42px;
  border: 1px solid rgba(247, 231, 200, 0.5);
  border-radius: 999px;
  padding: 0 18px;
  color: #06100e;
  background: linear-gradient(135deg, #fff0cc, #c78d3d);
  font-weight: 800;
}

.profile-hero {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(18, 39, 36, 0.72), rgba(6, 18, 17, 0.68));
}

.profile-hero .avatar {
  width: 58px;
  height: 58px;
}

.profile-hero h2 {
  margin: 0;
  font-size: 22px;
}

.profile-hero p {
  margin: 4px 0 8px;
  color: var(--muted);
}

.progress.wide {
  width: 100%;
}

.timeline h2 {
  margin: 10px 0 0;
  font-size: 16px;
}

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

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

.detail-grid span {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  line-height: 1.3;
}

.exchange-card {
  border: 1px solid rgba(232, 181, 102, 0.24);
  border-radius: 24px;
  padding: 16px;
  background:
    radial-gradient(circle at 85% 0%, rgba(232, 181, 102, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(18, 39, 36, 0.78), rgba(6, 18, 17, 0.7));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.exchange-card h2,
.exchange-card h3 {
  margin: 0;
  font-size: 22px;
}

.exchange-card p {
  margin: 7px 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.transport-screen {
  gap: 14px;
}

.transport-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.transport-tabs::-webkit-scrollbar {
  display: none;
}

.transport-tabs button {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
}

.transport-tabs button.active {
  color: #06100e;
  border-color: rgba(247, 231, 200, 0.64);
  background: linear-gradient(135deg, #fff0cc, #c78d3d);
}

.transport-tabs span {
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 650;
}

.transport-recommended,
.transport-card,
.transport-service-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 16%, rgba(232, 181, 102, 0.13), transparent 7rem),
    linear-gradient(145deg, rgba(18, 39, 36, 0.76), rgba(6, 18, 17, 0.68));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.transport-recommended {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
}

.transport-recommended p,
.transport-service-panel > p,
.transport-card p {
  margin: 0;
  color: #e8b566;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.transport-recommended h2,
.transport-service-panel h2 {
  margin: 4px 0 5px;
  font-size: 21px;
  line-height: 1.08;
}

.transport-recommended span,
.transport-service-panel > span,
.transport-card span,
.route-list span,
.route-list small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.transport-list,
.route-list {
  display: grid;
  gap: 11px;
}

.transport-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 12px;
  overflow: hidden;
  padding: 10px;
}

.transport-card > img {
  width: 116px;
  height: 134px;
  object-fit: cover;
  border-radius: 16px;
}

.transport-card-body {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 7px;
}

.transport-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.transport-card h2,
.route-list h4 {
  margin: 0;
  font-size: 17px;
  line-height: 1.1;
}

.transport-card small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.3;
}

.transport-card .gold-button {
  justify-self: start;
  min-height: 32px;
}

.transport-service-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.transport-service-panel h3 {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.3;
}

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

.transport-scenario-grid article,
.route-list article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.transport-actions,
.route-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.route-list article > div {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.bus-list article {
  align-items: flex-start;
}

.plus-details-screen {
  gap: 16px;
}

.plus-detail-hero {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(232, 181, 102, 0.34);
  border-radius: 24px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(3, 12, 11, 0.08), rgba(2, 8, 7, 0.9)),
    radial-gradient(circle at 78% 20%, rgba(232, 181, 102, 0.24), transparent 10rem),
    url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1000&q=82") center / cover;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.plus-detail-hero p,
.plus-copy-block h2,
.plus-detail-section h2,
.plus-hidden-section h2,
.plus-rewards-block h2,
.plus-final-cta h2 {
  margin: 0;
}

.plus-detail-hero p {
  color: #e8b566;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plus-detail-hero h2 {
  margin: 6px 0;
  font-size: 34px;
  line-height: 1;
}

.plus-detail-hero span,
.plus-detail-hero small {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

.plus-detail-hero span {
  font-size: 15px;
}

.plus-detail-hero small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.plus-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.plus-detail-actions strong {
  color: var(--cream);
  font-size: 13px;
}

.plus-copy-block,
.plus-detail-section,
.plus-hidden-section,
.plus-rewards-block,
.plus-final-cta {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px;
  background:
    radial-gradient(circle at 88% 4%, rgba(232, 181, 102, 0.12), transparent 8rem),
    linear-gradient(145deg, rgba(18, 39, 36, 0.76), rgba(6, 18, 17, 0.68));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.plus-copy-block p,
.plus-hidden-section p,
.plus-rewards-block p,
.plus-final-cta p,
.plus-benefit-grid p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.38;
}

.plus-copy-block p:last-child {
  margin-bottom: 0;
}

.plus-benefit-grid,
.partner-privileges-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.plus-benefit-grid article,
.partner-privileges-grid article {
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.045);
}

.plus-benefit-grid article > span,
.partner-privileges-grid span {
  display: grid;
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  place-items: center;
  border-radius: 50%;
  color: #06100e;
  background: linear-gradient(135deg, #fff0cc, #c78d3d);
  font-weight: 900;
}

.plus-benefit-grid h3 {
  margin: 0;
  font-size: 13px;
  line-height: 1.12;
}

.hidden-access-scroll,
.plus-experience-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 68%);
  gap: 9px;
  margin-top: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.hidden-access-scroll::-webkit-scrollbar,
.plus-experience-list::-webkit-scrollbar {
  display: none;
}

.hidden-access-scroll article {
  min-height: 138px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(232, 181, 102, 0.22);
  border-radius: 17px;
  padding: 12px;
  scroll-snap-align: start;
  background:
    linear-gradient(180deg, rgba(2, 10, 9, 0.04), rgba(2, 10, 9, 0.9)),
    var(--hidden-img) center / cover;
}

.hidden-access-scroll h3 {
  margin: 0 0 5px;
  font-size: 14px;
}

.hidden-access-scroll span,
.plus-experience-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  line-height: 1.35;
}

.partner-privileges-grid article {
  min-height: 72px;
}

.partner-privileges-grid p {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.25;
}

.plus-experience-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.045);
  scroll-snap-align: start;
}

.plus-experience-card img {
  width: 100%;
  height: 92px;
  object-fit: cover;
}

.plus-experience-card div {
  display: grid;
  gap: 6px;
  padding: 11px;
}

.plus-experience-card span {
  width: max-content;
  border-radius: 999px;
  padding: 3px 8px;
  color: #06100e;
  background: linear-gradient(135deg, #fff0cc, #c78d3d);
  font-size: 10px;
  font-weight: 900;
}

.plus-experience-card h3 {
  margin: 0;
  font-size: 13px;
}

.plus-experience-card p {
  margin: 0;
}

.plus-rewards-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  align-items: center;
  gap: 14px;
}

.plus-reward-visual {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.plus-reward-visual img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.plus-reward-visual span {
  color: #e8b566;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.plus-final-cta {
  text-align: center;
}

.plus-final-cta div {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.eat-screen {
  gap: 15px;
}

.ambient-line {
  margin: -4px 0 0;
  color: #e8b566;
  font-size: 13px;
  text-align: center;
}

.eat-search {
  border-color: rgba(232, 181, 102, 0.22);
  background: linear-gradient(90deg, rgba(28, 34, 26, 0.82), rgba(12, 24, 22, 0.68));
}

.eat-chips {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.eat-chips::-webkit-scrollbar {
  display: none;
}

.eat-chips button {
  flex: 0 0 auto;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 17px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  backdrop-filter: blur(18px);
}

.eat-chips button.active {
  color: #06100e;
  border-color: rgba(247, 231, 200, 0.64);
  background: linear-gradient(135deg, #fff0cc, #c78d3d);
}

.eat-list-section,
.eat-map-sync {
  display: grid;
  gap: 10px;
}

.eat-map-card {
  position: relative;
  min-height: 156px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 42% 38%, rgba(114, 211, 136, 0.16), transparent 9rem),
    radial-gradient(circle at 70% 24%, rgba(232, 181, 102, 0.12), transparent 8rem),
    linear-gradient(145deg, rgba(14, 38, 35, 0.86), rgba(3, 13, 12, 0.92));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.eat-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.4;
}

.eat-map-marker {
  position: absolute;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(232, 181, 102, 0.48);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.eat-map-marker span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(232, 181, 102, 0.6);
}

.eat-map-caption {
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.eat-map-caption strong {
  color: var(--cream);
}

.eat-place-card p {
  margin: 0;
  color: #e8b566;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.eat-place-card span,
.eat-place-card small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.35;
}

.eat-list {
  display: grid;
  gap: 12px;
}

.eat-place-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(18, 39, 36, 0.76), rgba(6, 18, 17, 0.68));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.eat-place-card > img {
  width: 112px;
  height: 142px;
  object-fit: cover;
  border-radius: 16px;
}

.eat-place-card > div {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 7px;
}

.eat-place-top,
.eat-place-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.eat-place-card h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.08;
}

.eat-place-actions {
  align-items: flex-end;
  flex-wrap: wrap;
}

.eat-place-actions .gold-button {
  min-height: 31px;
  padding-inline: 12px;
}

.place-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.place-tags span {
  border: 1px solid rgba(232, 181, 102, 0.24);
  border-radius: 999px;
  padding: 3px 7px;
  color: rgba(247, 231, 200, 0.82);
  background: rgba(232, 181, 102, 0.08);
  font-size: 9.5px;
  line-height: 1;
  white-space: nowrap;
}

.mini-icon-button {
  display: inline-grid;
  width: 30px;
  height: 30px;
  min-width: 30px;
  place-items: center;
  border: 1px solid rgba(232, 181, 102, 0.3);
  border-radius: 50%;
  color: #e8b566;
  background: rgba(255, 255, 255, 0.055);
  font-size: 14px;
  line-height: 1;
  backdrop-filter: blur(14px);
}

.food-shelf {
  display: grid;
  gap: 10px;
}

.food-shelf-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(168px, 62%);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.food-shelf-scroll::-webkit-scrollbar {
  display: none;
}

.food-shelf-scroll article {
  position: relative;
  min-height: 156px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(232, 181, 102, 0.24);
  border-radius: 18px;
  padding: 12px;
  scroll-snap-align: start;
  background:
    linear-gradient(180deg, rgba(2, 10, 9, 0.04), rgba(2, 10, 9, 0.88)),
    var(--food-img) center / cover;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.food-shelf-scroll .save-button {
  position: absolute;
  top: 10px;
  right: 10px;
}

.food-shelf-scroll article > div {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.food-shelf-scroll span {
  color: #e8b566;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.food-shelf-scroll h3,
.food-shelf-scroll p {
  margin: 0;
}

.food-shelf-scroll h3 {
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.1;
}

.food-shelf-scroll p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.hidden-food-grid,
.recommendation-grid {
  display: grid;
  gap: 10px;
}

.hidden-food-grid article,
.recommendation-grid a,
.qr-reward-note {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(18, 39, 36, 0.72), rgba(6, 18, 17, 0.66));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.hidden-food-grid h3 {
  margin: 0;
  font-size: 17px;
}

.hidden-food-grid p,
.hidden-food-grid span,
.qr-reward-note p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

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

.recommendation-grid a {
  min-height: 68px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
}

.recommendation-grid span {
  color: #e8b566;
}

.qr-reward-note {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.qr-reward-note img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.qr-reward-note h2 {
  margin: 0 0 4px;
  font-size: 17px;
}

.eat-detail-gallery {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(232, 181, 102, 0.28);
  box-shadow: var(--shadow);
}

.eat-detail-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eat-detail-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 12, 11, 0.05), rgba(2, 9, 8, 0.9));
}

.eat-detail-gallery div {
  position: relative;
  z-index: 1;
  padding: 18px;
}

.eat-detail-gallery span {
  color: #e8b566;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.eat-detail-gallery h2 {
  margin: 6px 0;
  font-size: 31px;
  line-height: 1;
}

.eat-detail-gallery p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.42;
}

.detail-gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(116px, 32%);
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.detail-gallery-strip::-webkit-scrollbar {
  display: none;
}

.detail-gallery-strip img {
  width: 100%;
  height: 86px;
  border: 1px solid var(--line);
  border-radius: 14px;
  object-fit: cover;
}

.vibe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vibe-tags span {
  border: 1px solid rgba(232, 181, 102, 0.3);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
}

.detail-highlights {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.detail-highlights span {
  border-left: 2px solid rgba(232, 181, 102, 0.5);
  padding-left: 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.32;
}

.detail-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

.exchange-form {
  display: grid;
  gap: 11px;
}

.exchange-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.exchange-form input,
.exchange-form select,
.exchange-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 12px;
  color: var(--text);
  outline: 0;
  background: rgba(255, 255, 255, 0.06);
}

.exchange-form textarea {
  padding-top: 11px;
  resize: vertical;
}

.exchange-success {
  border: 1px solid rgba(114, 211, 136, 0.32);
  border-radius: 18px;
  padding: 16px;
  background: rgba(114, 211, 136, 0.08);
}

.map-screen {
  gap: 13px;
}

.map-toolbar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.map-toolbar::-webkit-scrollbar {
  display: none;
}

.map-toolbar button {
  flex: 0 0 auto;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
}

.map-toolbar button.active {
  color: #06100e;
  border-color: rgba(247, 231, 200, 0.62);
  background: linear-gradient(135deg, #fff0cc, #c78d3d);
}

.game-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(232, 181, 102, 0.24);
  border-radius: 26px;
  background:
    radial-gradient(circle at 46% 42%, rgba(232, 181, 102, 0.12), transparent 18%),
    radial-gradient(circle at 30% 18%, rgba(48, 94, 72, 0.5), transparent 26%),
    radial-gradient(circle at 72% 70%, rgba(19, 66, 58, 0.65), transparent 24%),
    linear-gradient(145deg, #09201e, #020b0a 78%);
  box-shadow: var(--shadow), inset 0 0 70px rgba(0, 0, 0, 0.45);
  touch-action: manipulation;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

.map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.62;
}

.map-lines path {
  fill: none;
  stroke: rgba(232, 181, 102, 0.32);
  stroke-width: 0.42;
  vector-effect: non-scaling-stroke;
}

.game-map::before,
.game-map::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 181, 102, 0.12);
  transform: rotate(-18deg);
}

.game-map::before {
  left: 9%;
  top: 15%;
  width: 68%;
  height: 38%;
}

.game-map::after {
  right: -12%;
  bottom: 4%;
  width: 72%;
  height: 46%;
}

.map-marker {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
}

.map-marker span {
  width: 12px;
  height: 12px;
  border: 2px solid #f6d18b;
  border-radius: 50%;
  background: #06100e;
  box-shadow: 0 0 16px rgba(232, 181, 102, 0.78);
}

.map-marker.active span {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #fff0cc, #c78d3d);
  box-shadow: 0 0 24px rgba(255, 213, 141, 0.95), 0 0 0 8px rgba(232, 181, 102, 0.12);
}

.map-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(18, 39, 36, 0.78), rgba(6, 18, 17, 0.72));
  backdrop-filter: blur(22px);
}

.map-info p {
  margin: 0 0 4px;
  color: #e8b566;
  font-size: 12px;
  font-weight: 800;
}

.map-info h2 {
  margin: 0;
  font-size: 18px;
}

.map-info span:not(.reward-badge) {
  color: var(--muted);
  font-size: 12px;
}

.stay-screen {
  gap: 14px;
}

.stay-screen .screen-nav-row h1 {
  font-size: 26px;
}

.stay-screen.screen-inner .screen-header.internal > p,
.stay-screen .screen-header.internal > p {
  max-width: 320px;
  font-size: 14px;
}

.stay-chips {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.stay-chips::-webkit-scrollbar {
  display: none;
}

.stay-chips button {
  flex: 0 0 auto;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 17px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
  font-size: 13px;
}

.stay-chips button.active {
  color: #08100e;
  border-color: rgba(247, 231, 200, 0.72);
  background: linear-gradient(135deg, #fff0cc, #c78d3d);
}

.stay-filter-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.stay-filter-row::-webkit-scrollbar {
  display: none;
}

.stay-filter-row button {
  flex: 0 0 auto;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 700;
}

.stay-filter-row button.active {
  border-color: rgba(114, 211, 136, 0.36);
  color: var(--cream);
  background: linear-gradient(145deg, rgba(20, 54, 47, 0.82), rgba(9, 25, 23, 0.86));
}

.stay-list {
  display: grid;
  gap: 12px;
}

.stay-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 178px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(18, 39, 36, 0.74), rgba(6, 18, 17, 0.68));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.stay-card > img {
  width: 112px;
  height: 178px;
  min-height: 178px;
  object-fit: cover;
}

.stay-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 11px 11px 10px;
}

.stay-topline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.stay-topline p {
  margin: 0;
  color: #e8b566;
  font-size: 10.5px;
  font-weight: 800;
}

.verified-anima {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(232, 181, 102, 0.34);
  border-radius: 999px;
  padding: 3px 7px;
  color: var(--cream);
  background: rgba(232, 181, 102, 0.09);
  font-size: 9.5px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.verified-anima.food {
  margin-top: -1px;
  border-color: rgba(114, 211, 136, 0.22);
  color: rgba(247, 231, 200, 0.9);
  background: linear-gradient(135deg, rgba(232, 181, 102, 0.1), rgba(114, 211, 136, 0.08));
}

.stay-topline .save-button {
  margin-left: auto;
}

.stay-info h2 {
  margin: 5px 0 5px;
  font-size: 17px;
  line-height: 1.1;
}

.stay-rating,
.stay-location {
  display: block;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.32;
}

.stay-rating {
  color: rgba(255, 255, 255, 0.72);
}

.stay-rating::first-letter {
  color: #e8b566;
}

.stay-location {
  margin-top: 6px;
}

.stay-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 2px;
}

.stay-bottom strong {
  color: var(--text);
  font-size: 17px;
  white-space: nowrap;
  flex: 1 1 auto;
}

.stay-bottom strong span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 500;
}

.stay-bottom .gold-button {
  min-width: 112px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.stay-detail-trigger {
  position: relative;
  z-index: 6;
  pointer-events: auto;
  cursor: pointer;
  touch-action: manipulation;
}

.stay-card {
  cursor: pointer;
}

.stay-card-open-hint {
  flex: 0 0 auto;
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  opacity: 0.78;
}

.detail-page-body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(25, 82, 71, 0.28), transparent 40%),
    linear-gradient(180deg, #031310 0%, #051b17 100%);
  color: var(--text);
}

.detail-page-shell {
  min-height: 100vh;
  padding: 24px 14px 40px;
}

.detail-page-screen {
  max-width: 520px;
  margin: 0 auto;
}

.detail-page-gallery button {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 18px;
  overflow: hidden;
}

.room-types-section > p {
  margin-bottom: 16px;
}

.room-type-list {
  display: grid;
  gap: 14px;
}

.room-type-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.room-type-card.selected {
  border-color: rgba(232, 181, 102, 0.65);
  background: linear-gradient(145deg, rgba(232, 181, 102, 0.12), rgba(255, 255, 255, 0.035));
}

.room-type-card > img,
.room-type-placeholder {
  width: 112px;
  height: 128px;
  border-radius: 16px;
  object-fit: cover;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
}

.room-type-card > div {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.room-type-head {
  display: grid;
  gap: 5px;
}

.room-type-head h3 {
  margin: 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.15;
}

.room-type-head strong {
  color: var(--cream);
  font-size: 15px;
}

.room-type-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.room-type-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.room-type-facts span {
  border: 1px solid rgba(247, 231, 200, 0.2);
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.room-pick-button {
  justify-self: start;
  min-height: 40px;
  padding: 0 16px;
}

@media (max-width: 430px) {
  .room-type-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .room-type-card > img,
  .room-type-placeholder {
    width: 92px;
    height: 112px;
  }
}

.detail-page-gallery button.active img {
  outline: 2px solid rgba(232, 181, 102, 0.72);
}

.detail-location-button {
  color: #101714 !important;
}

.detail-location-button:hover,
.detail-location-button:focus-visible {
  color: #101714 !important;
}

.detail-page-empty {
  max-width: 520px;
  margin: 0 auto;
  padding: 56px 24px;
}

.detail-page-back {
  margin-bottom: 24px;
}

.stay-detail-screen {
  gap: 14px;
  padding-bottom: calc(var(--nav-height) + var(--nav-bottom) + 98px);
}

.stay-hero-detail {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(232, 181, 102, 0.28);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.stay-hero-detail > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stay-hero-detail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 9, 8, 0.04), rgba(2, 9, 8, 0.9));
}

.stay-hero-detail > .save-button,
.stay-share,
.gallery-count,
.stay-hero-detail > div {
  position: relative;
  z-index: 1;
}

.stay-hero-detail > .save-button {
  position: absolute;
  top: 16px;
  right: 58px;
}

.stay-share {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.24);
}

.gallery-count {
  position: absolute;
  right: 16px;
  bottom: 156px;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(0, 0, 0, 0.48);
  font-size: 12px;
}

.stay-hero-detail > div:last-child {
  padding: 22px;
}

.stay-hero-detail h2 {
  margin: 0 0 6px;
  font-size: 31px;
  line-height: 1;
}

.stay-hero-detail p,
.stay-hero-detail span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.35;
}

.stay-hero-detail em {
  display: inline-flex;
  margin-top: 9px;
  border: 1px solid rgba(232, 181, 102, 0.35);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--cream);
  background: rgba(232, 181, 102, 0.1);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.stay-facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.045);
}

.stay-facts article {
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: 0;
}

.stay-facts strong {
  font-size: 13px;
}

.stay-facts span {
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}

.stay-gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  position: relative;
}

.stay-gallery-strip img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.stay-gallery-strip span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-weight: 800;
}

.stay-detail-card,
.stay-booking-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(18, 39, 36, 0.76), rgba(6, 18, 17, 0.68));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.stay-detail-card h2,
.stay-booking-panel h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.stay-detail-card p,
.stay-detail-card span,
.stay-booking-panel span,
.stay-booking-panel small,
.stay-booking-panel em {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-style: normal;
}

.stay-detail-card a {
  color: #e8b566;
  font-size: 13px;
  font-weight: 800;
}

.stay-location-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 12px;
  align-items: center;
}

.mini-map-pin {
  display: grid;
  height: 74px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #e8b566;
  background:
    radial-gradient(circle at 50% 50%, rgba(232, 181, 102, 0.28), transparent 18%),
    linear-gradient(135deg, rgba(37, 70, 58, 0.7), rgba(5, 20, 18, 0.9));
  font-size: 28px;
}

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

.stay-type-grid article,
.rate-grid article,
.booking-row {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.stay-type-grid article.active,
.rate-grid article.active {
  border-color: rgba(232, 181, 102, 0.72);
}

.stay-type-grid strong,
.rate-grid strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  line-height: 1.15;
}

.stay-type-grid b {
  position: absolute;
  right: 11px;
  top: 50%;
  color: #e8b566;
  transform: translateY(-50%);
}

.rate-grid {
  margin-top: 12px;
}

.rate-grid strong {
  margin-top: 5px;
  color: #e8b566;
}

.booking-form {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

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

.booking-form label {
  display: grid;
  gap: 6px;
}

.booking-form label.full {
  grid-column: 1 / -1;
}

.guest-extra {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px;
  margin: 2px 0;
  background: rgba(255, 255, 255, 0.04);
}

.guest-extra[hidden] {
  display: none;
}

.guest-extra legend {
  padding: 0 8px;
  color: var(--cream);
  font-weight: 900;
}

@media (max-width: 520px) {
  .guest-extra {
    grid-template-columns: 1fr;
  }
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 13px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.booking-form textarea {
  min-height: 88px;
  resize: vertical;
}

.booking-summary {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.booking-summary div,
.booking-summary strong {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.booking-summary strong {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
  color: #e8b566;
}

.booking-submit,
.location-button {
  width: 100%;
}

.location-button {
  color: #06100e;
  background: linear-gradient(135deg, #8fe7c0, #4fb98d);
  box-shadow: 0 16px 32px rgba(67, 164, 125, 0.24);
}

.location-button:hover,
.location-button:focus-visible {
  background: linear-gradient(135deg, #a9f2d1, #5fcc9d);
}

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

.booking-row b {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.hotel-flow-shell { max-width: 414px; }
.hotel-flow { gap: 14px; }
.hotel-header { display: none; }
.hotel-header h1 { font-size: 20px; }
.hotel-card-panel,
.hotel-section-card {
  border: 1px solid rgba(232, 181, 102, 0.2);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(8, 39, 32, 0.94), rgba(2, 20, 17, 0.98)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.hotel-card-panel { padding: 0; }
.hotel-section-card { padding: 16px; }
.hotel-hero {
  position: relative;
  height: 306px;
  min-height: 306px;
  border-radius: 30px 30px 24px 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.hotel-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 15, 14, 0.08), rgba(4, 15, 14, 0.18) 42%, rgba(4, 15, 14, 0.62) 100%);
}
.hotel-hero-track {
  position: absolute;
  inset: 0;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.hotel-hero-track::-webkit-scrollbar { display: none; }
.hotel-hero-slide { position: relative; flex: 0 0 100%; min-width: 100%; height: 306px; scroll-snap-align: start; }
.hotel-hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hotel-hero-back,
.hotel-hero-nav,
.hotel-hero-actions button {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
}
.hotel-hero-back,
.hotel-hero-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hotel-hero-back { top: 14px; left: 14px; }
.hotel-hero-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.hotel-hero-next { right: 14px; top: 50%; transform: translateY(-50%); }
.hotel-hero-back svg,
.hotel-hero-nav svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.hotel-hero-actions { position: absolute; top: 14px; right: 14px; z-index: 1; display: flex; gap: 8px; }
.hotel-hero-actions::before {
  content: "";
  position: absolute;
  inset: -12px -10px -10px -28px;
  border-radius: 999px;
  background: radial-gradient(circle at left center, rgba(232, 181, 102, 0.22), rgba(232, 181, 102, 0.04) 48%, transparent 72%);
  filter: blur(6px);
}
.hotel-hero-actions button.is-active { color: var(--gold-soft); border-color: rgba(232, 181, 102, 0.44); }
.hotel-hero-counter {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.hotel-card-content { display: grid; gap: 14px; padding: 14px 14px 16px; }
.hotel-topline h1,
.hotel-card-content h2 { margin: 0; font-size: 25px; line-height: 1.05; }
.hotel-card-content h2 { display: none; }
.hotel-location-line { margin: -10px 0 0; color: var(--muted); font-size: 14px; }
.hotel-badges-row { display: flex; flex-wrap: wrap; gap: 8px; }
.hotel-rating-badge,
.hotel-verified-badge,
.room-selection-badge,
.booking-status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
}
.hotel-rating-badge { background: rgba(255, 255, 255, 0.06); color: var(--gold-soft); }
.hotel-verified-badge,
.room-selection-badge {
  border: 1px solid rgba(232, 181, 102, 0.32);
  background: rgba(232, 181, 102, 0.12);
  color: var(--gold-soft);
}
.hotel-amenity-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.hotel-amenity-grid article,
.hotel-stats-grid article,
.room-feature-grid article {
  min-height: 48px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(232, 181, 102, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  overflow: hidden;
  position: relative;
}
.hotel-amenity-grid article i {
  position: absolute;
  inset: auto -10px -12px auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.07), transparent 70%);
}
.hotel-amenity-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(232, 181, 102, 0.9);
  margin-bottom: 0;
}
.hotel-amenity-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(232, 181, 102, 0.18));
}
.hotel-amenity-grid strong { font-size: 11px; line-height: 1.2; color: var(--gold-soft); transform: translateY(-7px); }
.hotel-stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.hotel-stats-grid strong { font-size: 21px; color: var(--text); }
.hotel-stats-grid span { color: var(--muted); font-size: 11px; }
.hotel-copy-card,
.hotel-location-card,
.booking-block,
.payment-summary-card,
.payment-methods-card,
.success-booking-card,
.booking-detail-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}
.hotel-copy-card { padding: 14px; }
.hotel-copy-card p,
.hotel-location-card p { margin: 0; color: var(--text); font-size: 14px; line-height: 1.55; }
.room-selection-section,
.room-detail-copy,
.payment-screen,
.success-screen,
.booking-details-screen { display: grid; gap: 14px; }
.room-flow-section { display: grid; gap: 16px; }
.room-flow-unified {
  gap: 14px;
  background:
    radial-gradient(circle at top right, rgba(232,181,102,0.08), transparent 24%),
    linear-gradient(180deg, rgba(8,36,31,0.92), rgba(4,22,18,0.98));
}
.room-flow-body {
  display: grid;
  gap: 14px;
  padding: 10px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
}
.room-flow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,181,102,0.24), transparent);
}
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.section-heading h2,
.section-heading h3,
.section-heading h4 { margin: 0; }
.section-heading span { color: var(--muted); font-size: 12px; }
.section-heading.compact { align-items: center; }
.hotel-location-card {
  padding: 14px;
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 27, 23, 0.82), rgba(6, 27, 23, 0.94)),
    repeating-linear-gradient(120deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(30deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 30px);
}
.hotel-location-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
.hotel-location-copy { display: grid; gap: 6px; }
.hotel-location-copy h3 { margin: 0; font-size: 17px; }
.hotel-location-copy span { color: var(--muted); font-size: 13px; }
.hotel-map-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(33, 67, 55, 0.92);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}
.room-card-scroller { display: grid; grid-template-columns: 1fr; gap: 10px; }
.room-selection-card {
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: stretch;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 12px;
}
.room-selection-card.selected { border-color: rgba(232, 181, 102, 0.8); box-shadow: inset 0 0 0 1px rgba(232, 181, 102, 0.24); }
.room-selection-image { position: relative; border-radius: 16px; overflow: hidden; min-height: 112px; height: 100%; }
.room-selection-image img,
.room-selection-placeholder { display: block; width: 100%; height: 100%; object-fit: cover; background: rgba(255, 255, 255, 0.06); }
.room-selection-badge { position: absolute; left: 8px; bottom: 8px; }
.room-selection-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(232, 181, 102, 0.92);
  color: #0b1612;
  font-size: 13px;
  font-weight: 900;
}
.room-selection-copy { display: grid; align-content: center; gap: 6px; padding: 2px 2px 2px 0; }
.room-selection-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.room-selection-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 11px;
}
.room-selection-copy h3,
.room-detail-title-row h3 { margin: 0; font-size: 16px; line-height: 1.15; }
.room-selection-copy strong,
.room-detail-copy strong,
.success-booking-total strong { color: var(--gold-soft); font-size: 15px; }
.room-selection-copy p,
.room-detail-copy p,
.success-screen p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.room-detail-title-row { display: flex; align-items: center; gap: 10px; justify-content: space-between; }
.room-detail-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.room-detail-meta span { color: var(--gold-soft); font-size: 12px; }
.room-detail-shell { display: grid; gap: 10px; }
.room-detail-copy {
  display: grid;
  gap: 14px;
  padding: 2px 4px 4px;
  border-top: 0;
}
.room-detail-feature-block,
.room-detail-rule-block { display: grid; gap: 10px; }
.room-detail-feature-block h4,
.room-detail-rule-block h4 { margin: 0; font-size: 16px; }
.room-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}
.room-feature-list article {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 4px 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.room-feature-list article span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(232,181,102,0.2), rgba(232,181,102,0.06));
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
}
.room-feature-list article p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.35;
}
.room-rule-list { display: grid; gap: 8px; }
.room-rule-list div { display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 10px; align-items: start; }
.room-rule-list span { color: var(--gold-soft); font-weight: 900; }
.room-rule-list p { color: var(--text); }
.room-gallery-button { width: 100%; }
.booking-step-card { display: grid; gap: 14px; }
.booking-stepbar { height: 4px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); overflow: hidden; }
.booking-stepbar span { display: block; height: 100%; width: 34%; border-radius: inherit; background: linear-gradient(90deg, #f6d289, #e8b566); }
.booking-stepbar span.is-two { width: 67%; }
.booking-stepbar span.is-three { width: 100%; }
.booking-flow-form,
.booking-block { display: grid; gap: 12px; }
.booking-block { padding: 14px; }
.booking-block h3,
.payment-methods-card h3 { margin: 0; font-size: 18px; }
.booking-flow-form .booking-form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.booking-flow-form label span { color: var(--muted); font-size: 11px; }
.booking-flow-form input,
.booking-flow-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(7, 28, 23, 0.96);
}
.phone-country-field {
  position: relative;
}
.phone-country-field input[name="phoneCountrySearch"] {
  padding-right: 14px;
}
.phone-country-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 6;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(7, 28, 23, 0.98);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
}
.phone-country-suggestions button {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 12px;
  padding: 0 12px;
  color: var(--text);
  background: rgba(255,255,255,0.03);
}
.phone-country-suggestions button small {
  color: var(--muted);
  font-size: 11px;
}
.booking-extra-guests { display: grid; gap: 10px; }
.messenger-chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.messenger-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
}
.booking-guest-card { border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 18px; padding: 12px; background: rgba(255, 255, 255, 0.025); }
.booking-guest-card h3 { margin: 0 0 12px; font-size: 16px; }
.booking-summary-list { display: grid; gap: 10px; }
.booking-summary-list div,
.booking-summary-list strong,
.payment-summary-grid div,
.success-booking-grid div,
.booking-detail-grid div,
.success-booking-total { display: flex; justify-content: space-between; gap: 12px; }
.booking-summary-list strong,
.success-booking-total { padding-top: 10px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.hotel-primary-button { min-height: 48px; border-radius: 14px; font-size: 16px; font-weight: 900; }
.hidden { display: none !important; }
.payment-summary-card,
.payment-methods-card,
.success-booking-card,
.booking-detail-card { padding: 14px; }
.payment-summary-head,
.success-booking-room,
.booking-detail-head { display: flex; gap: 12px; align-items: center; }
.payment-summary-head img,
.success-booking-room img { width: 74px; height: 74px; border-radius: 14px; object-fit: cover; }
.payment-summary-head strong,
.success-booking-room strong,
.booking-detail-head strong,
.success-booking-number strong { display: block; font-size: 16px; }
.payment-summary-head p,
.success-booking-room p,
.booking-detail-head p { margin: 2px 0 0; color: var(--muted); }
.payment-summary-grid,
.success-booking-grid,
.booking-detail-grid { display: grid; gap: 10px; margin-top: 14px; }
.payment-option {
  min-height: 56px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}
.payment-option.selected { border-color: rgba(232, 181, 102, 0.72); }
.payment-helper-copy { margin: 0 0 10px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.payment-card-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.payment-card-fields .full { grid-column: 1 / -1; }
.payment-card-fields span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 11px; }
.payment-card-fields input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.room-gallery-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 10, 9, 0.76);
  backdrop-filter: blur(10px);
}
.room-gallery-modal {
  width: min(100%, 420px);
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(9, 28, 24, 0.96), rgba(5, 18, 15, 0.98));
}
.room-gallery-head,
.room-gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.room-gallery-head button,
.room-gallery-footer button {
  min-height: 36px;
  min-width: 36px;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.room-gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 22px;
}
.room-gallery-track::-webkit-scrollbar { display: none; }
.room-gallery-empty {
  min-height: 260px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
}
.room-gallery-empty strong {
  color: var(--text);
  font-size: 18px;
}
.room-gallery-empty p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}
.room-gallery-slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
}
.room-gallery-slide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.payment-option input { margin: 0; }
.success-screen { justify-items: center; text-align: center; }
.success-screen {
  position: relative;
  overflow: hidden;
  padding: 8px 0 4px;
}
.success-screen::before {
  content: "";
  position: absolute;
  inset: -30px auto auto 50%;
  width: 220px;
  height: 220px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(122, 208, 144, 0.22), rgba(122, 208, 144, 0.02) 68%, transparent 78%);
  filter: blur(8px);
  pointer-events: none;
}
.success-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 208, 144, 0.86), rgba(122, 208, 144, 0.28));
  color: #fff;
  font-size: 38px;
  font-weight: 900;
}
.success-screen h3 { margin: 0; font-size: 27px; }
.success-booking-card,
.success-next { width: 100%; }
.success-booking-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025)),
    radial-gradient(circle at top right, rgba(232,181,102,0.12), transparent 38%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 18px 40px rgba(0,0,0,0.18);
}
.success-booking-number { display: grid; gap: 8px; justify-items: center; padding-bottom: 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); margin-bottom: 14px; }
.success-next { display: grid; gap: 10px; text-align: left; }
.success-next h4 { margin: 0; font-size: 20px; }
.success-next div { display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 10px; }
.flow-single-screen { padding-top: 18px; }
.payment-page-card { min-height: calc(100vh - 86px); justify-content: start; }
.flow-single-actions { display: grid; gap: 10px; }
.compact-step-card { padding-top: 14px; }
.booking-preview-block { display: grid; gap: 12px; }
.booking-preview-block p { margin: 0; color: var(--muted); font-size: 13px; }
.booking-detail-head { justify-content: space-between; align-items: flex-start; }
.booking-status-pill { background: rgba(122, 208, 144, 0.16); color: #a5e0b6; }
@media (max-width: 520px) {
  .detail-page-shell { padding: 12px 10px 26px; }
  .hotel-card-content h2 { font-size: 22px; }
  .hotel-amenity-grid,
  .hotel-stats-grid,
  .room-feature-list { grid-template-columns: 1fr; }
  .booking-flow-form .booking-form-grid { grid-template-columns: 1fr; }
  .room-selection-card { grid-template-columns: 104px minmax(0, 1fr); gap: 10px; }
  .payment-card-fields { grid-template-columns: 1fr; }
}

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

.price-details div,
.price-details strong {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.price-details strong {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: #e8b566;
}

.house-rules div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 9px 0;
}

.house-rules div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.house-rules p {
  margin: 0;
}

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

.amenities-card span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
}

.economy-feature {
  min-height: 210px;
  background:
    radial-gradient(circle at 24% 20%, rgba(232, 181, 102, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(10, 42, 37, 0.9), rgba(4, 16, 15, 0.88));
}

.economy-feature.tech {
  background:
    radial-gradient(circle at 72% 12%, rgba(114, 211, 136, 0.14), transparent 34%),
    radial-gradient(circle at 20% 20%, rgba(232, 181, 102, 0.13), transparent 32%),
    linear-gradient(145deg, rgba(8, 35, 38, 0.9), rgba(4, 16, 15, 0.9));
}

.economy-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
}

.listing-logo {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(247, 231, 200, 0.22);
  border-radius: 14px;
  color: var(--cream);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
  font-size: 13px;
  font-weight: 800;
}

.listing-card small,
.listing-card em {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  line-height: 1.3;
  font-style: normal;
}

.listing-card em {
  color: #e8b566;
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 11px;
  color: #06100e;
  background: linear-gradient(135deg, #fff0cc, #c78d3d);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

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

.stats-grid article,
.benefit-grid article,
.tech-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(18, 39, 36, 0.7), rgba(6, 18, 17, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.stats-grid strong {
  display: block;
  color: var(--cream);
  font-size: 24px;
  line-height: 1;
}

.stats-grid span,
.benefit-grid p,
.tech-grid p,
.tech-grid small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

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

.benefit-grid span,
.tech-grid span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #06100e;
  background: linear-gradient(135deg, #fff0cc, #c78d3d);
  font-weight: 900;
}

.benefit-grid h3,
.tech-grid h3 {
  margin: 11px 0 0;
  font-size: 14px;
  line-height: 1.18;
}

.tech-grid article {
  display: flex;
  min-height: 180px;
  flex-direction: column;
}

.tech-grid .mini-cta {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 380px) {
  .hero {
    padding-inline: 14px;
  }

  .content {
    padding-inline: 14px;
  }

  .topbar {
    gap: 8px;
  }

  .brand {
    width: 150px;
    height: 36px;
  }

  .location-pill {
    max-width: 118px;
  }

  .category-row {
    gap: 8px;
  }

  .quick-grid {
    gap: 7px;
  }
}

@media (max-width: 410px) {
  :root {
    --page-x: 18px;
  }

  .hero {
    --weather-card-right: 18px;
    --weather-card-top: calc(var(--ios-top-buffer) + 226px);
    --weather-card-width: 172px;
    --search-card-gap: 152px;
    --hero-background-bottom-gap: 84px;
    --hero-background-position: center 54%;
    --hero-blend-height: 96px;
    min-height: 402px;
    border-radius: 0 0 30px 30px;
  }

  .hero-copy {
    margin-top: 44px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .phone-shell.language-russian .hero {
    --weather-card-top: calc(var(--ios-top-buffer) + 252px);
    --weather-card-width: 172px;
    --search-card-gap: 182px;
    --hero-background-bottom-gap: 92px;
    --hero-blend-height: 104px;
    min-height: 500px;
  }

  .rewards-card {
    grid-template-columns: 76px minmax(0, 1fr) 96px;
    gap: 6px;
    min-height: 108px;
    padding: 10px 9px;
  }

  .coin-orbit {
    width: 96px;
    height: 96px;
    transform: translateX(-16px);
  }

  .reward-copy h2 {
    font-size: 13px;
  }

  .reward-copy p {
    font-size: 10.5px;
  }

  .cream-button {
    min-height: 30px;
    padding: 0 11px;
    font-size: 11px;
  }

  .points-total strong {
    font-size: 22px;
  }

  .points-panel {
    padding-bottom: 22px;
  }

  .points-panel p {
    font-size: 9.5px;
  }

  .level-badge {
    font-size: 9.5px;
    padding-inline: 7px;
  }

  .quick-grid {
    gap: 8px;
  }

  .quick-card {
    padding-inline: 6px;
  }

  .quick-card strong {
    font-size: 0.68rem;
  }

  .plus-card {
    grid-template-columns: minmax(0, 1fr) 118px;
    gap: 7px;
    min-height: 148px;
    padding: 11px;
  }

  .plus-card h2 img {
    width: 64px;
    height: 16px;
  }

  .plus-benefits {
    gap: 4px;
  }

  .benefit-item {
    font-size: 7px;
  }

  .benefit-icon {
    width: 31px;
    height: 31px;
    border-radius: 10px;
  }

  .plus-price {
    padding: 0 0 0 8px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .plus-price-row strong {
    font-size: 18px;
  }

  .plus-price-row span {
    font-size: 8px;
  }

  .plus-price-row small {
    font-size: 7.8px;
  }

  .plus-cta {
    min-height: 29px;
    max-width: none;
    font-size: 8.8px;
  }

  .bottom-nav {
    width: calc(100vw - 14px);
    grid-template-columns: 1fr 1fr 74px 1fr 1fr;
  }

  .center-action {
    width: 78px;
    height: 78px;
    min-height: 78px;
    margin-top: -17px;
  }

  .stay-screen .screen-nav-row h1 {
    font-size: 24px;
  }

  .stay-screen .screen-header.internal > p {
    font-size: 13px;
  }

  .stay-chips button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12.5px;
  }

  .stay-card {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 142px;
  }

  .stay-card > img {
    width: 104px;
    height: 142px;
    min-height: 142px;
  }

  .stay-info {
    padding: 10px 10px 9px;
  }

  .stay-info h2 {
    font-size: 15.5px;
  }

  .stay-rating,
  .stay-location {
    font-size: 10.8px;
  }

  .stay-bottom strong {
    font-size: 15px;
  }

  .stay-bottom .gold-button {
    min-width: 78px;
    min-height: 29px;
    padding: 0 9px;
    font-size: 10.5px;
  }
}

/* Responsive hardening */
:where(.screen-inner, .section-heading, .listing-stack, .profile-control-card, .settings-modal-panel, .store-category-row, .store-product-grid, .quick-grid, .feed-preview-grid, .partner-mini-grid, .benefit-grid, .tech-grid, .category-row, .booking-form-grid, .payment-card-fields, .hotel-amenity-grid, .hotel-stats-grid, .room-card-scroller) {
  min-width: 0;
}

:where(.screen-inner, .listing-stack article, .feature-card, .quick-card, .feed-preview-card, .partner-mini-card, .store-product-card, .settings-row, .profile-control-card, .listing-card, .transport-card, .stay-card, .eat-card, .experience-card) * {
  min-width: 0;
  overflow-wrap: anywhere;
}

:where(img) {
  max-width: 100%;
}

:where(.gold-button, .cream-button, .mini-cta, .search-submit-button, .filter-button, .icon-button, .language-pill, .category-card, .store-category-row button, .bottom-nav a, .utility-nav a, .mini-icon-button, .save-button, .notification-action, .back-button, .store-cart-button) {
  min-height: 44px;
}

.search-card {
  width: 100%;
}

.weather-card,
.time-card {
  max-width: calc(100vw - (var(--page-x) * 2));
}

.settings-modal {
  padding: max(16px, var(--safe-top)) 14px max(16px, var(--safe-bottom));
}

.settings-modal-panel,
.guest-gate-modal,
.room-gallery-modal {
  width: min(100%, 560px);
  max-width: min(100%, 560px);
  max-height: min(88vh, 880px);
}

@media (max-width: 767px) {
  .quick-grid,
  .feed-preview-grid,
  .benefit-grid,
  .tech-grid,
  .plus-benefit-grid,
  .partner-mini-grid,
  .store-screen .store-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-row.core-services,
  .category-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .profile-control-card,
  .rewards-card,
  .listing-card,
  .feature-card,
  .store-welcome-card,
  .stay-detail-grid,
  .stay-screen.screen-inner,
  .about-grid,
  .contact-grid {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .quick-grid,
  .feed-preview-grid,
  .partner-mini-grid,
  .benefit-grid,
  .tech-grid,
  .plus-benefit-grid,
  .store-screen .store-product-grid,
  .hotel-amenity-grid,
  .hotel-stats-grid,
  .booking-form-grid,
  .payment-card-fields {
    grid-template-columns: 1fr;
  }

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

  .store-category-row {
    grid-auto-columns: minmax(124px, 1fr);
  }

  .weather-card,
  .time-card {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
  }

  .hero {
    --weather-card-top: auto;
    --weather-card-right: auto;
    --weather-card-width: 100%;
    --search-card-gap: 24px;
    min-height: auto;
  }

  .hero-copy {
    margin-top: 28px;
  }

  .time-card {
    margin-top: 18px;
  }

  .weather-card {
    margin-top: 12px;
  }

  .search-card {
    margin-top: 18px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .phone-shell {
    max-width: 100%;
    min-height: 100vh;
    border-radius: 0;
  }

  .content,
  .screen-inner {
    max-width: 920px;
    margin: 0 auto;
  }

  .quick-grid,
  .feed-preview-grid,
  .benefit-grid,
  .tech-grid,
  .plus-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-row.core-services,
  .category-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1025px) {
  .phone-shell {
    max-width: min(100vw, 1180px);
    min-height: 100vh;
    border-radius: 32px;
  }

  .content,
  .screen-inner {
    max-width: 1120px;
    margin: 0 auto;
  }

  .quick-grid,
  .feed-preview-grid,
  .benefit-grid,
  .tech-grid,
  .plus-benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1440px) {
  .phone-shell {
    max-width: min(100vw, 1280px);
  }
}
