:root {
  --bg: #000000;
  --surface: #1c1c1e;
  --surface2: #2c2c2e;
  --surface3: #3a3a3c;
  --text: #ffffff;
  --text2: #ebebf5;
  --muted: #8e8e93;
  --accent: #0a84ff;
  --accent-dim: rgba(10, 132, 255, 0.18);
  --accent-border: rgba(10, 132, 255, 0.55);
  --accent-press: #0077ed;
  --on-accent: #ffffff;
  --green: #30d158;
  --orange: #ff9f0a;
  --danger: #ff453a;
  --border: rgba(255, 255, 255, 0.06);
  --border-mid: rgba(255, 255, 255, 0.08);
  --sticky-bg: rgba(0, 0, 0, 0.88);
  --overlay-dim: rgba(0, 0, 0, 0.65);
  --dock-bg: #1c1c1e;
  --dock-pill: #2c2c2e;
  --dock-muted: #8e8e93;
  --dock-active-fg: var(--accent);
  --dock-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
  --topbar-ink: rgba(235, 235, 245, 0.92);
  --topbar-press-bg: rgba(255, 255, 255, 0.08);
  --topbar-press-fg: #ffffff;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
  --flag-bg: linear-gradient(160deg, #343438 0%, #1c1c1f 100%);
  --flag-inset: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  --flag-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  --promo-card-bg:
    radial-gradient(ellipse 90% 120% at 100% 30%, rgba(168, 85, 247, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 70% 90% at 85% 100%, rgba(236, 72, 153, 0.18) 0%, transparent 50%),
    linear-gradient(145deg, #2c2c30 0%, #1c1c1e 100%);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --star: #f5c518;
  --accent2: #30d158;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --dock-h: 78px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --dur-fast: 0.18s;
  --dur-med: 0.28s;
  --dur-slow: 0.4s;
}

html[data-theme="light"] {
  --bg: #f2f2f7;
  --surface: #ffffff;
  --surface2: #e5e5ea;
  --surface3: #d1d1d6;
  --text: #000000;
  --text2: #1c1c1e;
  --muted: #8e8e93;
  --accent: #007aff;
  --accent-dim: rgba(0, 122, 255, 0.12);
  --accent-border: rgba(0, 122, 255, 0.45);
  --accent-press: #0062cc;
  --border: rgba(60, 60, 67, 0.12);
  --border-mid: rgba(60, 60, 67, 0.16);
  --sticky-bg: rgba(242, 242, 247, 0.94);
  --overlay-dim: rgba(0, 0, 0, 0.4);
  --dock-bg: #ffffff;
  --dock-pill: #e5e5ea;
  --dock-muted: #8e8e93;
  --dock-active-fg: #007aff;
  --dock-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  --topbar-ink: rgba(0, 0, 0, 0.85);
  --topbar-press-bg: rgba(0, 0, 0, 0.06);
  --topbar-press-fg: #000000;
  --card-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  --flag-bg: linear-gradient(160deg, #f5f5f7 0%, #e5e5ea 100%);
  --flag-inset: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --flag-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --promo-card-bg:
    radial-gradient(ellipse 90% 120% at 100% 30%, rgba(168, 85, 247, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 90% at 85% 100%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
    linear-gradient(145deg, #ffffff 0%, #f2f2f7 100%);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
}

.impersonate-banner {
  flex-shrink: 0;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #b45309, #d97706);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

#app {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-bottom: calc(var(--dock-h) + var(--safe-b) + 8px);
}

#app.subview { padding-bottom: calc(16px + var(--safe-b)); }
#app.has-sticky { padding-bottom: calc(88px + var(--safe-b)); }
#app.has-sticky:not(.subview) { padding-bottom: calc(var(--dock-h) + 88px + var(--safe-b)); }

.hidden { display: none !important; }

.welcome-splash {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  transition: opacity 0.32s ease;
  pointer-events: none;
}
.welcome-splash.is-out {
  opacity: 0;
}
.welcome-splash__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
}
.welcome-splash__brand {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
}
.welcome-splash__text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: #8e8e93;
  text-align: center;
}

.promo-sheet .modal-title {
  margin-bottom: 16px;
}

.promo-sheet-list {
  margin-bottom: 18px;
  max-height: 36vh;
  overflow-y: auto;
}

.promo-sheet-list .promo-pick-item {
  width: 100%;
  text-align: left;
  border: none;
  background: var(--surface);
  cursor: pointer;
  transition: background var(--dur-fast) ease;
}

.promo-sheet-list .promo-pick-item:active {
  background: var(--surface2);
}

.promo-pick-item--on {
  background: var(--accent-dim);
}

.promo-pick-item--on .row-title {
  color: var(--text);
}

.promo-sheet-label {
  margin: 0 0 8px 4px;
}

.promo-sheet-input {
  margin-bottom: 10px;
}

.promo-sheet-input .search-input {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.promo-sheet-apply {
  width: 100%;
  height: 44px;
  margin-bottom: 12px;
  border: none;
  border-radius: var(--radius-lg);
  background: var(--surface2);
  color: var(--accent);
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--dur-fast) ease, transform 0.12s var(--ease-spring);
}

.promo-sheet-apply:active {
  transform: scale(0.99);
  background: var(--surface3);
}

.promo-sheet-done {
  margin-top: 4px;
}

.promo-sheet .error-msg {
  margin: 0 0 10px;
}

.checkout-hero-price-old {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.row-mark {
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.row-chevron--ghost {
  width: 24px;
  visibility: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 8px;
  flex-shrink: 0;
  opacity: 0;
  transform: translate3d(0, -6px, 0);
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.topbar.hidden { display: none; }
.topbar.topbar-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.topbar-back {
  width: 40px;
  height: 40px;
  margin-left: -4px;
  border: none;
  background: transparent;
  color: var(--topbar-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease, transform 0.12s var(--ease-spring);
}
.topbar-back svg {
  display: block;
  width: 22px;
  height: 22px;
}
.topbar-back:active {
  background: var(--topbar-press-bg);
  color: var(--topbar-press-fg);
  transform: scale(0.94);
}

.topbar-center { flex: 1; text-align: center; }
.topbar-title { font-size: 17px; font-weight: 600; }

.screen {
  flex: 1;
  padding: 0 16px 16px;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  overflow-x: hidden;
  will-change: transform, opacity;
}

.screen.view-enter {
  animation: view-in var(--dur-med) var(--ease-out) both;
}
.screen.view-enter-back {
  animation: view-in-back var(--dur-med) var(--ease-out) both;
}

@keyframes view-in {
  from { opacity: 0; transform: translate3d(18px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes view-in-back {
  from { opacity: 0; transform: translate3d(-14px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.anim-item {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  animation: item-in var(--dur-med) var(--ease-out) forwards;
  animation-delay: calc(var(--i, 0) * 38ms + 40ms);
}

@keyframes item-in {
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0 20px;
}

.page-head h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.badge-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.search-wrap {
  position: relative;
  margin-bottom: 14px;
}

.search-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.search-input {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-size: 16px;
  padding: 0 16px 0 44px;
  outline: none;
}
.search-input::placeholder { color: var(--muted); }
.search-input:focus { box-shadow: 0 0 0 2px var(--accent-dim); }

.segments {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.segments::-webkit-scrollbar { display: none; }

.segment {
  flex-shrink: 0;
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform 0.12s var(--ease-spring);
}
.segment:active { transform: scale(0.96); }
.segment.active {
  background: var(--accent);
  color: #fff;
}

.promo-banner {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  box-shadow: var(--card-shadow);
}

.promo-banner.is-tappable {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.16s var(--ease-spring), background 0.2s ease;
}
.promo-banner.is-tappable:active {
  transform: scale(0.985);
  background: var(--surface2);
}

.promo-banner-card {
  background: var(--promo-card-bg);
  border-color: rgba(168, 85, 247, 0.15);
}
.promo-banner-card.is-tappable:active {
  background: var(--promo-card-bg);
}
.promo-banner-card h3 {
  color: var(--text);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}
html[data-theme="light"] .promo-banner-card h3 {
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.12);
}
.promo-banner-card .promo-sub {
  color: rgba(235, 235, 245, 0.9);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.28);
}
html[data-theme="light"] .promo-banner-card .promo-sub {
  color: rgba(28, 28, 30, 0.78);
  text-shadow: none;
}

.shop-hub {
  margin-bottom: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.shop-hub .rows {
  margin-bottom: 0;
}

.promo-cards {
  margin: 0;
}
.promo-cards-label {
  margin-bottom: 10px;
}
.promo-cards-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.promo-cards-track::-webkit-scrollbar { display: none; }
.promo-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px 10px 12px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text2);
  text-align: left;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform 0.12s var(--ease-spring);
}
.promo-chip:not(.promo-chip--static) {
  cursor: pointer;
}
.promo-chip:not(.promo-chip--static):active {
  transform: scale(0.96);
  background: var(--surface2);
}
.promo-chip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  line-height: 0;
}
.promo-chip__icon .row-icon-svg {
  width: 17px;
  height: 17px;
  display: block;
}
.promo-chip__icon--blue { color: var(--accent); }
.promo-chip__icon--green { color: var(--green); }
.promo-chip__icon--purple { color: #a855f7; }
.promo-chip__icon--orange { color: var(--orange); }
.promo-chip__icon--neutral { color: var(--muted); }
.promo-chip__label {
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.sk-promo-row {
  display: flex;
  gap: 8px;
  margin-bottom: var(--space-2);
  overflow: hidden;
}
.sk-promo-row .sk {
  flex: 0 0 104px;
  height: 40px;
  border-radius: var(--radius-pill);
}

.shop-services {
  margin: 0;
}
.shop-services .rows {
  margin-bottom: 0;
}
.shop-service-row .row-sub {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shop-services-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.shop-services-label {
  margin: 0;
}
.shop-services-more {
  border: none;
  background: none;
  color: var(--accent);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.shop-services-more:active { opacity: 0.65; }

.service-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  border: none;
  background: var(--surface);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: background var(--dur-fast) ease, transform 0.12s var(--ease-spring);
}
.service-tile:active {
  background: var(--surface2);
  transform: scale(0.985);
}
.service-tile__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
.service-tile__icon--blue { background: rgba(10, 132, 255, 0.16); }
.service-tile__icon--green { background: rgba(48, 209, 88, 0.16); }
.service-tile__icon--purple { background: rgba(168, 85, 247, 0.16); }
.service-tile__icon--orange { background: rgba(255, 159, 10, 0.16); color: var(--orange); }
.service-tile__icon--neutral { background: var(--surface2); }
.service-tile__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.service-tile__title {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}
.service-tile__sub {
  font-size: 13px;
  line-height: 1.3;
  color: var(--muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.service-tile__chev {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1;
}

.services-page .page-head { margin-bottom: 4px; }
.services-lead {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.service-tile--wide {
  width: 100%;
  min-height: auto;
  border-radius: 0;
  padding: 14px 16px;
}
.service-tile--wide + .service-tile--wide {
  border-top: 1px solid var(--border);
}
.services-grid .service-tile--wide:first-child {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.services-grid .service-tile--wide:last-child {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.services-grid .service-tile--wide:only-child {
  border-radius: var(--radius-lg);
}

.review-stars-row {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  line-height: 1;
}
.review-stars {
  color: rgba(255, 255, 255, 0.18);
  font-size: 15px;
  letter-spacing: 0;
}
.review-stars.is-on { color: var(--star); }
.review-stars--sm { font-size: 13px; }
.reviews-filter {
  margin-bottom: var(--space-3);
}
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  margin-bottom: var(--space-2);
}
.review-card {
  border-radius: 0;
  padding: 14px 16px;
  background: var(--surface);
  border: none;
  box-shadow: none;
}
.review-card + .review-card {
  border-top: 1px solid var(--border);
}
.reviews-list .review-card:first-child {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.reviews-list .review-card:last-child {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.reviews-list .review-card:only-child {
  border-radius: var(--radius-lg);
}
.review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.review-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-card-score {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.review-card-del {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  cursor: pointer;
  flex-shrink: 0;
}
.review-card-del:active { background: rgba(255, 69, 58, 0.15); color: var(--danger); }
.review-card-text {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 400;
}
.review-card-reply {
  margin: 0 0 10px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--surface2);
  border: 1px solid var(--border-mid);
}
.review-card-reply-label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}
.review-card-reply-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}
.review-card-meta {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
}
.review-card-meta .flag-badge { flex-shrink: 0; }
.review-stars-pick { margin-bottom: 12px; }
.review-stars-pick.hidden { display: none; }
.review-stars-label {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--muted);
}
.review-stars-pick-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.review-star-opt {
  flex: 1;
  min-width: 52px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  padding: 8px 4px;
  font-size: 11px;
  letter-spacing: -1px;
  background: var(--surface2);
  color: var(--muted);
  cursor: pointer;
}
.review-star-opt.active {
  border-color: rgba(245, 197, 24, 0.5);
  background: rgba(245, 197, 24, 0.12);
  color: #f5c518;
}
html[data-theme="light"] .review-stars { color: rgba(0, 0, 0, 0.15); }
html[data-theme="light"] .review-stars.is-on { color: #e6a800; }

.promo-carousel {
  margin-bottom: 20px;
}
.promo-carousel .promo-banner {
  margin-bottom: 0;
}
.promo-carousel .promo-dots {
  margin-top: 10px;
  margin-bottom: 12px;
}
.promo-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.promo-track::-webkit-scrollbar { display: none; }
.promo-slide {
  scroll-snap-align: start;
  text-align: left;
  display: block;
  width: 100%;
}
.promo-slide .promo-inner,
.promo-slide .promo-glow {
  pointer-events: none;
}
.promo-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 8px;
}
.promo-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}
.promo-dot.is-on {
  width: 16px;
  background: rgba(255, 255, 255, 0.62);
}
.promo-dots.promo-dots--accent .promo-dot.is-on {
  background: var(--accent);
}

.promo-glow {
  position: absolute;
  right: -20px;
  top: 50%;
  width: 100px;
  height: 100px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.45) 0%, rgba(244, 114, 182, 0.2) 45%, transparent 70%);
  pointer-events: none;
  filter: blur(2px);
}

.promo-slide--news .promo-glow {
  background: radial-gradient(circle, rgba(10, 132, 255, 0.55) 0%, rgba(64, 156, 255, 0.22) 48%, transparent 72%);
}
.promo-slide--news.promo-banner-card {
  background:
    radial-gradient(ellipse 90% 120% at 100% 30%, rgba(10, 132, 255, 0.26) 0%, transparent 58%),
    radial-gradient(ellipse 70% 90% at 85% 100%, rgba(64, 156, 255, 0.16) 0%, transparent 52%),
    linear-gradient(145deg, #2a2d35 0%, #1c1c1e 100%);
  border-color: rgba(10, 132, 255, 0.22);
}
html[data-theme="light"] .promo-slide--news.promo-banner-card {
  background:
    radial-gradient(ellipse 90% 120% at 100% 30%, rgba(10, 132, 255, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 70% 90% at 85% 100%, rgba(64, 156, 255, 0.1) 0%, transparent 52%),
    linear-gradient(145deg, #ffffff 0%, #f2f2f7 100%);
  border-color: rgba(10, 132, 255, 0.22);
}

.promo-slide--news-bright .promo-glow {
  width: 120px;
  height: 120px;
  right: -24px;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.72) 0%,
    rgba(251, 191, 36, 0.42) 42%,
    rgba(34, 211, 238, 0.18) 58%,
    transparent 74%
  );
  filter: blur(1px);
}
.promo-slide--news-bright.promo-banner-card {
  background:
    radial-gradient(ellipse 100% 140% at 100% 18%, rgba(56, 189, 248, 0.42) 0%, transparent 56%),
    radial-gradient(ellipse 80% 100% at 0% 100%, rgba(251, 191, 36, 0.28) 0%, transparent 52%),
    linear-gradient(145deg, #1a4a6b 0%, #142033 48%, #1c1c1e 100%);
  border-color: rgba(56, 189, 248, 0.42);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.12),
    0 10px 28px rgba(14, 116, 144, 0.22);
}
.promo-slide--news-bright.promo-banner-card.is-tappable:active {
  background:
    radial-gradient(ellipse 100% 140% at 100% 18%, rgba(56, 189, 248, 0.48) 0%, transparent 56%),
    radial-gradient(ellipse 80% 100% at 0% 100%, rgba(251, 191, 36, 0.32) 0%, transparent 52%),
    linear-gradient(145deg, #1f5278 0%, #162840 48%, #1c1c1e 100%);
}
.promo-slide--news-bright h3 {
  color: #e8f8ff;
  font-weight: 700;
  text-shadow: 0 1px 18px rgba(56, 189, 248, 0.35);
}
.promo-slide--news-bright .promo-sub {
  color: rgba(232, 248, 255, 0.94);
  font-weight: 500;
}
.promo-slide--news-bright .promo-chevron {
  color: #7dd3fc;
  opacity: 0.95;
  font-size: 22px;
  font-weight: 700;
}
html[data-theme="light"] .promo-slide--news-bright .promo-glow {
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.55) 0%,
    rgba(245, 158, 11, 0.32) 42%,
    transparent 72%
  );
}
html[data-theme="light"] .promo-slide--news-bright.promo-banner-card {
  background:
    radial-gradient(ellipse 100% 140% at 100% 18%, rgba(14, 165, 233, 0.22) 0%, transparent 56%),
    radial-gradient(ellipse 80% 100% at 0% 100%, rgba(245, 158, 11, 0.16) 0%, transparent 52%),
    linear-gradient(145deg, #eef9ff 0%, #ffffff 58%, #f2f2f7 100%);
  border-color: rgba(14, 165, 233, 0.38);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.12);
}
html[data-theme="light"] .promo-slide--news-bright h3 {
  color: #0c4a6e;
  text-shadow: none;
}
html[data-theme="light"] .promo-slide--news-bright .promo-sub {
  color: rgba(12, 74, 110, 0.88);
}
html[data-theme="light"] .promo-slide--news-bright .promo-chevron {
  color: #0284c7;
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.promo-text {
  flex: 1;
  min-width: 0;
  padding-right: 4px;
}

.promo-banner h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}

.promo-banner .promo-sub {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  opacity: 0.92;
}

.promo-chevron {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 10px 4px;
  letter-spacing: -0.01em;
}
.cabinet-block {
  margin-bottom: 22px;
}
.cabinet-block:last-child {
  margin-bottom: 0;
}
.section-label.plans-label { margin-top: 8px; }
.section-label.country-faq-label { margin-top: 18px; }

.country-legal {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border-mid);
}
.country-legal-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}
.country-legal-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text2);
}
.country-legal-text b {
  color: var(--text);
  font-weight: 600;
}

.checkout-legal {
  margin: 12px 4px 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
  text-align: center;
}

.row {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  border: none;
  background: var(--surface);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: background var(--dur-fast) ease, transform 0.12s var(--ease-spring);
}
a.row {
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}
.row:active { background: var(--surface2); transform: scale(0.985); }

.row + .row,
.rows .row:not(:first-child) {
  border-top: 1px solid var(--border);
}

.rows {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
}

.rows.flush .row:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.rows.flush .row:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.rows.single .row { border-radius: var(--radius-lg); border-top: none; }

.row-flag {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  overflow: hidden;
}
.row-flag.em { font-size: 24px; line-height: 1; }

.flag-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  display: block;
  background: var(--flag-bg);
  box-shadow: var(--flag-inset), var(--flag-shadow);
}
.flag-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.2);
  display: block;
}
.flag-badge.xs {
  width: 22px;
  height: 22px;
  box-shadow: none;
}
.flag-badge.xs img {
  transform: scale(1.15);
}
.flag-badge.lg {
  width: 52px;
  height: 52px;
}
.flag-badge.lg img {
  transform: scale(1.24);
}
.flag-badge.sheet {
  width: 44px;
  height: 44px;
}
.flag-badge.sheet img {
  transform: scale(1.22);
}

.row-body { flex: 1; min-width: 0; }
.row-title { font-size: 17px; font-weight: 500; }
.row-sub { font-size: 14px; color: var(--muted); margin-top: 2px; }

.rows.archive-rows { margin-bottom: 8px; }
.rows.archive-rows .row--compact {
  padding: 8px 12px;
  gap: 10px;
}
.rows.archive-rows .row--compact .flag-badge,
.rows.archive-rows .row--compact .row-flag {
  width: 32px;
  height: 32px;
}
.rows.archive-rows .row--compact .row-title {
  font-size: 15px;
  font-weight: 500;
}
.rows.archive-rows .row-body--compact {
  display: flex;
  align-items: baseline;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.rows.archive-rows .row-meta-inline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  flex-shrink: 0;
}
.rows.archive-rows .row-chevron {
  font-size: 18px;
}

.coupon-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
}
.coupon-card-code {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.coupon-card-meta {
  font-size: 14px;
  color: var(--muted);
  margin-top: 2px;
}
.coupon-card-badge {
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.promo-active-banner {
  padding: 16px;
  margin-bottom: 12px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(42, 171, 238, 0.22), rgba(34, 197, 94, 0.12));
  border: 1px solid rgba(42, 171, 238, 0.35);
}
.promo-active-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin: 0 0 6px;
}
.promo-active-code {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 4px;
}
.promo-active-meta {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 12px;
}

.promo-wallet-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.promo-wallet-card {
  padding: 14px 16px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
}
.promo-wallet-card--on {
  border-color: rgba(42, 171, 238, 0.45);
  box-shadow: 0 0 0 1px rgba(42, 171, 238, 0.12);
}
.promo-wallet-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.promo-wallet-code {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.promo-wallet-badge {
  margin-left: auto;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}
.promo-wallet-meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.promo-wallet-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.promo-wallet-actions .btn {
  flex: 1;
}
.promo-manual-box {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 4px;
}
.promo-manual-input {
  flex: 1;
  margin: 0;
}
.promo-manual-btn {
  flex-shrink: 0;
  min-width: 108px;
  padding-left: 16px;
  padding-right: 16px;
}
.key-manual-box {
  margin-top: 0;
}
.key-activate-screen .section-label {
  margin-bottom: 8px;
}
.key-activate-guide {
  margin-top: 16px;
}
.key-activate-support {
  margin-top: 12px;
}
.key-support-btn {
  width: 100%;
  margin-top: 12px;
}

.btn-activate-key {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  border: none;
  border-radius: var(--radius-lg);
  background: #934d40;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(147, 77, 64, 0.38);
  transition: filter 0.15s ease, transform 0.12s var(--ease-spring);
  -webkit-tap-highlight-color: transparent;
}

.btn-activate-key:hover {
  filter: brightness(1.07);
}

.btn-activate-key:active {
  transform: scale(0.985);
  filter: brightness(0.96);
}

.btn-activate-key-svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.95;
}

.web-home-key-cta,
.cabinet-activate-key-wrap {
  margin-bottom: 14px;
}

.cabinet-activate-key-wrap {
  margin-top: 4px;
}

.sticky-foot .cta.sticky-activate-key {
  background: #934d40;
  box-shadow: 0 4px 16px rgba(147, 77, 64, 0.32);
}

.sticky-foot .cta.sticky-activate-key:active:not(:disabled) {
  background: #7f4035;
}

.my-keys-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.my-keys-list .order-card {
  margin-bottom: 0;
}

.empty-state {
  padding: 28px 18px;
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius-lg);
  margin-bottom: 8px;
}
.empty-state-title {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 6px;
}
.empty-state-sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

.action-offer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.action-offer-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: var(--surface);
  border: none;
  border-radius: var(--radius-lg);
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.action-offer-card:active {
  opacity: 0.88;
}
.action-offer-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(42, 171, 238, 0.14);
  color: var(--accent);
}
.action-offer-card--green .action-offer-icon { background: rgba(34, 197, 94, 0.14); color: var(--green); }
.action-offer-card--purple .action-offer-icon { background: rgba(168, 85, 247, 0.14); color: #a855f7; }
.action-offer-card--orange .action-offer-icon { background: rgba(249, 115, 22, 0.14); color: var(--orange); }
.action-offer-card--neutral .action-offer-icon { background: rgba(148, 163, 184, 0.14); color: var(--muted); }
.action-offer-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.action-offer-title {
  font-size: 16px;
  font-weight: 600;
}
.action-offer-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
}
.action-offer-meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 2px;
}
.action-offer-chevron {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  max-width: 42%;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notice-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.notice-head h1 {
  margin: 0;
}
.notice-head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.notice-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.notice-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: var(--surface);
  border: none;
  border-radius: var(--radius-lg);
  color: inherit;
  font: inherit;
  cursor: pointer;
  position: relative;
}
.notice-card:active {
  opacity: 0.9;
}
.notice-card--unread {
  background: rgba(42, 171, 238, 0.08);
  border: 1px solid rgba(42, 171, 238, 0.2);
}
.notice-card-icon {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
}
.notice-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.notice-card-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}
.notice-card-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
  white-space: pre-wrap;
}
.notice-card-time {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.85;
}
.notice-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}

.row-chevron {
  color: var(--muted);
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
}

.row-badge {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(42, 171, 238, 0.18);
  color: var(--accent);
}

.row-badge--warn {
  background: rgba(234, 179, 8, 0.18);
  color: #fbbf24;
}

.row-badge--ok {
  background: rgba(48, 209, 88, 0.16);
  color: var(--green);
}

.row-badge--sold {
  background: rgba(148, 163, 184, 0.2);
  color: var(--muted);
}

.row-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--text);
}
.row-icon-svg {
  width: 20px;
  height: 20px;
  display: block;
}
.row-icon.green { background: rgba(48, 209, 88, 0.2); color: var(--green); }
.row-icon.orange { background: rgba(255, 159, 10, 0.2); color: var(--orange); }
.row-icon.blue { background: rgba(10, 132, 255, 0.2); color: var(--accent); }
.row-icon.purple { background: rgba(168, 85, 247, 0.2); color: #a855f7; }
.row-icon.neutral { background: var(--surface2); color: var(--text2); }

.row-icon .row-icon-svg {
  width: 20px;
  height: 20px;
  display: block;
}

.plan-card {
  display: block;
  width: 100%;
  text-align: left;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 16px 16px 16px 18px;
  margin-bottom: 10px;
  cursor: pointer;
  color: var(--text);
  position: relative;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), transform 0.14s var(--ease-spring), box-shadow var(--dur-fast) var(--ease-out);
}
.plan-card:active { transform: scale(0.985); }

.plan-card.selected {
  border-color: var(--accent-border);
  background: var(--accent-dim);
  box-shadow: 0 0 0 1px var(--accent-dim), 0 8px 24px rgba(10, 132, 255, 0.15);
  transform: scale(1.01);
}
.plan-card.selected .plan-days { color: var(--accent); }

.plan-card-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 8px 12px;
}

.plan-gb {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.plan-days {
  font-size: 14px;
  color: var(--muted);
  margin-top: 2px;
}

.plan-price {
  font-size: 18px;
  font-weight: 700;
  text-align: right;
}
.plan-unit {
  font-size: 13px;
  color: var(--muted);
  text-align: right;
}

.plan-radio {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--surface3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--dur-fast), background var(--dur-fast), transform var(--dur-fast) var(--ease-spring);
}
.plan-card.selected .plan-radio {
  border-color: var(--accent);
  background: var(--accent);
  transform: scale(1.08);
}
.plan-card.selected .plan-radio::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: radio-pop 0.25s var(--ease-spring) both;
}

.plan-card.sold-out {
  opacity: 0.72;
  cursor: default;
}
.plan-card.sold-out:active {
  transform: none;
}
.plan-card.sold-out .plan-price,
.plan-card.sold-out .plan-gb {
  color: var(--muted);
}
.plan-sold-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(148, 163, 184, 0.22);
  color: var(--muted);
}
.sold-out-banner {
  border: 1px solid rgba(148, 163, 184, 0.25);
}
@keyframes radio-pop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.info-box {
  border-radius: var(--radius);
  background: var(--surface);
  padding: 14px 16px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.45;
}
.sales-paused-banner {
  margin-bottom: 12px;
  position: sticky;
  top: 10px;
  z-index: 12;
  border-radius: 16px;
  border: 1px solid rgba(255, 159, 10, 0.35);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(255, 159, 10, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.info-box.warn {
  background: rgba(255, 159, 10, 0.12);
  color: var(--text);
}
.info-box b { color: var(--text); }

.sales-paused-banner__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sales-paused-banner__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 214, 10, 0.32) 0%, rgba(255, 159, 10, 0.16) 55%, transparent 76%),
    rgba(255, 159, 10, 0.12);
  border: 1px solid rgba(255, 159, 10, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 18px;
  line-height: 1;
}
.sales-paused-banner__title {
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 3px;
  color: var(--text);
}
.sales-paused-banner__msg {
  color: rgba(235, 235, 245, 0.92);
}
html[data-theme="light"] .sales-paused-banner__msg {
  color: rgba(28, 28, 30, 0.85);
}

.tag-blue {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
}

.checkout {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-hero {
  text-align: center;
  padding: 8px 8px 20px;
}

.checkout-hero-flag {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.checkout-hero-flag .flag-badge.lg {
  width: 64px;
  height: 64px;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.checkout-hero-title {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.checkout-hero-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.checkout-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text2);
  font-size: 14px;
  font-weight: 500;
}

.checkout-hero-hint {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.checkout-hero-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}

.checkout-hero-price-val {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.checkout-hero-price-cur {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 600;
  color: var(--muted);
}

.checkout-pay-block {
  padding: 12px 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
html[data-theme="light"] .checkout-pay-block {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}
.checkout-pay-label {
  margin: 0 0 8px 2px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.checkout-pay-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.checkout-pay-opt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-height: 44px;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid var(--border-mid);
  background: var(--surface2);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.checkout-pay-opt:active {
  transform: scale(0.98);
}
.checkout-pay-opt.active {
  border-color: var(--accent-border);
  background: var(--accent-dim);
  box-shadow: 0 0 0 1px var(--accent-dim);
}
.checkout-pay-opt-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.checkout-pay-opt-hint {
  font-size: 11px;
  line-height: 1.25;
  color: var(--muted);
}

.checkout-panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
}

.checkout-panel .checkout-line:first-child,
.checkout-panel .checkout-field:first-child {
  border-top: none;
}

.checkout-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
}

.checkout-line + .checkout-line,
.checkout-line + .checkout-field {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.checkout-line-main {
  font-size: 16px;
  font-weight: 500;
}

.checkout-line-side {
  font-size: 15px;
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
}

.checkout-line--static .checkout-line-side {
  color: var(--muted);
  font-weight: 400;
}

.checkout-line--ok .checkout-line-side {
  color: var(--green);
  font-weight: 600;
}

.checkout-line--btn {
  cursor: pointer;
  transition: background var(--dur-fast) ease;
}

.checkout-line--btn:active {
  background: var(--surface2);
}

.checkout-field {
  padding: 14px 16px 16px;
}

.checkout-field-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.checkout-field-input {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 12px;
  background: var(--surface2);
  color: var(--text);
  font-size: 16px;
  padding: 0 14px;
  outline: none;
  font-family: inherit;
}

.checkout-field-input:focus {
  box-shadow: 0 0 0 2px var(--accent-dim);
}

.checkout-field-input::placeholder {
  color: rgba(142, 142, 147, 0.85);
}

.sheet {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 12px;
}

.sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.sheet-head h2 { margin: 0; font-size: 20px; font-weight: 700; }
.sheet-head .flag-badge,
.sheet-head .row-flag.em {
  flex-shrink: 0;
}

.sheet-meta { color: var(--muted); font-size: 15px; margin-bottom: 12px; }

.sheet-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 16px;
}
.sheet-total strong { font-size: 22px; font-weight: 700; }

.field-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin: 12px 0 6px 4px;
}

.field-input {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: var(--radius);
  background: var(--surface2);
  color: var(--text);
  font-size: 16px;
  padding: 0 14px;
  outline: none;
}
.field-input:focus { box-shadow: 0 0 0 2px var(--accent-dim); }

.row-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
}

.toggle {
  width: 51px;
  height: 31px;
  border-radius: 16px;
  background: var(--surface3);
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s;
}
.toggle.on { background: var(--green); }
.toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.toggle.on::after { transform: translateX(20px); }

.balance-card .row-title { font-size: 18px; }

.referral-banner {
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  margin: var(--space-3) 0;
  background: var(--promo-card-bg);
  border: 1px solid var(--border-mid);
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.referral-banner::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 56px;
  height: 56px;
  opacity: 0.2;
  pointer-events: none;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M21 16v-2l-8-5V3.5a1.5 1.5 0 00-3 0V9l-8 5v2l8-2.5V19l-2 1.5V22l3-1 3 1v-1.5L13 19v-5.5l8 2.5z' fill='white'/%3E%3C/svg%3E");
}
.referral-banner h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  max-width: 70%;
  line-height: 1.25;
}
.referral-banner p { margin: 0 0 14px; font-size: 14px; opacity: 0.9; }
.referral-banner .btn-white {
  display: inline-block;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.stat-box {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
}
.stat-box span {
  font-size: 11px;
  line-height: 1.3;
  color: var(--muted);
}
.stat-box b { display: block; font-size: 22px; font-weight: 700; margin-top: 4px; }

.cabinet-tile-stats {
  position: relative;
  width: 100%;
  border: none;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.cabinet-tile-stats:active .stat-box {
  background: var(--surface2);
}

.cabinet-tile-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 20px;
  font-weight: 300;
  pointer-events: none;
}

.esim-overview,
.ref-overview,
.cabinet-overview {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 20px;
}

.ref-link-box {
  margin-bottom: 12px;
}

.ref-link-text {
  margin: 0;
  word-break: break-all;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text);
}

.ref-hint {
  margin-top: 0;
  margin-bottom: 16px;
}

.esim-empty {
  margin: 0;
  border-radius: var(--radius-lg);
}


.cabinet-ref-btn {
  display: block;
  width: 100%;
  height: 48px;
  border: none;
  border-radius: var(--radius-lg);
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background var(--dur-fast) ease, transform 0.12s var(--ease-spring);
}

.cabinet-ref-btn:active {
  transform: scale(0.985);
  background: var(--accent-press);
}

.ref-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}

.cabinet-ref-btn-secondary {
  background: var(--surface2);
  color: var(--text);
}

.cabinet-ref-btn-secondary:active {
  background: var(--surface3);
}

.qr-box {
  text-align: center;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  margin: 12px 0;
}
.qr-box img {
  max-width: 200px;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}

.qr-box--hero {
  margin: 8px 0 20px;
  padding: 20px 16px;
}

.qr-box--hero img {
  max-width: min(280px, 88vw);
  width: 100%;
  height: auto;
}

.install-qr-screen .install-qr-lead {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text2);
}

.install-qr-screen .install-guide-photos-label {
  margin-top: 8px;
}

.code-line {
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 13px;
  word-break: break-all;
  background: var(--surface2);
  padding: 12px;
  border-radius: 12px;
  margin: 8px 0;
  color: var(--text2);
}

.html-content {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.5;
}
.html-content b { color: var(--text); font-weight: 600; }
.html-content blockquote {
  margin: 10px 0;
  padding-left: 12px;
  border-left: 3px solid var(--accent);
  color: var(--muted);
}

.install-guide-text p { margin: 0 0 10px; }
.install-guide-text p:last-child { margin-bottom: 0; }
.install-guide-text--compact { margin-bottom: 12px; font-size: 15px; }
.install-guide-screen,
.install-qr-screen,
.install-precheck-screen {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.install-precheck-screen {
  padding-bottom: 4px;
}

.install-precheck-lead {
  margin: 4px 0 16px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
}

.install-precheck-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.install-precheck-card {
  cursor: default;
  pointer-events: none;
}

.install-precheck-card:active {
  opacity: 1;
}

.install-precheck-card .action-offer-icon svg {
  width: 22px;
  height: 22px;
}

.install-precheck-card .action-offer-sub {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text2);
}

.install-precheck-warn {
  margin-bottom: 18px;
}

.install-precheck-warn .status-inline-text {
  color: var(--text2);
}

.install-precheck-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.install-precheck-actions .cabinet-ref-btn {
  width: 100%;
}

.install-precheck-support {
  padding: 8px 10px;
  border: none;
  background: none;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.install-precheck-support:active {
  opacity: 0.7;
}

.status-inline-body {
  flex: 1;
  min-width: 0;
}

.install-guide-screen .page-head,
.install-qr-screen .page-head {
  margin-bottom: 12px;
}

.install-guide-screen .info-box,
.install-guide-screen .country-facts,
.install-guide-screen .rows,
.install-guide-screen .cta,
.install-guide-screen .cabinet-ref-btn {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.install-guide-photos-label { margin-top: 20px; }
.install-guide-photos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.install-guide-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.loading {
  text-align: center;
  padding: 48px 16px;
  color: var(--muted);
}
.error-msg { color: var(--danger); font-size: 14px; padding: 8px 4px; }

.sticky-foot {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 16px calc(10px + var(--safe-b));
  background: var(--sticky-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-mid);
  z-index: 30;
  max-width: 480px;
  margin: 0 auto;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
  pointer-events: none;
}
.sticky-foot.sticky-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.cta {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: var(--radius-lg);
  background: var(--accent);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: -0.01em;
  font-family: inherit;
  transition: background var(--dur-fast) ease, transform 0.12s var(--ease-spring), opacity var(--dur-fast);
}
.cta:disabled {
  background: var(--surface3);
  color: var(--muted);
  cursor: not-allowed;
}
.cta.secondary {
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
}
.cta.secondary:active:not(:disabled) {
  background: var(--surface3);
}
.cta:active:not(:disabled) {
  transform: scale(0.985);
  background: var(--accent-press);
}

.sticky-foot .cta {
  height: 52px;
}

.sticky-foot .cta:active:not(:disabled) {
  background: var(--accent-press);
}

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0 16px calc(10px + var(--safe-b));
  pointer-events: none;
}

.dock-bar {
  position: relative;
  pointer-events: auto;
  width: fit-content;
  max-width: calc(100% - 24px);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 2px;
  padding: 5px;
  height: 64px;
  box-sizing: border-box;
  border-radius: 32px;
  background: var(--dock-bg);
  border: 0.5px solid var(--border-mid);
  box-shadow: var(--dock-shadow);
  animation: dock-rise 0.55s var(--ease-out) backwards;
}
.dock-bar--4 .dock-item {
  min-width: 72px;
  padding: 0 8px;
}
.dock-bar--4 .dock-label {
  font-size: 11px;
}

.dock-pill {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 26px;
  background: var(--dock-pill);
  box-shadow: inset 0 1px 0 var(--border);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition:
    transform 0.38s cubic-bezier(0.32, 0.72, 0, 1),
    width 0.38s cubic-bezier(0.32, 0.72, 0, 1),
    height 0.38s cubic-bezier(0.32, 0.72, 0, 1),
    opacity 0.25s ease;
  will-change: transform, width;
}
.dock-pill.is-ready {
  opacity: 1;
}

.dock-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 86px;
  height: 100%;
  margin: 0;
  padding: 0 14px;
  border: none;
  border-radius: 26px;
  background: transparent;
  color: var(--dock-muted);
  font: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.28s var(--ease-out), transform 0.16s var(--ease-spring);
}
.dock-item:active {
  transform: scale(0.94);
}
.dock-item.active {
  color: var(--dock-active-fg);
}

.dock-svg {
  display: block;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  transition: transform 0.28s var(--ease-spring);
}

.dock-item.dock-bump .dock-svg {
  animation: dock-icon-pop 0.42s var(--ease-spring);
}

.dock-label {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  transition: color 0.25s ease, font-weight 0.25s ease;
}
.dock-item.active .dock-label {
  font-weight: 600;
  color: var(--dock-active-fg);
}

@keyframes dock-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes dock-icon-pop {
  0% { transform: scale(0.82); }
  55% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.country-page-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-top: 4px;
}
.country-page-title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.flag-badge.xl {
  width: 64px;
  height: 64px;
}
.flag-badge.xl img {
  transform: scale(1.22);
}
.row-flag.lg {
  width: 48px;
  height: 48px;
  font-size: 26px;
}

.country-facts {
  background: var(--surface);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  overflow: hidden;
}
.feat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.feat-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--text2);
  border-bottom: 0.5px solid var(--border-mid);
}
.feat-list li:last-child {
  border-bottom: none;
}
.feat-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.feat-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.feat-esim--yes .feat-icon {
  color: var(--green);
}
.feat-esim--no .feat-icon {
  color: var(--danger);
}
.feat-esim--maybe .feat-icon,
.feat-esim--unknown .feat-icon {
  color: var(--orange);
}
.feat-esim--no span:last-child,
.feat-esim--maybe span:last-child,
.feat-esim--unknown span:last-child {
  color: var(--text);
}

.help-support {
  margin-bottom: 20px;
}

.help-support .row-accent {
  background: var(--accent-dim);
  border-top: none;
}

.help-support .row-accent .row-title {
  font-weight: 600;
  color: var(--accent);
}

.help-support .row-accent .row-chevron {
  color: var(--accent);
  opacity: 0.75;
}

.help-support .row-accent:active {
  background: var(--surface2);
}

html.no-telegram #dock,
html.no-telegram #topbar,
html.no-telegram #sticky-foot,
html.no-telegram #overlay {
  display: none !important;
}

html.no-telegram #app {
  padding-bottom: calc(16px + var(--safe-b));
}

body.tg-gate #app {
  padding-bottom: calc(16px + var(--safe-b));
}

#app.tg-gate-app {
  justify-content: center;
}

#app.tg-gate-app #view {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
}

.tg-gate-screen {
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.tg-gate-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.tg-gate-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.tg-gate-text {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
}

.tg-gate-btn {
  display: block;
  text-decoration: none;
  text-align: center;
}

.tg-gate-web-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  text-decoration: none;
  text-align: center;
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border-mid);
  box-shadow: none;
}

.tg-gate-web-btn:active {
  transform: scale(0.98);
}

.web-login {
  width: 100%;
  max-width: 360px;
  text-align: left;
}

.web-login-title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.web-login-sub {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
}

.web-login-field {
  margin-bottom: 12px;
}

.web-login-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--muted);
}

.web-login-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text);
  font-size: 16px;
}

.web-login-code input {
  letter-spacing: 0.35em;
  text-align: center;
  font-size: 20px;
}

.web-login-hint {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.web-login-alt {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.web-login-alt summary {
  cursor: pointer;
  font-size: 14px;
  color: var(--muted);
}

.web-login-err {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 80, 80, 0.12);
  color: #ff8a8a;
  font-size: 14px;
}

.web-login-tg {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.web-tg-link-banner {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(36, 129, 204, 0.12);
  border: 1px solid rgba(36, 129, 204, 0.28);
}

.web-tg-link-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.web-tg-link-text {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.web-tg-link-btn {
  width: 100%;
}

.ecosystem-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ecosystem-banner-actions .web-tg-link-btn {
  width: 100%;
}

.ecosystem-code-btn {
  width: 100%;
}

.web-login-section-label {
  margin: 18px 0 8px;
  text-align: left;
}

.web-login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 6px;
  color: var(--muted);
  font-size: 13px;
}

.web-login-divider::before,
.web-login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border, rgba(255, 255, 255, 0.12));
}

.web-login-bot-link {
  display: block;
  width: 100%;
  margin: 0 0 12px;
  text-align: center;
}

.web-login-widget {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.web-gate-back {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 0;
  border: none;
  background: none;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.web-gate-back:hover {
  color: var(--text2);
}

.web-home {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 8px 4px 28px;
  text-align: center;
}

.web-home-glow {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.web-home > *:not(.web-home-glow) {
  position: relative;
  z-index: 1;
}

.web-home-brand {
  margin: 0 0 6px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.web-home-tag {
  margin: 0 0 14px;
  font-size: 15px;
  color: var(--muted);
}

.web-home-lead {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text2);
}

.web-home-features {
  list-style: none;
  margin: 0 0 26px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-mid);
  background: var(--surface);
  text-align: left;
}

.web-home-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
}

.web-home-feature-ico {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--surface2);
  font-size: 15px;
  flex-shrink: 0;
}

.web-home-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  margin-bottom: 14px;
}

.web-home-actions .cta {
  width: 100%;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

.web-home-bot,
.web-home-app {
  display: flex;
  align-items: center;
  justify-content: center;
}

.web-home-link {
  display: inline-block;
  margin: 0;
  padding: 8px 4px;
  border: none;
  background: none;
  color: var(--accent);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.captcha-gate #app {
  padding-bottom: calc(16px + var(--safe-b));
}

#app.captcha-gate-app {
  justify-content: center;
}

#app.captcha-gate-app #view {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(12px + var(--safe-t)) 20px calc(16px + var(--safe-b));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.launch-gate {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  text-align: center;
}

.gate-step.hidden {
  display: none !important;
}

#gate-step-welcome {
  padding-top: 12vh;
}

.launch-title {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.launch-sub {
  margin: 0 0 32px;
  font-size: 17px;
  line-height: 1.4;
  color: var(--muted);
}

.launch-cta {
  width: 100%;
}

.launch-check-title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.launch-check-sub {
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--muted);
}

.launch-prompt-target {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.launch-prompt-emoji {
  font-size: 48px;
  line-height: 1;
}

.launch-animal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.launch-animal-grid--shake {
  animation: launch-shake 0.42s ease;
}

@keyframes launch-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}

.launch-animal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 12px;
  border: 2px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--card-shadow);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.12s ease,
    border-color 0.12s ease,
    background 0.12s ease;
}

.launch-animal-btn:active {
  transform: scale(0.96);
}

.launch-animal-btn--ok {
  border-color: var(--accent2);
  background: rgba(34, 197, 94, 0.12);
}

.launch-animal-emoji {
  font-size: 44px;
  line-height: 1;
}

.launch-hint {
  min-height: 20px;
  margin: 0;
  font-size: 14px;
  color: var(--danger);
}

#gate-step-captcha {
  padding-top: 8vh;
}

body.status-fullscreen #topbar,
body.status-fullscreen #dock,
body.status-fullscreen #sticky-foot {
  display: none !important;
}

body.status-fullscreen #app {
  padding-bottom: calc(16px + var(--safe-b));
}

#app.status-fullscreen-app {
  justify-content: flex-start;
}

#app.status-fullscreen-app #view {
  flex: 1;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  display: block;
  padding: calc(8px + var(--safe-t)) 16px calc(16px + var(--safe-b));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

#app.status-fullscreen-app #view:has(> .flow-screen) {
  display: flex;
  flex-direction: column;
  padding: 0;
}

#app.status-fullscreen-app #view:has(> .status-screen) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(16px + var(--safe-t)) 20px calc(16px + var(--safe-b));
}

.flow-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  padding: calc(28px + var(--safe-t)) 20px calc(20px + var(--safe-b));
  box-sizing: border-box;
}

.flow-screen-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8px 0 24px;
}

.flow-screen-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

.flow-screen--warn .flow-screen-icon,
.flow-screen--wifi .flow-screen-icon,
.flow-screen--install-precheck .flow-screen-icon {
  color: var(--orange);
  background: rgba(255, 159, 10, 0.14);
  box-shadow:
    0 8px 28px rgba(255, 159, 10, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.flow-screen--install-precheck .flow-screen-body {
  justify-content: flex-start;
  padding-top: 12px;
}

.flow-screen--install-precheck .flow-screen-title {
  font-size: 24px;
  max-width: 360px;
}

.flow-screen--install-precheck .flow-screen-text {
  max-width: 360px;
  color: var(--text2);
}

.flow-screen--install-precheck .flow-screen-list {
  max-width: 360px;
  border: 1px solid rgba(255, 159, 10, 0.35);
}

.flow-screen--install-precheck .flow-screen-list li {
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
  padding: 16px 16px 16px 44px;
  position: relative;
}

.flow-screen--install-precheck .flow-screen-list li::before {
  content: "!";
  position: absolute;
  left: 14px;
  top: 15px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 159, 10, 0.22);
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
}

.flow-screen--install-precheck .flow-screen-foot {
  max-width: 360px;
  padding-top: 8px;
}

.flow-screen--success .flow-screen-icon {
  color: var(--green, #34c759);
  background: rgba(52, 199, 89, 0.14);
  box-shadow:
    0 8px 28px rgba(52, 199, 89, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.flow-screen-title {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 320px;
}

.flow-screen-text {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 320px;
}

.flow-screen-list {
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
  text-align: left;
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.flow-screen-list li {
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
}

.flow-screen-list li:last-child {
  border-bottom: none;
}

.flow-screen-foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.flow-screen-rows {
  margin-bottom: 4px;
}

.flow-screen-link {
  margin-top: 2px;
  padding: 10px;
  border: none;
  background: none;
  color: var(--link, #0a84ff);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.flow-screen-link:active {
  opacity: 0.7;
}

.flow-screen-foot .cta,
.flow-screen-foot .cabinet-ref-btn {
  width: 100%;
}

.status-screen {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}

.status-screen-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

.status-screen--blocked .status-screen-icon {
  color: var(--danger);
  background: rgba(255, 69, 58, 0.14);
  box-shadow:
    0 8px 32px rgba(255, 69, 58, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.status-screen--warn .status-screen-icon {
  color: var(--orange);
  background: rgba(255, 159, 10, 0.14);
  box-shadow:
    0 8px 28px rgba(255, 159, 10, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.status-screen-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.status-screen-text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.status-screen-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  text-align: left;
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.status-screen-list li {
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
}

.status-screen-list li:last-child {
  border-bottom: none;
}

.status-screen .cta,
.status-screen .cabinet-ref-btn {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.status-inline {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.status-inline--warn {
  background: rgba(255, 159, 10, 0.1);
  border-color: rgba(255, 159, 10, 0.28);
}

.status-inline-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--orange);
  background: rgba(255, 159, 10, 0.16);
}

.status-inline-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.status-inline-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.status-inline-link {
  display: inline-block;
  margin-top: 8px;
  padding: 0;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
}

.faq-article-title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.faq-article-body {
  margin-bottom: 0;
}
.faq-article-body ul {
  margin: 8px 0 0;
  padding-left: 20px;
}
.faq-article-body li {
  margin-bottom: 6px;
}
.faq-article-body p {
  margin: 0 0 10px;
}
.faq-article-body p:last-child {
  margin-bottom: 0;
}

.intl-page {
  padding-bottom: 8px;
}

.intl-lead {
  margin: -6px 0 20px 4px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.4;
}

.intl-block {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  margin-bottom: 16px;
}

.intl-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.intl-list li {
  position: relative;
  padding: 7px 0 7px 14px;
  font-size: 15px;
  color: var(--text2);
  line-height: 1.45;
}

.intl-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.intl-list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.intl-note,
.intl-footnote {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text2);
}

.intl-footnote {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 14px;
}

.row-static { cursor: default; }
.row-static:active { background: var(--surface); }

.overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  padding-bottom: calc(16px + var(--safe-b));
  transition: background var(--dur-med) ease;
}
.overlay.overlay-open {
  background: var(--overlay-dim);
}
.modal {
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px 16px 16px;
  border: 1px solid var(--border-mid);
  transform: translate3d(0, 100%, 0);
  transition: transform var(--dur-med) var(--ease-out);
}
.overlay.overlay-open .modal {
  transform: translate3d(0, 0, 0);
}
.modal-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
}
.modal-input { margin-bottom: 8px; }
.modal-textarea {
  margin-bottom: 8px;
  min-height: 120px;
  resize: vertical;
  line-height: 1.45;
}
.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.modal-btn {
  flex: 1;
  height: 48px;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.modal-btn.ghost {
  background: var(--surface2);
  color: var(--text);
}
.modal-btn.primary {
  background: var(--accent);
  color: #fff;
}
.modal-btn:active { transform: scale(0.97); }

.wait-hint {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(42, 171, 238, 0.12);
  border: 1px solid rgba(42, 171, 238, 0.28);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  animation: wait-hint-in 0.35s var(--ease-out) both;
}
.wait-hint--skeleton {
  margin-bottom: 4px;
}
.wait-hint[hidden] {
  display: none !important;
}
@keyframes wait-hint-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.skeleton-page { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; }
.sk {
  border-radius: var(--radius);
  background: linear-gradient(
    90deg,
    var(--surface) 0%,
    var(--surface2) 45%,
    var(--surface) 90%
  );
  background-size: 200% 100%;
  animation: shimmer 1.2s ease-in-out infinite;
}
.sk-title { height: 36px; width: 72%; border-radius: 12px; }
.sk-search { height: 48px; }
.sk-segments { height: 40px; width: 85%; border-radius: var(--radius-pill); }
.sk-hub { height: 72px; border-radius: var(--radius-lg); margin-bottom: var(--space-2); }
.sk-label { height: 14px; width: 40%; }
.sk-row { height: 56px; border-radius: var(--radius-lg); }

@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.badge-pill {
  animation: badge-pulse 2.5s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(10, 132, 255, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(10, 132, 255, 0); }
}

.btn-white {
  transition: transform 0.12s var(--ease-spring), box-shadow var(--dur-fast);
}
.btn-white:active { transform: scale(0.97); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .screen.view-enter,
  .screen.view-enter-back,
  .anim-item { animation: none !important; opacity: 1 !important; transform: none !important; }
}

.esim-detail-head {
  margin-bottom: 20px;
}
.esim-pack-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 6px 0 0;
}
.esim-pack-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface2);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.esim-status {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: rgba(10, 132, 255, 0.18);
  color: var(--accent);
}
.esim-status--active {
  background: rgba(48, 209, 88, 0.18);
  color: var(--green);
}
.esim-status--soon {
  background: rgba(255, 159, 10, 0.18);
  color: var(--orange);
}
.esim-status--pending,
.esim-status--archived,
.esim-status--idle {
  background: var(--surface2);
  color: var(--text2);
}
.esim-facts .esim-fact-row {
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.esim-fact-row span {
  color: var(--muted);
  flex: 1;
}
.esim-fact-row strong {
  font-weight: 600;
  color: var(--text);
  text-align: right;
}
.esim-hint { margin: 0 0 14px; }
.esim-install-pending .btn {
  margin-top: 12px;
  width: 100%;
}

.esim-install-warnings { margin: 0 0 14px; }
.esim-warn-bullets {
  margin: 0 0 12px;
  padding: 0 0 0 18px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
}
.esim-warn-bullets--muted { color: var(--muted); }
.esim-warn-bullets li + li { margin-top: 6px; }
.esim-renew-cta { margin-bottom: 10px; }
.esim-flow-hint { margin: 0 0 14px; }
.esim-pre-activate-warn,
.esim-activate-confirm-warn {
  margin-bottom: 16px;
}
.esim-activate-confirm-head {
  margin-bottom: 12px;
}
.esim-activate-confirm-warn .status-inline-text b {
  color: var(--text);
  font-weight: 600;
}
.esim-flow-data { margin-bottom: 14px; }
#qr:not(.hidden) { margin-bottom: 14px; }
.esim-connect-panel {
  margin: 16px 0 18px;
}
.esim-connect-lead {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text2);
}
.esim-connect-qr {
  margin: 0 0 12px;
  padding: 16px 12px;
}
.esim-connect-qr img {
  max-width: min(220px, 72vw);
}
.esim-connect-rows {
  margin-top: 0;
}
.esim-connect-row .row-sub {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: -0.02em;
}
.esim-install-data { margin-bottom: 14px; }
.esim-install-data .esim-fact-row.tap-copy { cursor: pointer; }
.esim-install-data .esim-fact-row.tap-copy:active { opacity: 0.85; }
.esim-install-hint {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.45;
}
.confirm-modal-body { margin-bottom: 12px; font-size: 15px; line-height: 1.45; }
.confirm-modal-body p { margin: 0 0 10px; }
.confirm-modal-body p:last-child { margin-bottom: 0; }
.post-act-success { margin-bottom: 12px; }
.post-act-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.key-support-btn { width: 100%; margin-top: 14px; }
.install-methods-foot { margin-top: 16px; }
.esim-cta-top { margin: 0 0 14px; }
.esim-actions-label { margin-top: 4px; }
.esim-cab-row { margin-top: 10px; }
.esim-review {
  display: flex;
  width: 100%;
  margin-top: 12px;
  padding: 14px 16px;
  border: none;
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}
.esim-review:active { background: var(--surface2); }
.tap-copy { cursor: pointer; }
.tap-copy:active { opacity: 0.85; }
.row-sub { display: block; }

#app:not(.subview) .sticky-foot {
  bottom: calc(var(--dock-h) + 4px + var(--safe-b));
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.order-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 14px 16px 16px;
}

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

.order-card-status {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface2);
  color: var(--muted);
}

.order-card-status--paid {
  color: var(--green);
  background: rgba(52, 199, 89, 0.12);
}

.order-card-status--pending {
  color: #ff9f0a;
  background: rgba(255, 159, 10, 0.14);
}

.order-card-status--cancelled {
  color: var(--muted);
}

.order-card-amount {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.order-card-title {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}

.order-card-panel {
  border-radius: 12px;
  background: var(--surface2);
  overflow: hidden;
}

.order-card-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  font-size: 15px;
}

.order-card-row + .order-card-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] .order-card-row + .order-card-row {
  border-top-color: rgba(0, 0, 0, 0.06);
}

.order-card-k {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 14px;
}

.order-card-v {
  text-align: right;
  font-weight: 500;
  word-break: break-word;
}

.order-card-v--email {
  font-size: 14px;
}

.order-card-v--mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

.order-card-link {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 12px 14px;
  border: none;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.order-card-link:active {
  opacity: 0.88;
}
