:root {
  --blue: #dcd3ff;
  --blue-dark: #6f63c4;
  --blue-soft: #f5f2ff;
  --blue-ink: #332b55;
  --aqua: #9bdde6;
  --ink: #061525;
  --muted: #50677b;
  --line: #e8e3f7;
  --surface: #ffffff;
  --orange: #ff9b35;
  --green: #18b785;
  --shadow: 0 16px 40px rgba(51, 43, 85, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--blue-dark);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(111, 99, 196, 0.28);
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
li,
summary {
  margin-top: 0;
  overflow-wrap: break-word;
  word-break: normal;
}

h1 {
  width: min(520px, 100%);
  margin-bottom: 30px;
  color: var(--blue-ink);
  font-size: 3.15rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.shell {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  background: #f1edff;
  color: var(--blue-ink);
}

.nav {
  display: grid;
  min-height: 90px;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--blue-ink);
  font-weight: 900;
}

.brand:hover {
  color: var(--blue-ink);
}

.brand-badge {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 10px;
  background: url("wallet-shop-logo.svg") center / 100% 100% no-repeat;
  color: transparent;
  font-size: 0;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(111, 99, 196, 0.2);
}

.brand-word {
  color: var(--blue-ink);
  font-size: 1.45rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 44px;
  color: var(--blue-ink);
  font-size: 1rem;
  font-weight: 850;
  min-width: 0;
}

.nav-links a {
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--blue-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 0;
}

.lang-pill,
.icon-button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 7px;
  color: var(--blue-ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.lang-pill {
  background: rgba(255, 255, 255, 0.26);
}

.icon-button:hover,
.lang-pill:hover {
  color: var(--blue-dark);
  background: rgba(51, 43, 85, 0.08);
}

.icon-search,
.icon-user,
.icon-bag {
  display: block;
  width: 22px;
  height: 22px;
  position: relative;
}

.icon-search::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
  left: 1px;
  top: 1px;
}

.icon-search::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
  right: 1px;
  bottom: 3px;
}

.icon-user::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  left: 7px;
  top: 1px;
}

.icon-user::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  left: 3px;
  bottom: 1px;
}

.icon-bag::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 3px;
  left: 3px;
  bottom: 1px;
}

.icon-bag::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 6px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  left: 7px;
  top: 1px;
}

.site-search-open {
  overflow: hidden;
}

.site-search {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
}

.site-search.is-open {
  pointer-events: auto;
}

.site-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 46, 0.18);
  opacity: 0;
  backdrop-filter: blur(8px);
  transition: opacity 180ms ease;
}

.site-search.is-open .site-search-backdrop {
  opacity: 1;
}

.site-search-panel {
  position: absolute;
  top: 104px;
  right: max(20px, calc((100vw - 1140px) / 2));
  display: flex;
  width: min(650px, calc(100vw - 40px));
  max-height: min(720px, calc(100vh - 126px));
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(216, 208, 255, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(51, 43, 85, 0.2);
  opacity: 0;
  transform: translateY(-18px) scale(0.97);
  transform-origin: 86% -24px;
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.site-search-panel::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 136px;
  width: 16px;
  height: 16px;
  border-left: 1px solid rgba(216, 208, 255, 0.95);
  border-top: 1px solid rgba(216, 208, 255, 0.95);
  background: rgba(255, 255, 255, 0.96);
  transform: rotate(45deg);
}

.site-search.is-open .site-search-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.site-search-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 7px;
  background: #f5f2ff;
  color: var(--blue-ink);
  cursor: pointer;
}

.site-search-close::before,
.site-search-close::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 9px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-search-close::before {
  transform: rotate(45deg);
}

.site-search-close::after {
  transform: rotate(-45deg);
}

.site-search-close:hover {
  background: #ebe5ff;
  color: var(--blue-dark);
}

.site-search-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(232, 227, 247, 0.9);
}

.site-search-header h2 {
  margin: 0 52px 16px 0;
  color: var(--blue-ink);
  font-size: 1.55rem;
  line-height: 1.15;
}

.site-search-form {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  border: 1px solid #dcd3ff;
  border-radius: 8px;
  background: #fbfaff;
  padding: 8px 8px 8px 16px;
  color: var(--blue-ink);
}

.site-search-form input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  outline: 0;
}

.site-search-form input::placeholder {
  color: #7a6fa3;
}

.site-search-form button {
  min-height: 40px;
  border: 0;
  border-radius: 7px;
  background: var(--blue-dark);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 18px;
}

.site-search-form button:hover {
  background: #5f53b2;
}

.site-search-meta {
  padding: 14px 24px 8px;
  color: #6d628d;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-search-results {
  display: grid;
  gap: 8px;
  overflow-y: auto;
  padding: 0 16px 16px;
}

.site-search-meta[hidden] + .site-search-results {
  padding-top: 16px;
}

.site-search-result {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 10px 12px;
  box-shadow: 0 10px 24px rgba(51, 43, 85, 0.06);
}

.site-search-result:hover,
.site-search-result:focus-visible {
  border-color: rgba(111, 99, 196, 0.45);
  background: #f8f6ff;
  color: var(--ink);
  transform: translateY(-1px);
}

.site-search-result-logo {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: #f1edff;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 950;
}

.site-search-result-logo.has-logo {
  background: #ffffff;
  border: 1px solid rgba(216, 208, 255, 0.95);
}

.site-search-result-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.site-search-result-body {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.site-search-result-body strong,
.site-search-result-info {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-search-result-body strong {
  color: var(--blue-ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

.site-search-result-info {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.site-search-result-arrow {
  position: relative;
  width: 22px;
  height: 22px;
  color: var(--blue-dark);
}

.site-search-result-arrow::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.site-search-empty {
  border: 1px dashed #dcd3ff;
  border-radius: 8px;
  background: #fbfaff;
  color: #6d628d;
  font-weight: 850;
  padding: 18px;
  text-align: center;
}

.site-search-empty.is-initial {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  border-style: solid;
  background: linear-gradient(135deg, #fbfaff 0%, #f4f1ff 100%);
  padding: 16px;
  text-align: left;
}

.site-search-empty-icon {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--blue-dark);
  box-shadow: 0 8px 20px rgba(51, 43, 85, 0.08);
}

.site-search-empty-icon::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 11px;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.site-search-empty-icon::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 26px;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.site-search-empty-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.site-search-empty-copy strong {
  color: var(--blue-ink);
  font-size: 0.98rem;
}

.site-search-empty-copy span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.45;
}

.site-search-all {
  display: block;
  margin: 0 16px 16px;
  border: 1px solid rgba(216, 208, 255, 0.95);
  border-radius: 8px;
  background: #f5f2ff;
  color: var(--blue-ink);
  font-weight: 900;
  padding: 12px 14px;
  text-align: center;
}

.site-search-all:hover {
  background: #ebe5ff;
  color: var(--blue-dark);
}

.account-cabinet-open {
  overflow: hidden;
}

.account-cabinet {
  position: fixed;
  inset: 0;
  z-index: 51;
  pointer-events: none;
}

.account-cabinet.is-open {
  pointer-events: auto;
}

.account-cabinet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 46, 0.2);
  opacity: 0;
  backdrop-filter: blur(8px);
  transition: opacity 180ms ease;
}

.account-cabinet.is-open .account-cabinet-backdrop {
  opacity: 1;
}

.account-cabinet-panel {
  position: absolute;
  top: 104px;
  right: max(20px, calc((100vw - 1140px) / 2));
  display: flex;
  width: min(560px, calc(100vw - 40px));
  max-height: min(760px, calc(100vh - 126px));
  flex-direction: column;
  overflow: auto;
  border: 1px solid rgba(216, 208, 255, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 28px 70px rgba(51, 43, 85, 0.22);
  opacity: 0;
  padding: 24px;
  transform: translateY(-18px) scale(0.97);
  transform-origin: 92% -24px;
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.account-cabinet-panel::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 82px;
  width: 16px;
  height: 16px;
  border-left: 1px solid rgba(216, 208, 255, 0.95);
  border-top: 1px solid rgba(216, 208, 255, 0.95);
  background: rgba(255, 255, 255, 0.97);
  transform: rotate(45deg);
}

.account-cabinet.is-open .account-cabinet-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.account-cabinet-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 7px;
  background: #f5f2ff;
  color: var(--blue-ink);
  cursor: pointer;
}

.account-cabinet-close::before,
.account-cabinet-close::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 9px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.account-cabinet-close::before {
  transform: rotate(45deg);
}

.account-cabinet-close::after {
  transform: rotate(-45deg);
}

.account-cabinet-close:hover {
  background: #ebe5ff;
  color: var(--blue-dark);
}

.account-cabinet-header {
  margin-right: 48px;
}

.account-cabinet-header h2 {
  margin: 0 0 8px;
  color: var(--blue-ink);
  font-size: 1.55rem;
  line-height: 1.15;
}

.account-cabinet-header p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.account-login-form,
.account-support-form {
  display: grid;
  gap: 12px;
}

.account-login-form[hidden],
.account-cabinet-message[hidden],
.account-dashboard[hidden],
.account-access-panel[hidden],
.account-contact-card[hidden],
.account-tickets-toggle[hidden],
.account-tickets-panel[hidden],
.account-tickets-list[hidden] {
  display: none;
}

.account-login-form label,
.account-support-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.account-login-form input,
.account-support-form textarea {
  width: 100%;
  border: 1px solid #dcd3ff;
  border-radius: 8px;
  background: #fbfaff;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  padding: 12px 14px;
}

.account-access-key {
  -webkit-text-security: disc;
}

.account-login-form button,
.account-support-form button,
.account-logout {
  min-height: 44px;
  border: 0;
  border-radius: 7px;
  background: var(--blue-dark);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 18px;
}

.account-login-form button:hover,
.account-support-form button:hover {
  background: #5f53b2;
}

.account-login-form button:disabled,
.account-support-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.account-cabinet-message {
  margin-top: 12px;
  border-radius: 8px;
  background: #f5f2ff;
  color: var(--blue-ink);
  font-size: 0.9rem;
  font-weight: 850;
  padding: 12px 14px;
}

.account-cabinet-message[data-state="error"] {
  background: #fff4f4;
  color: #8b2d2d;
}

.account-cabinet-message[data-state="success"] {
  background: #ecfff8;
  color: #117a59;
}

.account-dashboard {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.account-dashboard-card,
.account-dashboard-grid > div {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(216, 208, 255, 0.95);
  border-radius: 8px;
  background: #fbfaff;
  padding: 12px 14px;
}

.account-dashboard-card span,
.account-dashboard-grid span {
  color: #6d628d;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.account-dashboard-card strong,
.account-dashboard-grid strong {
  min-width: 0;
  color: var(--blue-ink);
  font-size: 0.96rem;
  overflow-wrap: anywhere;
}

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

.account-dashboard-grid > div:first-child {
  grid-column: 1 / -1;
}


.account-contact-card {
  grid-column: 1 / -1;
}

.account-contact-list {
  display: grid;
  gap: 8px;
}

.account-contact-item {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(120, 97, 214, 0.16);
  border-radius: 7px;
  background: #ffffff;
  padding: 9px 10px;
}

.account-contact-item strong {
  color: var(--blue-ink);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.account-contact-item span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-transform: none;
}

.account-tickets-toggle {
  min-height: 44px;
  border: 1px solid rgba(120, 97, 214, 0.24);
  border-radius: 8px;
  background: #ffffff;
  color: var(--blue-ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 16px;
  text-align: center;
}

.account-tickets-toggle:hover,
.account-tickets-toggle.is-open {
  background: #f5f2ff;
  border-color: rgba(120, 97, 214, 0.44);
}

.account-tickets-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(120, 97, 214, 0.2);
  border-radius: 8px;
  background: #fbfaff;
  padding: 14px;
}

.account-tickets-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

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

.account-ticket-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(120, 97, 214, 0.18);
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
}

.account-ticket-card.is-expanded {
  border-color: rgba(120, 97, 214, 0.32);
  box-shadow: 0 12px 30px rgba(44, 31, 92, 0.08);
}

.account-ticket-preview {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.account-ticket-detail-inline {
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(216, 208, 255, 0.95);
  padding-top: 12px;
}

.account-ticket-actions {
  display: flex;
  justify-content: flex-end;
}

.account-ticket-open {
  min-height: 38px;
  border: 1px solid rgba(120, 97, 214, 0.28);
  border-radius: 7px;
  background: #ffffff;
  color: var(--blue-ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  padding: 0 14px;
}

.account-ticket-open:hover,
.account-ticket-open[aria-expanded="true"] {
  background: #f5f2ff;
  border-color: rgba(120, 97, 214, 0.48);
}

.account-ticket-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.account-ticket-date {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.account-ticket-status {
  border: 1px solid rgba(120, 97, 214, 0.22);
  border-radius: 999px;
  background: #f5f2ff;
  color: var(--blue-ink);
  font-size: 0.82rem;
  line-height: 1;
  padding: 7px 10px;
}

.account-ticket-status[data-state="resolved"] {
  border-color: rgba(41, 171, 135, 0.24);
  background: #eefcf7;
  color: #116a52;
}

.account-ticket-field {
  display: grid;
  gap: 4px;
}

.account-ticket-field span {
  color: var(--blue-ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.account-ticket-field p {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.45;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.account-ticket-field.is-empty p {
  color: var(--muted);
}

.account-reply-options {
  display: grid;
  gap: 9px;
  border: 1px solid rgba(120, 97, 214, 0.2);
  border-radius: 8px;
  padding: 12px;
  margin: 0;
}

.account-reply-options legend {
  padding: 0 7px;
  color: var(--blue-ink);
  font-size: 0.8rem;
  font-weight: 900;
}

.account-reply-external {
  display: grid;
  gap: 9px;
}

.account-reply-option {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid rgba(216, 208, 255, 0.95);
  border-radius: 7px;
  background: #ffffff;
  padding: 10px 11px;
}

.account-reply-option > input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.account-reply-option span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

@media (max-width: 720px) {
  .account-contact-item {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

/* V612_PURCHASE_INSTRUCTION_R13 */
[data-product-contact-option] {
  display: none !important;
}

.product-contact-options-enabled [data-product-contact-option] {
  display: grid !important;
}

.product-first-purchase-guide {
  position: relative;
  overflow: hidden;
  margin: 4px 0 0;
  border: 1px solid rgba(111, 99, 196, 0.28);
  border-left: 4px solid #7868d5;
  border-radius: 12px;
  background: linear-gradient(135deg, #f7f4ff 0%, #fcfbff 100%);
  box-shadow: 0 10px 24px rgba(73, 61, 139, 0.07);
  padding: 14px 16px;
}

.product-first-purchase-guide p {
  margin: 0;
  color: #3d4f66;
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.55;
}

.product-first-purchase-guide strong,
.product-description-options li > strong,
.product-description-push strong {
  color: #000;
  font-weight: 950;
}

.product-description-package-title {
  margin-bottom: 8px !important;
  color: #334f66 !important;
  font-weight: 900;
}

.product-description-package ul,
.product-description-options ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-description-package li,
.product-description-options li {
  position: relative;
  color: #41596d;
  font-size: 0.78rem;
  line-height: 1.5;
  padding: 4px 0 4px 17px;
}

.product-description-package li::before,
.product-description-options li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8172d3;
  box-shadow: 0 0 0 3px rgba(129, 114, 211, 0.1);
}

.product-description-options {
  grid-template-columns: minmax(0, 1fr);
}

.product-description-options ul {
  display: grid;
  gap: 7px;
}

.product-description-options li {
  border: 1px solid #d0e5dc;
  border-radius: 10px;
  background: #ffffff;
  color: #3e6557;
  font-size: 0.76rem;
  font-weight: 720;
  padding: 10px 12px 10px 29px;
}

.product-description-options li::before {
  top: 1.1em;
  left: 13px;
  background: #42a87f;
  box-shadow: 0 0 0 3px rgba(66, 168, 127, 0.1);
}

.product-instruction-confirmation {
  display: grid;
  max-width: 520px;
  gap: 9px;
  margin-top: 10px;
  border: 1px solid rgba(111, 99, 196, 0.22);
  border-radius: 11px;
  background: #faf9ff;
  padding: 12px 14px;
  transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.product-instruction-confirmation > label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #344e65;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.45;
}

.product-instruction-confirmation input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: #7466d6;
}

.product-instruction-confirmation input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(111, 99, 196, 0.24);
  outline-offset: 3px;
}

.product-instruction-confirmation.is-invalid {
  border-color: #d84f5f;
  background: #fff8f9;
  box-shadow: 0 0 0 3px rgba(216, 79, 95, 0.12);
}

.product-instruction-error {
  margin: 0;
  color: #a22f40;
  font-size: 0.8rem;
  font-weight: 780;
  line-height: 1.5;
}

.product-instruction-error[hidden] {
  display: none !important;
}

.product-buy-button.is-instruction-locked,
.product-dialog-action.is-instruction-locked {
  opacity: 1;
  filter: none;
  cursor: pointer;
}

.product-dialog-instruction {
  margin-top: 0;
}

@media (max-width: 720px) {
  .product-first-purchase-guide,
  .product-instruction-confirmation {
    width: 100%;
  }

  .product-first-purchase-guide {
    padding: 13px 14px;
  }

  .product-instruction-confirmation {
    padding: 11px 12px;
  }
}

/* V605_VIRTUAL_PHONE_BINDING */
.account-virtual-phone-card,
.account-virtual-phone-form,
.account-virtual-phone-head {
  display: grid;
  gap: 12px;
}

.account-virtual-phone-card[hidden],
.account-virtual-phone-form[hidden],
.account-virtual-phone-accepted[hidden],
.account-virtual-phone-reset-notice[hidden],
.account-virtual-phone-result[hidden],
.account-field-error[hidden] {
  display: none;
}

.account-virtual-phone-card {
  border: 1px solid rgba(120, 97, 214, 0.3);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff 0%, #f9f7ff 100%);
  padding: 18px;
  box-shadow: 0 12px 30px rgba(51, 43, 85, 0.07);
}

.account-virtual-phone-head h2 {
  margin: 0;
  color: var(--blue-ink);
  font-size: 1.15rem;
}

.account-virtual-phone-head p,
.account-virtual-phone-form > p,
.account-virtual-phone-accepted p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.account-virtual-phone-head p {
  white-space: pre-line;
}

.account-virtual-phone-form {
  border-top: 1px solid rgba(216, 208, 255, 0.9);
  padding-top: 14px;
}

.account-virtual-phone-form > label {
  color: var(--blue-ink);
  font-size: 0.93rem;
  font-weight: 900;
}

.account-virtual-phone-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.account-virtual-phone-controls input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  border: 1px solid #dcd3ff;
  border-radius: 7px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  padding: 0 13px;
}

.account-virtual-phone-controls input:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(120, 97, 214, 0.16);
  outline-offset: 1px;
}

.account-virtual-phone-controls input[aria-invalid="true"] {
  border-color: #b83f4f;
}

.account-virtual-phone-controls button {
  min-height: 46px;
  border: 0;
  border-radius: 7px;
  background: var(--blue-dark);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 20px;
}

.account-virtual-phone-controls button:hover {
  background: #5f53b2;
}

.account-virtual-phone-controls button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.account-virtual-phone-controls button.is-loading {
  align-items: center;
  display: inline-flex;
  gap: 9px;
  justify-content: center;
  min-width: 170px;
}

.account-virtual-phone-controls button.is-loading::before {
  animation: account-phone-spin 0.8s linear infinite;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  border-top-color: #fff;
  content: "";
  flex: 0 0 auto;
  height: 15px;
  width: 15px;
}

.account-virtual-phone-form[aria-busy="true"] input {
  opacity: 0.72;
}

.account-live-status {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

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

@media (prefers-reduced-motion: reduce) {
  .account-virtual-phone-controls button.is-loading::before {
    animation: none;
  }
}

.account-field-error {
  margin: 0;
  color: #8b2d2d;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.45;
}

.account-virtual-phone-accepted,
.account-virtual-phone-reset-notice,
.account-virtual-phone-result {
  border: 1px solid rgba(41, 171, 135, 0.28);
  border-radius: 8px;
  background: #eefcf7;
  color: #116a52;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.5;
  padding: 13px 14px;
}

.account-virtual-phone-reset-notice {
  border-color: rgba(204, 157, 35, 0.3);
  background: #fff9e9;
  color: #74540b;
}

.account-virtual-phone-accepted {
  display: grid;
  gap: 4px;
}

.account-virtual-phone-accepted strong,
.account-virtual-phone-accepted b {
  color: #116a52;
}

.account-virtual-phone-result:not(.is-linked) {
  border-color: rgba(204, 157, 35, 0.3);
  background: #fff9e9;
  color: #74540b;
}

.account-processing-timer.is-paused {
  border-style: dashed;
  background: #faf9ff;
}

.account-processing-timer.is-paused strong {
  color: #766a9a;
}

@media (max-width: 720px) {
  .account-virtual-phone-card {
    padding: 16px;
  }

  .account-virtual-phone-controls {
    grid-template-columns: minmax(0, 1fr);
  }

  .account-virtual-phone-controls button {
    width: 100%;
  }
}

.operator-virtual-panel {
  overflow: hidden;
}

.operator-virtual-panel .operator-panel-head > div {
  display: grid;
  gap: 5px;
}

.operator-phone-status {
  border-bottom: 1px solid #e3eeea;
  color: #58717c;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 12px 16px;
}

.operator-phone-status[data-state="success"] {
  background: #ecfff8;
  color: #0f5f48;
}

.operator-phone-status[data-state="error"] {
  background: #fff4f4;
  color: #8b2d2d;
}

.operator-phone-requests {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.operator-phone-empty {
  margin: 0;
  color: #58717c;
  font-weight: 750;
}

.operator-phone-request {
  display: grid;
  gap: 14px;
  border: 1px solid #d9e6e1;
  border-radius: 8px;
  background: #fbfefd;
  padding: 15px;
}

.operator-phone-request[aria-busy="true"] {
  opacity: 0.72;
}

.operator-phone-request-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.operator-phone-request-top h3,
.operator-phone-request-top p,
.operator-phone-request-note,
.operator-phone-confirmation p {
  margin: 0;
}

.operator-phone-request-top h3 {
  color: #102a3a;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.operator-phone-request-top p {
  margin-top: 3px;
  color: #58717c;
  font-size: 0.84rem;
  font-weight: 750;
}

.operator-phone-request-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.operator-phone-field {
  display: grid;
  min-width: 0;
  gap: 4px;
  border: 1px solid #e3eeea;
  border-radius: 7px;
  background: #ffffff;
  padding: 10px;
}

.operator-phone-field span {
  color: #58717c;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.operator-phone-field strong {
  min-width: 0;
  color: #102a3a;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.operator-phone-field .operator-phone-secret {
  color: #0f5f48;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.operator-phone-request-note {
  color: #415d68;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.5;
}

.operator-phone-request-note[data-state="error"] {
  color: #8b2d2d;
}

.operator-phone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.operator-phone-action-group {
  display: contents;
}

.operator-button.danger {
  border-color: rgba(139, 45, 45, 0.35);
  background: #fff4f4;
  color: #8b2d2d;
}

.operator-phone-confirmation {
  display: flex;
  flex: 1 1 100%;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(204, 157, 35, 0.32);
  border-radius: 8px;
  background: #fff9e9;
  padding: 12px;
}

.operator-phone-confirmation[hidden] {
  display: none;
}

.operator-phone-confirmation p {
  flex: 1 1 260px;
  color: #74540b;
  font-size: 0.88rem;
  font-weight: 850;
}

@media (max-width: 860px) {
  .operator-phone-request-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .operator-phone-request-top,
  .operator-phone-confirmation {
    align-items: stretch;
    flex-direction: column;
  }

  .operator-phone-request-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .operator-phone-actions,
  .operator-phone-action-group,
  .operator-phone-action-group > button,
  .operator-phone-confirmation > button {
    width: 100%;
  }
}



.account-logout {
  border: 1px solid rgba(216, 208, 255, 0.95);
  background: #ffffff;
  color: var(--blue-ink);
}

.account-logout:hover {
  background: #f5f2ff;
  color: var(--blue-dark);
}

.hero-wrap {
  padding: 40px 0 74px;
}

.hero-card {
  position: relative;
  display: grid;
  min-height: 426px;
  align-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(90deg, #dcd3ff 0%, #dcd3ff 45%, #eef7ff 100%);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("wallet-shop-hero-lavender.webp") center / cover no-repeat;
  filter: saturate(0.98) brightness(1.02);
  opacity: 1;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 242, 255, 0.62) 0%, rgba(232, 226, 255, 0.34) 38%, rgba(255, 255, 255, 0.02) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 58px 80px;
}

html[lang="ru"] .hero-copy {
  width: min(660px, 100%);
}

html[lang="ru"] .hero-copy h1 {
  width: min(500px, 100%);
  font-size: 2.86rem;
  line-height: 1.06;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero-copy p {
  width: min(480px, 100%);
  margin-bottom: 32px;
  color: #4e456f;
  font-size: 1.08rem;
  font-weight: 650;
}

.hero-button,
.submit-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--blue-ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 28px;
  text-align: center;
  text-transform: uppercase;
}

.hero-button:hover {
  color: var(--blue-dark);
  background: #f5fcff;
}

.hero-button.hero-catalog-button {
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(111, 99, 196, 0.18);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.55) 0 12px, transparent 13px),
    linear-gradient(135deg, #7b6bd1 0%, #a896ee 58%, #dcd3ff 100%);
  box-shadow: 0 16px 36px rgba(111, 99, 196, 0.22);
  color: #ffffff;
  padding: 0 30px;
}

.hero-button.hero-catalog-button:hover {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.62) 0 12px, transparent 13px),
    linear-gradient(135deg, #7160cc 0%, #9f8fec 58%, #d7ccff 100%);
  color: #ffffff;
  transform: translateY(-1px);
}

.section {
  padding: 0 0 78px;
}

.center-title {
  text-align: center;
}

.benefit-grid,
.product-grid,
.steps {
  display: grid;
  gap: 28px;
}

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

.benefit-card {
  display: grid;
  min-height: 286px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(216, 208, 255, 0.72);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.64) 0 58px, transparent 59px),
    radial-gradient(circle at 88% 0%, rgba(220, 211, 255, 0.88) 0 96px, transparent 97px),
    #f5f2ff;
  box-shadow: 0 18px 42px rgba(51, 43, 85, 0.06);
  color: var(--ink);
  padding: 38px 34px;
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.benefit-card:hover {
  border-color: rgba(174, 157, 244, 0.82);
  box-shadow: 0 22px 50px rgba(51, 43, 85, 0.1);
  transform: translateY(-2px);
}

.benefit-card h3 {
  font-size: 1.18rem;
  font-weight: 950;
  text-transform: uppercase;
}

.benefit-card p {
  margin-bottom: 0;
  color: #3d596d;
  font-size: 1rem;
}

.benefit-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  position: relative;
  margin-bottom: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.62) 0 8px, transparent 9px),
    linear-gradient(135deg, #7b6bd1 0%, #a896ee 58%, #dcd3ff 100%);
  box-shadow:
    0 16px 34px rgba(111, 99, 196, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  isolation: isolate;
  transition: transform 180ms ease;
}

.benefit-card:hover .benefit-icon {
  transform: translateY(-2px) scale(1.02);
}

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

.benefit-icon::before {
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(
    from 12deg,
    #dcd3ff 0 8deg,
    transparent 8deg 23deg,
    #c7bbff 23deg 31deg,
    transparent 31deg 47deg
  );
  opacity: 0.9;
  z-index: -1;
}

.benefit-icon::after {
  width: 26px;
  height: 14px;
  border-left: 5px solid #ffffff;
  border-bottom: 5px solid #ffffff;
  border-radius: 0 0 0 4px;
  transform: translateY(-3px) rotate(-45deg);
  filter: drop-shadow(0 2px 3px rgba(74, 58, 155, 0.18));
  z-index: 1;
}

.icon-doc::before {
  transform: rotate(8deg);
}

.icon-medal::before {
  transform: rotate(20deg);
}

.icon-price::before {
  transform: rotate(32deg);
}

.icon-doc::after {
  transform: translateY(-3px) rotate(-45deg);
}

.icon-medal::after {
  transform: translateY(-3px) rotate(-45deg) scale(1.03);
}

.icon-price::after {
  transform: translateY(-3px) rotate(-45deg) scale(0.97);
}

.catalog-section {
  padding-top: 0;
}

.catalog-block {
  scroll-margin-top: 24px;
}

.catalog-block + .catalog-block {
  margin-top: 54px;
}

.catalog-heading {
  max-width: 680px;
  margin: 0 auto 28px;
  text-align: center;
}

.catalog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 auto 14px;
  color: var(--blue-ink);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

.catalog-back-link:hover {
  color: var(--blue-dark);
}

.catalog-back-link span {
  font-size: 1.1em;
}

.catalog-back-link[hidden] {
  display: none !important;
}

.catalog-heading h1 {
  width: min(760px, 100%);
  margin: 0 auto 14px;
  font-size: 2.65rem;
  line-height: 1.08;
}

.catalog-heading h3 {
  margin-bottom: 6px;
  color: var(--blue-ink);
  font-size: 1.45rem;
  font-weight: 950;
}

.catalog-heading p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.55;
}

.catalog-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.catalog-cta {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(111, 99, 196, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.55) 0 12px, transparent 13px),
    linear-gradient(135deg, #7b6bd1 0%, #a896ee 58%, #dcd3ff 100%);
  box-shadow: 0 16px 36px rgba(111, 99, 196, 0.2);
  color: #ffffff;
  font-weight: 950;
  padding: 0 30px;
  text-transform: uppercase;
}

.catalog-cta:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.catalog-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.catalog-page-button {
  display: inline-grid;
  min-width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #d8d0ff;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(111, 99, 196, 0.1);
  color: var(--blue-ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  line-height: 1;
  padding: 0 14px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.catalog-page-arrow {
  min-width: 94px;
}

.catalog-page-button:hover:not(:disabled),
.catalog-page-button[aria-current="page"] {
  border-color: transparent;
  background: linear-gradient(135deg, #7f68df 0%, #b69df4 100%);
  color: #ffffff;
  transform: translateY(-1px);
}

.catalog-page-button:disabled {
  cursor: default;
  opacity: 0.42;
}

.sakura-mark {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.sakura-mark::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff8ff 0 3px, transparent 4px),
    radial-gradient(circle at 50% 0, #ffd6ea 0 6px, transparent 7px),
    radial-gradient(circle at 100% 50%, #ffc3de 0 6px, transparent 7px),
    radial-gradient(circle at 50% 100%, #ffd6ea 0 6px, transparent 7px),
    radial-gradient(circle at 0 50%, #ffc3de 0 6px, transparent 7px);
  transform: rotate(18deg);
}

.catalog-page-main {
  background: linear-gradient(180deg, #fbfaff 0%, #ffffff 34%);
}

.catalog-page-main .catalog-section {
  padding-top: 62px;
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(11, 39, 61, 0.04);
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: rgba(174, 157, 244, 0.86);
  box-shadow: 0 18px 44px rgba(51, 43, 85, 0.1);
  transform: translateY(-2px);
}

.product-art {
  display: grid;
  height: 172px;
  place-items: center;
  background:
    radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.12) 0 58px, transparent 59px),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.12) 0 82px, transparent 83px),
    #dcd3ff;
}

.product-art.alt {
  background:
    radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.12) 0 78px, transparent 79px),
    radial-gradient(circle at 84% 80%, rgba(255, 255, 255, 0.12) 0 66px, transparent 67px),
    #dcd3ff;
}

.product-art span {
  display: inline-flex;
  min-width: 192px;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 22px rgba(9, 71, 112, 0.18);
  color: #111827;
  font-size: 2.1rem;
  font-weight: 950;
  letter-spacing: 0;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.product-art span.has-logo {
  min-width: 96px;
  min-height: 82px;
  border-radius: 24px;
  padding: 12px 18px;
}

.product-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.product-card:hover .product-art span {
  box-shadow: 0 16px 28px rgba(9, 71, 112, 0.2);
  transform: translateY(-2px);
}

.stars {
  display: none;
}

.product-card h3 {
  min-height: 54px;
  margin: 28px auto 30px;
  width: min(270px, calc(100% - 30px));
  font-size: 1.18rem;
  font-weight: 700;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.category {
  margin: 0 20px 26px;
  color: #425a70;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.product-footer > * {
  display: grid;
  min-height: 54px;
  place-items: center;
  font-weight: 800;
}

.product-footer a {
  border-left: 1px solid var(--line);
  color: #1f3d56;
  text-transform: uppercase;
}

.product-footer a:hover {
  background: #f5fbff;
  color: var(--blue-dark);
}

.price {
  color: #204159;
}

.product-dialog-open {
  overflow: hidden;
}

.product-dialog {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.product-dialog[hidden] {
  display: none;
}

.product-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(29, 22, 53, 0.42);
  backdrop-filter: blur(8px);
}

.product-dialog-card {
  position: relative;
  width: min(1060px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow: hidden;
  border: 1px solid rgba(214, 205, 255, 0.88);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(29, 22, 53, 0.26);
  outline: 0;
}

.product-dialog-scroll {
  max-height: inherit;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.product-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(214, 205, 255, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.product-dialog-close::before,
.product-dialog-close::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 10px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: #392f61;
}

.product-dialog-close::before {
  transform: rotate(45deg);
}

.product-dialog-close::after {
  transform: rotate(-45deg);
}

.product-dialog-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.product-dialog-media {
  display: grid;
  grid-template-rows: minmax(340px, auto) auto;
  border-right: 1px solid var(--line);
  background: #f6f2ff;
}

.product-dialog-art {
  display: grid;
  min-height: 360px;
  place-items: center;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.28) 0 78px, transparent 79px),
    radial-gradient(circle at 82% 76%, rgba(255, 255, 255, 0.22) 0 92px, transparent 93px),
    #dcd3ff;
}

.product-dialog-art span {
  display: inline-flex;
  min-width: 170px;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 16px 28px rgba(9, 71, 112, 0.18);
  color: #111827;
  font-size: 2rem;
  font-weight: 950;
}

.product-dialog-art span.has-logo {
  min-width: 110px;
  min-height: 92px;
  border-radius: 28px;
  padding: 14px 22px;
}

.product-dialog-art .product-logo {
  width: 64px;
  height: 64px;
}

.product-dialog-trust {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 20px 24px 24px;
}

.product-dialog-trust span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #384f64;
  font-weight: 800;
}

.product-dialog-trust span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(24, 183, 133, 0.12);
}

.product-dialog-body {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 54px 42px 34px;
}

.product-dialog-body h2 {
  margin: 0;
  color: var(--blue-ink);
  font-size: 2rem;
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.product-dialog-copy {
  margin: 0;
  color: #486178;
}

.product-dialog-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #50677b;
  font-weight: 800;
}

.rating-stars {
  color: var(--orange);
  letter-spacing: 0;
  white-space: nowrap;
}

.product-dialog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.product-dialog-meta span {
  color: #64778a;
  font-weight: 800;
}

.product-dialog-meta strong {
  color: #204159;
  font-size: 1.3rem;
}

.product-dialog-action {
  justify-self: start;
}

.product-dialog-section {
  display: grid;
  gap: 8px;
  padding-top: 2px;
}

.product-dialog-section h3,
.product-reviews h3 {
  margin: 0;
  color: var(--blue-ink);
  font-size: 1rem;
  line-height: 1.25;
}

.product-dialog-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 19px;
  color: #40566b;
}

.product-dialog-list li::marker {
  color: var(--blue-dark);
}

.product-reviews {
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 30px 36px 36px;
  background: #fbfaff;
}

.product-reviews-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.product-reviews-heading .eyebrow {
  margin-bottom: 8px;
}

.product-reviews-heading p {
  max-width: 560px;
  margin: 8px 0 0;
  color: #50677b;
}

.review-score {
  display: grid;
  min-width: 150px;
  justify-items: end;
  gap: 3px;
  color: #50677b;
  text-align: right;
  font-weight: 800;
}

.review-score strong {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.review-overview {
  display: grid;
  gap: 10px;
}

.review-bars {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 7px 10px;
  max-width: 360px;
  align-items: center;
  color: #64778a;
  font-weight: 800;
}

.review-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #ebe6fa;
}

.review-bar-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
}

.review-bar-fill.is-empty {
  width: 0;
}

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

.review-list-empty {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.review-item {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
}

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

.review-item-head strong,
.review-item-head span {
  display: block;
}

.review-item-head span {
  color: #64778a;
  font-size: 0.9rem;
}

.review-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.review-badges span {
  border: 1px solid rgba(111, 99, 196, 0.18);
  border-radius: 999px;
  padding: 4px 8px;
  background: #f3efff;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.review-item p {
  margin: 0;
  color: #40566b;
}

.review-gate {
  display: grid;
  gap: 12px;
  border: 1px dashed rgba(111, 99, 196, 0.45);
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
}

.review-gate label {
  color: var(--blue-ink);
  font-weight: 900;
}

.review-gate textarea {
  width: 100%;
  min-height: 92px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: #40566b;
  font: inherit;
}

.review-gate textarea:disabled {
  background: #f7f4ff;
  cursor: not-allowed;
}

.review-gate-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-gate button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: #d7d0f7;
  color: #5d5487;
  font-weight: 900;
  cursor: not-allowed;
}

.review-gate p {
  margin: 0;
  color: #64778a;
  font-size: 0.93rem;
}

.product-detail-main {
  background: linear-gradient(180deg, #fbfaff 0%, #ffffff 42%);
}

.product-detail-page {
  padding: 64px 0 28px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.product-detail-gallery,
.product-detail-info {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(51, 43, 85, 0.08);
}

.product-detail-gallery {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.product-detail-art {
  display: grid;
  min-height: 360px;
  place-items: center;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.7), transparent 28%),
    linear-gradient(135deg, #e8f7ff 0%, #f4efff 52%, #fff5fa 100%);
}

.product-detail-art span {
  display: inline-flex;
  min-width: 170px;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: #ffffff;
  color: var(--blue-dark);
  font-size: 2rem;
  font-weight: 950;
  box-shadow: 0 18px 36px rgba(9, 71, 112, 0.16);
}

.product-detail-art span.has-logo {
  min-width: 112px;
  min-height: 94px;
  padding: 14px 22px;
}

.product-detail-art .product-logo {
  width: 64px;
  height: 64px;
}

.product-detail-checks {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 24px;
  list-style: none;
}

.product-detail-checks li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #24445d;
  font-weight: 850;
  line-height: 1.4;
}

.product-detail-checks li::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: url("/assets/wallet-shop-logo.svg") center / contain no-repeat;
  box-shadow: 0 8px 18px rgba(116, 96, 204, 0.18);
}

.product-detail-info {
  display: grid;
  gap: 16px;
  padding: 34px;
}

.product-detail-info h1 {
  margin: 0;
  color: var(--blue-ink);
  font-size: 2rem;
  line-height: 1.15;
}

.product-detail-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #64778a;
  font-weight: 850;
  text-decoration: none;
}

.product-detail-rating:hover {
  color: var(--blue-dark);
}

.product-detail-description {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  padding: 16px 18px;
}

.product-detail-description h2,
.product-option-title {
  margin: 0;
  color: var(--blue-ink);
  font-size: 1rem;
  line-height: 1.25;
}

.product-detail-description p {
  margin: 0;
  color: #40566b;
  line-height: 1.55;
}

.product-detail-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfaff;
  padding: 16px 18px;
}

.product-detail-price span {
  color: #64778a;
  font-weight: 900;
}

.product-detail-price strong {
  color: var(--blue-ink);
  font-size: 1.55rem;
}

.product-detail-options {
  display: grid;
  gap: 10px;
}

.product-detail-country,
.product-detail-options > label,
.product-option-field {
  display: grid;
  gap: 10px;
}

.product-option-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-option-title span {
  color: #7466d6;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 10px;
}

.product-choice,
.product-detail-options > label,
.product-option-field {
  display: grid;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  border: 1px solid #d8d0ff;
  border-radius: 8px;
  background: #ffffff;
  color: #24445d;
  cursor: pointer;
  font-weight: 850;
  padding: 12px 14px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.product-choice,
.product-detail-options > label {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.product-option-toggle {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

.product-choice {
  cursor: pointer;
}

.product-choice span {
  overflow-wrap: normal;
  word-break: normal;
  line-height: 1.25;
}

.product-detail-options > label:hover,
.product-detail-options > label:has(input:checked),
.product-option-field:hover,
.product-option-field:has(> .product-option-toggle input:checked),
.product-choice:hover,
.product-choice:has(input:checked) {
  border-color: #7466d6;
  box-shadow: 0 0 0 3px rgba(116, 102, 214, 0.12);
  transform: translateY(-1px);
}

.product-detail-options input[type="checkbox"],
.product-choice input[type="radio"],
.phone-type-choice input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #7466d6;
}

.product-choice:has(strong) {
  grid-template-columns: auto minmax(0, 1fr);
  row-gap: 4px;
}

.product-choice:has(strong) strong {
  grid-column: 2;
  justify-self: start;
}

.product-detail-options strong {
  color: var(--blue-ink);
}

.phone-type-menu {
  display: grid;
  min-width: 0;
  gap: 8px;
  border: 0;
  margin: 0;
  padding: 0;
}

.phone-type-menu legend {
  margin: 0 0 2px;
  padding: 0;
  color: #64778a;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.35;
}

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

.phone-type-choice {
  display: flex;
  min-width: 0;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  border: 1px solid #d8d0ff;
  border-radius: 8px;
  background: #fbfaff;
  color: #24445d;
  cursor: pointer;
  font-weight: 850;
  padding: 9px 11px;
  transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.phone-type-choice:hover,
.phone-type-choice:has(input:checked) {
  border-color: #7466d6;
  background: #f1edff;
  box-shadow: 0 0 0 2px rgba(116, 102, 214, 0.1);
}

.phone-type-choice:has(input:focus-visible) {
  outline: 3px solid rgba(116, 102, 214, 0.32);
  outline-offset: 2px;
}

.phone-type-choice-guided {
  display: grid;
  align-content: center;
  align-items: stretch;
  gap: 6px;
  cursor: default;
}

.phone-type-choice-select {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}

.phone-type-guide {
  margin: 0 0 0 27px;
  color: #5c7185;
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.45;
}

.phone-number-field {
  display: grid;
  gap: 6px;
}

.phone-number-field[hidden] {
  display: none !important;
}

.product-option-extra,
.product-country-select,
.product-country-summary {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
}

/*
  Country flag artwork is derived from flag-icons:
  https://github.com/lipis/flag-icons

  The MIT License (MIT)
  Copyright (c) 2013 Panayiotis Lipiridis

  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction, including without limitation the rights
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the Software is
  furnished to do so, subject to the following conditions:

  The above copyright notice and this permission notice shall be included in
  all copies or substantial portions of the Software.

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  THE SOFTWARE.
*/

.product-country-select {
  position: relative;
  min-width: 0;
}

.product-country-select select.country-native-select {
  position: absolute !important;
  width: 1px !important;
  min-width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  opacity: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
  white-space: nowrap !important;
}

.country-listbox {
  position: relative;
  min-width: 0;
}

.country-listbox-trigger {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #24445d;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  padding: 9px 38px 9px 12px;
  position: relative;
  text-align: left;
}

.country-listbox-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  right: 15px;
  top: 50%;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
}

.country-listbox-trigger[aria-expanded="true"]::after {
  transform: translateY(-25%) rotate(225deg);
}

.country-listbox-trigger:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.country-listbox-options {
  position: absolute;
  z-index: 80;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  display: grid;
  max-height: min(320px, 50vh);
  gap: 2px;
  overflow-y: auto;
  border: 1px solid #cfc5ff;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(47, 39, 103, 0.2);
  padding: 6px;
}

.country-listbox-options[hidden] {
  display: none !important;
}

.country-listbox-option {
  display: flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #24445d;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  padding: 8px 10px;
  text-align: left;
}

.country-listbox-option:hover,
.country-listbox-option[data-active="true"] {
  background: #f1edff;
}

.country-listbox-option[aria-selected="true"] {
  background: #e7e0ff;
  color: var(--blue-dark);
}

.country-flag {
  display: inline-block;
  flex: 0 0 auto;
  width: 24px;
  height: 18px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(36, 68, 93, 0.14);
  object-fit: cover;
}

.country-flag[hidden] {
  display: none !important;
}

.product-choice span[data-country-label-display] {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.product-country-summary.has-country-flag {
  position: relative;
}

.product-country-summary.has-country-flag > .country-flag {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}

.product-country-summary.has-country-flag input {
  padding-left: 48px;
}

.product-option-extra[hidden],
.product-country-select[hidden],
.product-country-summary[hidden] {
  display: none !important;
}

.product-option-extra input,
.product-country-select select,
.product-country-summary input {
  box-sizing: border-box;
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: #24445d;
  font: inherit;
  font-weight: 750;
}

.phone-input-wrap {
  position: relative;
  min-width: 0;
}

.phone-input-placeholder {
  position: absolute;
  top: 50%;
  right: 12px;
  left: 28px;
  transform: translateY(-50%);
  overflow: hidden;
  color: #71839a;
  font: inherit;
  font-weight: 750;
  line-height: 1;
  opacity: 0.82;
  pointer-events: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-input-placeholder[hidden] {
  display: none !important;
}

.phone-input-wrap:focus-within .phone-input-placeholder {
  opacity: 0.62;
}

.product-country-summary input {
  background: #fbfaff;
  cursor: default;
}

.product-option-extra small,
.product-detail-options small {
  grid-column: 1 / -1;
  color: #64778a;
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.35;
}

.product-detail-country.is-invalid .product-choice-grid,
.product-choice-grid.is-invalid,
.product-choice.is-invalid,
.product-detail-options > label.is-invalid,
.product-option-field.is-invalid,
.phone-type-menu.is-invalid .phone-type-grid,
.product-option-extra input.is-invalid,
.product-country-select.is-invalid select,
.product-country-select.is-invalid .country-listbox-trigger {
  border-color: #d84f5f;
  box-shadow: 0 0 0 3px rgba(216, 79, 95, 0.14);
}

.product-buy-button {
  justify-self: start;
  min-width: 190px;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(111, 99, 196, 0.18);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.55) 0 12px, transparent 13px),
    linear-gradient(135deg, #7b6bd1 0%, #a896ee 58%, #dcd3ff 100%);
  box-shadow: 0 16px 36px rgba(111, 99, 196, 0.22);
  color: #ffffff;
  justify-content: center;
}

.product-buy-button:hover {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.62) 0 12px, transparent 13px),
    linear-gradient(135deg, #7160cc 0%, #9f8fec 58%, #d7ccff 100%);
  color: #ffffff;
  transform: translateY(-1px);
}

.product-detail-reviews {
  padding-top: 26px;
  scroll-margin-top: 90px;
}

.product-detail-reviews .shell {
  display: grid;
  gap: 18px;
}

.checkout-options-summary[hidden] {
  display: none;
}

.checkout-options-summary span {
  color: #64778a;
  font-size: 0.86rem;
  font-weight: 850;
}

.checkout-options-summary p {
  color: #24445d;
  font-size: 0.92rem;
  font-weight: 850;
}

.checkout-options-summary .checkout-summary-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
}

.checkout-options-summary .checkout-summary-line span {
  min-width: 0;
  color: #24445d;
  overflow-wrap: anywhere;
}

.checkout-options-summary .checkout-summary-line strong {
  color: var(--blue-ink);
  font-size: 0.92rem;
  line-height: 1.35;
  white-space: nowrap;
}

.light-section {
  padding-top: 64px;
  background: #fbfaff;
}

.split,
.faq-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  font-size: 1.06rem;
}

.tag-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-panel span,
.tag-panel a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid #e4ddfb;
  border-radius: 999px;
  background: #ffffff;
  color: #24445d;
  font-weight: 800;
  padding: 7px 14px;
  text-decoration: none;
}

.tag-panel a:hover {
  border-color: #c7bcf2;
  color: var(--blue-dark);
}

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

.steps article {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  padding: 28px;
  text-align: center;
}

.steps span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: #ffffff;
  font-weight: 950;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  padding: 18px 2px;
}

.faq-list p {
  color: var(--muted);
  padding: 0 2px 18px;
}

.contact-section {
  padding-top: 72px;
  background: #ffffff;
}

.contact-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #fbfaff 0%, #ffffff 44%);
}

.contact-hero-section {
  padding: 62px 0 30px;
}

.contact-hero {
  text-align: center;
}

.contact-hero .breadcrumb {
  margin-bottom: 16px;
}

.contact-hero h1 {
  width: min(720px, 100%);
  margin: 0 auto 14px;
}

.contact-hero .lead {
  width: min(680px, 100%);
  margin: 0 auto;
}

.contact-highlight {
  display: grid;
  gap: 26px;
  width: min(860px, 100%);
  max-width: calc(100vw - 40px);
  margin: 34px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 24px;
  background:
    linear-gradient(135deg, #7160cc 0%, #9f8fec 54%, #d9ccff 100%);
  box-shadow: 0 26px 70px rgba(88, 70, 166, 0.22);
  color: #ffffff;
  padding: 30px;
}

.contact-highlight-copy {
  width: min(660px, 100%);
  margin: 0 auto;
}

.contact-highlight .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.contact-highlight h2 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.9rem;
}

.contact-highlight p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
}

.contact-form-section {
  padding: 0 0 84px;
}

.contact-form-shell {
  display: grid;
  place-items: center;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-info-grid article {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 14px 30px rgba(51, 43, 85, 0.12);
  padding: 18px;
  text-align: left;
}

.contact-info-grid span {
  display: block;
  margin-bottom: 5px;
  color: #6f63d6;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: none;
}

.contact-info-grid .contact-card-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 14px;
  background: #f1edff;
  color: #332b65;
  font-size: 0.96rem;
  font-weight: 950;
  text-transform: none;
}

.contact-info-grid strong {
  color: var(--blue-ink);
}

.contact-info-grid strong a {
  color: var(--blue-ink);
  text-decoration: underline;
  text-decoration-color: rgba(51, 43, 101, 0.28);
  text-underline-offset: 3px;
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--blue-soft);
  padding: 24px;
}

.contact-form-large h2 {
  margin-bottom: 4px;
  color: var(--blue-ink);
  font-size: 1.45rem;
}

.contact-page .contact-form-large {
  width: min(620px, 100%);
  max-width: calc(100vw - 40px);
  border-color: #ddd5ff;
  background: #f5f1ff;
  box-shadow: 0 24px 58px rgba(62, 50, 122, 0.1);
  padding: 28px;
}

.contact-page .contact-form-large h2 {
  text-align: center;
}

.form-intro {
  width: min(430px, 100%);
  margin: -2px auto 8px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
  text-align: center;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #24445d;
  font-size: 0.92rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d8d0ff;
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.contact-page .contact-form input,
.contact-page .contact-form select,
.contact-page .contact-form textarea {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.contact-form textarea {
  resize: vertical;
}

.contact-reply {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 2px 0 0;
  border: 1px solid #d8d0ff;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  padding: 14px;
}

.contact-reply legend {
  color: #24445d;
  font-size: 0.92rem;
  font-weight: 900;
  padding: 0 7px;
}

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

.contact-form .contact-reply-option {
  display: flex;
  min-width: 0;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  border: 1px solid #d8d0ff;
  border-radius: 12px;
  background: #ffffff;
  color: var(--blue-ink);
  cursor: pointer;
  font-weight: 900;
  padding: 11px 12px;
}

.contact-reply-option input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  padding: 0;
}

.contact-reply-field[hidden] {
  display: none;
}

.contact-captcha {
  display: grid;
  gap: 10px;
  min-width: 0;
  border: 1px solid #d8d0ff;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  padding: 14px;
}

.contact-captcha-title {
  color: #24445d;
  font-size: 0.92rem;
  font-weight: 900;
}

.contact-turnstile {
  min-height: 65px;
  min-width: 0;
}

.contact-captcha-note {
  color: #5e6c7d;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
}

.contact-captcha-note[data-state="error"] {
  color: #b42318;
}

.contact-captcha-note[hidden] {
  display: none;
}

.contact-captcha-retry {
  justify-self: start;
  min-height: 40px;
  border: 1px solid #7466d6;
  border-radius: 999px;
  background: #ffffff;
  color: var(--blue-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 15px;
}

.contact-captcha-retry:hover {
  background: #f1edff;
}

.contact-captcha-retry[hidden] {
  display: none !important;
}


.submit-button {
  background: var(--blue-dark);
  color: #ffffff;
}

.contact-page .submit-button {
  min-height: 50px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7160cc 0%, #9f8fec 100%);
  box-shadow: 0 16px 28px rgba(111, 96, 204, 0.2);
}

.submit-button:hover {
  background: var(--blue-dark);
  color: #ffffff;
}

.contact-page .submit-button:hover {
  background: linear-gradient(135deg, #6654c5 0%, #907de4 100%);
}

.submit-button:disabled,
.contact-page .submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
  box-shadow: none;
}


.contact-direct-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 8px;
}

.contact-direct-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(111, 96, 204, 0.24);
  border-radius: 7px;
  background: #ffffff;
  color: var(--blue-ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  padding: 0 14px;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-direct-button:hover {
  border-color: rgba(111, 96, 204, 0.5);
  color: var(--violet);
  transform: translateY(-1px);
}

.contact-fallback {
  margin: -2px 0 4px;
  color: #5a507a;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.45;
}

.contact-fallback a {
  color: var(--violet);
  font-weight: 900;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: #19684f;
  font-size: 0.9rem;
  font-weight: 800;
}

.form-note[data-state="error"] {
  color: #9b1c42;
}

.form-note[data-state="success"] {
  color: #19684f;
}

.footer {
  background: #f1edff;
  color: var(--blue-ink);
  padding: 34px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.footer p {
  max-width: 660px;
  margin: 0;
  color: #5a507a;
}

.footer-brand {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.footer-brand .brand {
  justify-self: start;
}

.footer-brand p {
  font-weight: 850;
}

.footer-brand a:not(.brand) {
  color: #5a507a;
}

.footer-links {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-self: stretch;
  gap: clamp(14px, 2.8vw, 40px);
}

.footer-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #3b315f;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.25;
  padding: 0 10px;
  text-align: center;
  overflow-wrap: anywhere;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: var(--violet);
  transform: translateY(-1px);
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background: #fbfaff;
}

.language-gate {
  display: grid;
  width: min(520px, calc(100% - 32px));
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  padding: 32px;
  box-shadow: var(--shadow);
}

.language-gate .brand-word {
  color: var(--ink);
}

.language-gate .brand-badge {
  background: url("wallet-shop-logo.svg") center / 100% 100% no-repeat;
  color: transparent;
}

.language-gate h1 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 2.4rem;
}

.language-gate p {
  color: var(--muted);
}

.language-actions {
  display: flex;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  color: #07344a;
  font-weight: 900;
  padding: 0 20px;
}

.button.secondary {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--blue-dark);
}

.page-hero {
  padding: 42px 0 70px;
  background:
    linear-gradient(90deg, rgba(245, 242, 255, 0.96), rgba(255, 255, 255, 0.78)),
    url("wallet-shop-hero-lavender.webp") center right / cover no-repeat;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: center;
}

.page-hero h1 {
  width: min(720px, 100%);
  max-width: 720px;
  margin-bottom: 18px;
}

.breadcrumb {
  margin: 0 0 18px;
  color: #6f6388;
  font-size: 0.92rem;
  font-weight: 750;
}

.breadcrumb a {
  color: var(--blue-dark);
}

.service-summary {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  padding: 24px;
}

.service-summary span {
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-summary strong {
  color: var(--blue-ink);
  font-size: 2rem;
  line-height: 1;
}

.service-summary p {
  margin: 0;
  color: var(--muted);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.article-card,
.side-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(51, 43, 85, 0.05);
}

.article-card {
  padding: 30px;
}

.article-card h2 {
  margin-top: 28px;
}

.article-card h2:first-child {
  margin-top: 0;
}

.article-card a {
  color: var(--violet);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.check-grid div {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--blue-soft);
  padding: 18px;
}

.check-grid h3 {
  color: var(--blue-ink);
}

.check-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.article-steps,
.article-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: #31465a;
}

.notice {
  margin-top: 26px;
  border: 1px solid #dcd3ff;
  border-radius: 16px;
  background: #fbfaff;
  color: #4e456f;
  padding: 18px;
}

.notice strong {
  color: var(--blue-ink);
}

.policy-updated {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.side-panel {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 10px;
  padding: 22px;
}

.side-panel h2 {
  margin-bottom: 4px;
  font-size: 1.15rem;
}

.side-panel a {
  display: block;
  border-top: 1px solid var(--line);
  color: var(--blue-ink);
  font-weight: 850;
  padding: 12px 0;
}

.side-panel a:hover {
  color: var(--blue-dark);
}

.checkout-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #fbfaff 0%, #ffffff 44%);
}

.checkout-section {
  padding: 62px 0 84px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: 28px;
  align-items: start;
}

.checkout-panel,
.checkout-summary {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(51, 43, 85, 0.08);
}

.checkout-panel {
  padding: 34px;
}

.checkout-panel h1 {
  width: min(620px, 100%);
  margin-bottom: 16px;
}

.checkout-service-note {
  margin-top: 18px;
  border: 1px solid rgba(111, 99, 196, 0.24);
  border-left: 4px solid #7466d6;
  border-radius: 8px;
  background: #f8f6ff;
  color: #364f67;
  padding: 14px 16px;
}

.checkout-service-note[hidden] {
  display: none;
}

.checkout-service-note p {
  margin: 0;
  line-height: 1.5;
}

.checkout-service-note p + p {
  margin-top: 8px;
}

.checkout-service-note strong {
  color: var(--blue-ink);
}

.checkout-alert {
  margin: 22px 0;
  border: 1px solid rgba(111, 99, 196, 0.22);
  border-radius: 8px;
  background: #f5f2ff;
  color: var(--blue-ink);
  font-weight: 800;
  padding: 14px 16px;
}

.checkout-alert[data-state="error"] {
  border-color: rgba(189, 72, 72, 0.28);
  background: #fff4f4;
  color: #8b2d2d;
}

.checkout-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.checkout-form[hidden] {
  display: none;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  color: #24445d;
  font-size: 0.92rem;
  font-weight: 850;
}

.checkout-form input,
.checkout-form select {
  width: 100%;
  min-width: 0;
  border: 1px solid #d8d0ff;
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.coin-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.coin-picker legend {
  grid-column: 1 / -1;
  margin-bottom: -2px;
  color: #24445d;
  font-size: 0.92rem;
  font-weight: 850;
}

.checkout-form .coin-option {
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
}

.coin-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.coin-option-body {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 70px;
  border: 1px solid #d8d0ff;
  border-radius: 8px;
  background: #ffffff;
  padding: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.coin-option input:checked + .coin-option-body {
  border-color: #7466d6;
  background: #fbfaff;
  box-shadow: 0 0 0 3px rgba(116, 102, 214, 0.14);
}

.coin-option input:focus-visible + .coin-option-body {
  outline: 3px solid rgba(111, 99, 196, 0.28);
  outline-offset: 3px;
}

.coin-option:hover .coin-option-body {
  border-color: #a69beb;
  transform: translateY(-1px);
}

.coin-icon-stack {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
}

.coin-icon-stack img {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.coin-icon-stack .coin-network-icon {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(24, 21, 48, 0.18);
}

.coin-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.coin-copy strong {
  overflow: hidden;
  color: var(--blue-ink);
  font-size: 0.98rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coin-copy small {
  overflow: hidden;
  color: #64778a;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-submit {
  justify-self: start;
  margin-top: 4px;
  background: linear-gradient(135deg, #7160cc 0%, #9f8fec 100%);
}

.checkout-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.checkout-summary {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.checkout-summary-block,
.checkout-summary-total {
  display: grid;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.checkout-summary span,
.payment-line span,
.payment-note {
  color: #64778a;
  font-size: 0.86rem;
  font-weight: 850;
}

.checkout-summary strong {
  color: var(--blue-ink);
  font-size: 1.18rem;
  line-height: 1.25;
}

.checkout-summary p {
  margin: 0;
  color: var(--muted);
}

.checkout-summary-total {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.checkout-summary-total strong {
  font-size: 1.55rem;
}

.payment-panel {
  display: grid;
  gap: 16px;
}

.payment-panel[hidden] {
  display: none;
}

.payment-panel-head {
  display: grid;
  gap: 8px;
}

.payment-panel-head strong {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  background: #f1edff;
  color: var(--blue-dark);
  font-size: 0.88rem;
  padding: 6px 12px;
}

.payment-panel-head strong[data-state="paid"] {
  background: rgba(24, 183, 133, 0.12);
  color: #137c5f;
}

.payment-qr {
  width: 220px;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 10px;
}

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

.payment-line[hidden] {
  display: none !important;
}

.payment-line span {
  grid-column: 1 / -1;
}

.payment-line code {
  min-width: 0;
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaff;
  color: #24445d;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.88rem;
  padding: 10px 12px;
}

.payment-line button {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--blue-dark);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 14px;
}

.payment-timer,
.payment-warning {
  display: grid;
  gap: 6px;
  border-left: 3px solid #7466d6;
  border-radius: 8px;
  background: #fbfaff;
  padding: 12px 14px;
}

.payment-timer[hidden] {
  display: none;
}

.payment-timer span,
.payment-warning strong {
  color: #24445d;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-timer strong {
  color: var(--blue-dark);
  font-size: 1.28rem;
  line-height: 1;
}

.payment-timer[data-state="expired"] {
  border-left-color: #bd4848;
  background: #fff4f4;
}

.payment-timer[data-state="expired"] strong {
  color: #8b2d2d;
  font-size: 0.95rem;
  line-height: 1.25;
}

.payment-warning {
  border-left-color: #d7a62e;
  background: #fff9e9;
}

.payment-warning p {
  margin: 0;
  color: #5f5640;
  font-size: 0.88rem;
  line-height: 1.45;
}

.payment-note {
  margin: 0;
}

.account-access-panel {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  border: 1px solid rgba(24, 183, 133, 0.28);
  border-radius: 8px;
  background: #ecfff8;
  color: #0f5f48;
  padding: 16px;
}

.account-access-head {
  display: grid;
  gap: 3px;
}

.account-access-head span {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.account-access-head strong {
  color: #0e4535;
  font-size: 1.02rem;
}

.account-access-line {
  display: grid;
  grid-template-columns: minmax(90px, 0.75fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(24, 183, 133, 0.18);
  border-radius: 8px;
  background: #ffffff;
  padding: 10px;
}

.account-access-line span {
  color: #53766a;
  font-size: 0.78rem;
  font-weight: 900;
}

.account-access-line code {
  min-width: 0;
  color: #0e4535;
  font-size: 0.86rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.account-access-line button {
  min-height: 30px;
  border: 0;
  border-radius: 6px;
  background: #d8fff0;
  color: #0f5f48;
  cursor: pointer;
  font-weight: 900;
  padding: 0 10px;
}

.account-access-link {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 7px;
  background: var(--green);
  color: #ffffff;
  font-weight: 900;
}

.account-access-link:hover {
  background: #12a778;
  color: #ffffff;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 16px 0;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 10px;
    overflow: visible;
    padding: 2px 0 0;
  }

  .nav-links a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border: 1px solid rgba(111, 96, 204, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .hero-copy {
    padding: 44px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .catalog-heading h1 {
    font-size: 2.15rem;
  }

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

  .split,
  .faq-layout,
  .contact-layout,
  .checkout-layout,
  .contact-page-layout,
  .page-hero-grid,
  .article-layout,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-art {
    min-height: 280px;
  }

  .product-choice-grid {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

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

@media (max-width: 680px) {
  .shell {
    width: min(1140px, calc(100% - 28px));
  }

  .brand-word {
    font-size: 1.18rem;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-actions .icon-button {
    display: none;
  }

  .nav-actions .icon-button.site-search-trigger {
    display: grid;
  }

  .nav-actions .icon-button.site-account-trigger {
    display: grid;
  }

  .site-search-panel {
    top: 82px;
    right: 14px;
    left: 14px;
    width: auto;
    max-height: calc(100vh - 100px);
  }

  .site-search-panel::before {
    right: 74px;
  }

  .account-cabinet-panel {
    top: 82px;
    right: 14px;
    left: 14px;
    width: auto;
    max-height: calc(100vh - 100px);
    padding: 20px 16px;
  }

  .account-cabinet-panel::before {
    right: 40px;
  }

  .account-cabinet-header h2 {
    font-size: 1.35rem;
  }

  .account-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .account-access-line {
    grid-template-columns: 1fr;
  }

  .account-access-line button {
    width: 100%;
  }

  .site-search-header {
    padding: 20px 16px 14px;
  }

  .site-search-header h2 {
    margin-right: 44px;
    font-size: 1.35rem;
  }

  .site-search-form {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
  }

  .site-search-form button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-search-meta {
    padding: 12px 16px 8px;
  }

  .site-search-results {
    padding: 0 10px 12px;
  }

  .site-search-result {
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    padding: 9px 10px;
  }

  .site-search-result-logo {
    width: 42px;
    height: 42px;
  }

  .site-search-all {
    margin: 0 10px 12px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 8px;
    overflow: visible;
    padding: 4px 0 2px;
    font-size: 0.84rem;
  }

  .nav-links a {
    flex: 0 1 auto;
    min-height: 32px;
    align-items: center;
    border: 1px solid rgba(216, 208, 255, 0.88);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    padding: 0 10px;
    white-space: nowrap;
  }

  .icon-button {
    width: 30px;
  }

  .hero-wrap {
    padding: 24px 0 52px;
  }

  .hero-card {
    width: 100%;
    max-width: 100%;
    min-height: 500px;
    align-items: start;
    overflow: hidden;
    background: linear-gradient(180deg, #dcd3ff 0%, #e8e2ff 58%, #f8f6ff 100%);
  }

  .hero-card::before {
    background-position: center bottom;
  }

  .hero-card::after {
    background: linear-gradient(180deg, rgba(111, 99, 196, 0.48) 0%, rgba(174, 164, 236, 0.2) 54%, rgba(255, 255, 255, 0.02) 100%);
  }

  .hero-copy {
    width: min(100%, 330px);
    max-width: 100%;
    padding: 32px 24px;
  }

  h1 {
    font-size: 2rem;
    margin-bottom: 18px;
  }

  .hero-copy h1 {
    width: min(330px, 100%);
    font-size: 1.62rem;
    line-height: 1.08;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: auto;
  }

  html[lang="ru"] .hero-copy {
    width: min(100%, 340px);
  }

  html[lang="ru"] .hero-copy h1 {
    width: min(340px, 100%);
    font-size: 1.52rem;
    line-height: 1.1;
    hyphens: none;
  }

  .catalog-heading h1 {
    font-size: 1.82rem;
    margin-bottom: 12px;
  }

  .catalog-heading p {
    width: min(310px, 100%);
  }

  h2 {
    font-size: 1.65rem;
    width: min(330px, 100%);
    margin-inline: auto;
    text-align: center;
  }

  .hero-copy p {
    font-size: 1rem;
    margin-bottom: 22px;
  }

  .section {
    padding-bottom: 56px;
  }

  .contact-hero-section {
    padding: 44px 0 24px;
  }

  .contact-hero .breadcrumb {
    margin-bottom: 12px;
  }

  .contact-hero .lead {
    width: min(300px, calc(100vw - 80px));
    font-size: 1rem;
  }

  .contact-highlight {
    width: min(280px, calc(100vw - 80px));
    max-width: calc(100vw - 80px);
    gap: 20px;
    margin-top: 28px;
    border-radius: 20px;
    padding: 24px 18px;
  }

  .contact-highlight h2 {
    font-size: 1.48rem;
  }

  .contact-highlight p {
    font-size: 0.96rem;
  }

  .contact-info-grid article {
    border-radius: 16px;
    padding: 16px;
  }

  .contact-form-section {
    padding-bottom: 64px;
  }

  .contact-page .contact-form-large {
    padding: 22px 18px;
  }

  .contact-reply-options {
    grid-template-columns: 1fr;
  }

  .checkout-section {
    padding: 42px 0 64px;
  }

  .checkout-panel,
  .checkout-summary {
    border-radius: 16px;
    padding: 22px 18px;
  }

  .checkout-panel h1 {
    font-size: 1.88rem;
  }

  .coin-picker {
    grid-template-columns: 1fr;
  }

  .coin-option-body {
    min-height: 64px;
  }

  .checkout-submit,
  .payment-line button {
    width: 100%;
  }

  .payment-line {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .product-grid,
  .steps,
  .check-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    width: 100%;
    max-width: 100%;
    justify-items: center;
  }

  .page-hero {
    padding: 34px 0 52px;
  }

  .article-card {
    padding: 22px;
  }

  .benefit-card {
    width: 100%;
    max-width: 100%;
    min-height: 240px;
    padding-inline: 18px;
  }

  .benefit-card p {
    width: min(290px, 100%);
    margin-inline: auto;
  }

  .product-card {
    width: min(360px, 100%);
    max-width: 100%;
  }

  .product-detail-page {
    padding: 34px 0 18px;
  }

  .product-detail-gallery,
  .product-detail-info {
    border-radius: 12px;
  }

  .product-detail-art {
    min-height: 220px;
  }

  .product-detail-art span {
    min-width: 138px;
    min-height: 58px;
    font-size: 1.6rem;
  }

  .product-detail-art span.has-logo {
    min-width: 92px;
    min-height: 72px;
    padding: 10px 16px;
  }

  .product-detail-art .product-logo {
    width: 50px;
    height: 50px;
  }

  .product-detail-checks {
    padding: 18px;
  }

  .product-detail-info {
    padding: 22px 18px;
  }

  .product-detail-info h1 {
    font-size: 1.55rem;
  }

  .product-detail-price {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-detail-options > label,
  .product-option-toggle {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .product-detail-options > label > strong,
  .product-option-toggle > strong {
    grid-column: 2;
  }

  .phone-type-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-options small {
    grid-column: 1 / -1;
  }

  .product-buy-button {
    width: 100%;
  }

  .product-art {
    height: 154px;
  }

  .product-art span {
    min-width: 148px;
    min-height: 56px;
    max-width: calc(100% - 48px);
    padding: 0 20px;
    font-size: 1.7rem;
  }

  .product-art span.has-logo {
    min-width: 86px;
    min-height: 70px;
    padding: 10px 16px;
  }

  .product-logo {
    width: 48px;
    height: 48px;
  }

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

  .product-footer > * {
    min-width: 0;
    padding: 0 8px;
    font-size: 0.88rem;
  }

  .product-footer a {
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .product-dialog {
    padding: 14px;
  }

  .product-dialog-card {
    width: min(420px, calc(100vw - 28px));
  }

  .product-dialog-main {
    grid-template-columns: 1fr;
  }

  .product-dialog-media {
    grid-template-rows: auto auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-dialog-art {
    min-height: 180px;
  }

  .product-dialog-art span {
    min-width: 138px;
    min-height: 56px;
    font-size: 1.58rem;
  }

  .product-dialog-art span.has-logo {
    min-width: 92px;
    min-height: 72px;
    padding: 10px 16px;
  }

  .product-dialog-art .product-logo {
    width: 50px;
    height: 50px;
  }

  .product-dialog-body {
    padding: 28px 22px 24px;
  }

  .product-dialog-body h2 {
    font-size: 1.45rem;
  }

  .product-dialog-action {
    width: 100%;
  }

  .product-dialog-trust {
    padding: 14px 18px 18px;
  }

  .product-reviews {
    padding: 24px 18px 26px;
  }

  .product-reviews-heading,
  .review-item-head,
  .review-gate-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-score {
    min-width: 0;
    justify-items: start;
    text-align: left;
  }

  .review-list {
    grid-template-columns: 1fr;
  }

  .review-badges {
    justify-content: flex-start;
  }

  .review-gate button {
    width: 100%;
  }

  .catalog-cta {
    width: 100%;
    padding: 0 22px;
  }

  .catalog-pagination {
    gap: 8px;
  }

  .catalog-page-button {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
  }

  .catalog-page-arrow {
    min-width: 84px;
  }

  .footer-inner,
  .language-actions {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer-links {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-self: stretch;
  }

  .footer-links a {
    justify-content: flex-start;
    min-height: 34px;
    padding: 0;
    text-align: left;
  }
}

.checkout-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.checkout-trust-card {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(24, 183, 133, 0.24);
  border-radius: 8px;
  background: #f3fff9;
  padding: 14px;
}

.checkout-trust-card strong {
  color: #0f5f48;
  font-size: 0.9rem;
}

.checkout-trust-card p {
  margin: 0;
  color: #45675d;
  font-size: 0.86rem;
  line-height: 1.45;
}

.product-buy-note {
  max-width: 520px;
  margin: 14px 0 0;
  border-left: 3px solid var(--green);
  border-radius: 8px;
  background: #ecfff8;
  color: #0f5f48;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
  padding: 12px 14px;
}

.catalog-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.catalog-search-button,
.catalog-tool-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  padding: 0 16px;
  text-align: center;
}

.catalog-search-button {
  border: 0;
  background: var(--blue-dark);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
}

.catalog-tool-link {
  border: 1px solid rgba(111, 96, 204, 0.2);
  background: #ffffff;
  color: var(--blue-ink);
}

.catalog-search-button:hover,
.catalog-tool-link:hover {
  transform: translateY(-1px);
}

.how-steps strong {
  color: var(--blue-ink);
}

.how-check-grid h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.operator-page {
  min-height: 100vh;
  background: #f7faf9;
  color: #102a3a;
}

.operator-shell {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  gap: 18px;
  margin: 0 auto;
  padding: 30px 0 52px;
}

.operator-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #d9e6e1;
  padding-bottom: 18px;
}

.operator-topbar h1 {
  margin: 2px 0 0;
  font-size: 1.8rem;
  text-align: right;
}

.operator-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 140px auto auto;
  gap: 12px;
  align-items: end;
  border: 1px solid #d9e6e1;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(16, 42, 58, 0.06);
}

.operator-toolbar label {
  display: grid;
  gap: 6px;
  color: #415d68;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.operator-toolbar input,
.operator-toolbar select {
  min-height: 42px;
  min-width: 0;
  border: 1px solid #cbdcd7;
  border-radius: 8px;
  background: #ffffff;
  color: #102a3a;
  font: inherit;
  padding: 0 12px;
}

.operator-button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: #0f5f48;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 16px;
}

.operator-button.secondary {
  border: 1px solid #cbdcd7;
  background: #ffffff;
  color: #24445d;
}

.operator-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.operator-status {
  border: 1px solid #d9e6e1;
  border-radius: 8px;
  background: #ffffff;
  color: #415d68;
  font-weight: 800;
  padding: 12px 14px;
}

.operator-status[data-state="success"] {
  border-color: rgba(24, 183, 133, 0.32);
  background: #ecfff8;
  color: #0f5f48;
}

.operator-status[data-state="error"] {
  border-color: rgba(189, 72, 72, 0.32);
  background: #fff4f4;
  color: #8b2d2d;
}

.operator-metrics,
.operator-grid {
  display: grid;
  gap: 14px;
}

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

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

.operator-card,
.operator-panel {
  border: 1px solid #d9e6e1;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(16, 42, 58, 0.06);
}

.operator-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 16px;
}

.operator-card span,
.operator-panel-head p {
  color: #58717c;
  font-size: 0.84rem;
  font-weight: 850;
}

.operator-card strong {
  overflow-wrap: anywhere;
  color: #0f5f48;
  font-size: 1.55rem;
  line-height: 1.1;
}

.operator-card p,
.operator-panel-head p {
  margin: 0;
}

.operator-panel {
  min-width: 0;
}

.operator-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #e3eeea;
  padding: 16px;
}

.operator-panel-head h2 {
  margin: 0;
  font-size: 1.1rem;
}

.operator-table-wrap {
  overflow-x: auto;
}

.operator-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.operator-recent-table {
  min-width: 920px;
}

.operator-table th,
.operator-table td {
  border-bottom: 1px solid #e3eeea;
  padding: 11px 12px;
  text-align: left;
  vertical-align: top;
}

.operator-table th {
  color: #415d68;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.operator-table td {
  color: #102a3a;
}

.operator-order-id {
  color: #24445d;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.operator-badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  background: #eef5f3;
  color: #415d68;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 3px 9px;
}

.operator-badge[data-state="paid"],
.operator-badge[data-state="manual_pending"],
.operator-badge[data-state="delivered"] {
  background: #ecfff8;
  color: #0f5f48;
}

.operator-badge[data-state="waiting"],
.operator-badge[data-state="created"],
.operator-badge[data-state="pending"] {
  background: #fff9e9;
  color: #7a5b12;
}

.operator-badge[data-state="cancelled"],
.operator-badge[data-state="expired"],
.operator-badge[data-state="failed"] {
  background: #fff4f4;
  color: #8b2d2d;
}

@media (max-width: 980px) {
  .operator-toolbar,
  .operator-metrics,
  .operator-grid {
    grid-template-columns: 1fr 1fr;
  }

  .operator-token-field,
  .operator-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .checkout-trust {
    grid-template-columns: 1fr;
  }

  .catalog-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-search-button,
  .catalog-tool-link {
    width: 100%;
  }

  .operator-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 18px;
  }

  .operator-topbar,
  .operator-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .operator-topbar h1 {
    font-size: 1.45rem;
    text-align: left;
  }

  .operator-toolbar,
  .operator-metrics,
  .operator-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 981px) {
  .nav {
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr) auto;
    gap: 18px;
  }

  .nav-links {
    gap: clamp(14px, 1.65vw, 24px);
    font-size: 0.95rem;
  }

  .nav-actions {
    gap: 14px;
  }
}


.account-page-body {
  background: linear-gradient(180deg, #f8f6ff 0%, #ffffff 42%);
}

.account-page-main {
  min-height: calc(100vh - 260px);
  padding: 72px 0 96px;
}

.account-page-shell {
  max-width: 860px;
}

.account-page-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(120, 97, 214, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(44, 31, 92, 0.12);
  padding: 32px;
}

.account-page-card .account-cabinet-header h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
}

.account-page-card .account-support-form p {
  margin: -4px 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.delivery-contact {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(120, 97, 214, 0.22);
  border-radius: 8px;
  padding: 16px;
  margin: 4px 0 18px;
}

.delivery-contact legend {
  padding: 0 8px;
  font-weight: 800;
  color: var(--ink);
}

.checkout-form .delivery-option,
.checkout-form .delivery-field {
  margin: 0;
}

.delivery-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(120, 97, 214, 0.2);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.delivery-option.is-fixed {
  background: #f3fff9;
  border-color: rgba(41, 171, 135, 0.28);
}

.delivery-option input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.delivery-option span {
  display: grid;
  gap: 3px;
}

.delivery-option strong {
  color: var(--ink);
  font-size: 15px;
}

.delivery-option small {
  color: var(--muted);
  line-height: 1.4;
}

.delivery-field[hidden] {
  display: none;
}

@media (max-width: 720px) {
  .account-page-main {
    padding: 40px 0 64px;
  }

  .account-page-card {
    padding: 22px;
  }

  .account-page-card .account-cabinet-header h1 {
    font-size: 26px;
  }
}

@media (forced-colors: active) {
  .country-listbox-trigger,
  .country-listbox-options,
  .country-listbox-option,
  .country-flag {
    border: 1px solid CanvasText;
    box-shadow: none;
    forced-color-adjust: auto;
  }

  .country-listbox-option[aria-selected="true"],
  .country-listbox-option[data-active="true"] {
    outline: 2px solid Highlight;
    outline-offset: -2px;
  }
}

/* V52_PRODUCT_IMAGES_START */
.v52-card-media {
  display: block;
  width: 100%;
  height: 172px;
  margin-top: -172px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.v52-detail-media {
  display: block;
  width: 100%;
  height: 360px;
  margin-top: -360px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.v52-card-image,
.v52-detail-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 680px) {
  .v52-card-media {
    height: 154px;
    margin-top: -154px;
  }

  .v52-detail-media {
    height: 220px;
    margin-top: -220px;
  }
}
/* V52_PRODUCT_IMAGES_END */

/* V53_RELATED_PRODUCTS_CSS_START */
.v53-related-products {
  padding-top: 10px;
}

.v53-related-heading {
  margin: 0 auto 28px;
  text-align: center;
}

.v53-related-heading h2 {
  margin: 0;
  color: var(--blue-ink);
}

.v53-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.v53-related-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(11, 39, 61, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.v53-related-card:hover {
  border-color: rgba(174, 157, 244, 0.86);
  box-shadow: 0 18px 44px rgba(51, 43, 85, 0.1);
  transform: translateY(-2px);
}

.v53-related-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1200 / 630;
  background: var(--blue-soft);
}

.v53-related-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 180ms ease;
}

.v53-related-card:hover .v53-related-image {
  transform: scale(1.015);
}

.v53-related-title {
  display: grid;
  min-height: 92px;
  margin: 0;
  padding: 24px 20px;
  place-items: center;
  text-align: center;
  font-size: 1.18rem;
  font-weight: 700;
  text-wrap: balance;
}

.v53-related-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.v53-related-price,
.v53-related-cta {
  display: grid;
  min-height: 54px;
  padding: 8px 12px;
  place-items: center;
  text-align: center;
  font-weight: 800;
}

.v53-related-cta {
  border-left: 1px solid var(--line);
  color: #1f3d56;
  text-transform: uppercase;
}

@media (min-width: 681px) and (max-width: 900px) {
  .v53-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v53-related-card:last-child:nth-child(odd) {
    width: calc((100% - 28px) / 2);
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .v53-related-grid {
    grid-template-columns: 1fr;
  }

  .v53-related-card:last-child:nth-child(odd) {
    width: 100%;
    grid-column: auto;
  }
}
/* V53_RELATED_PRODUCTS_CSS_END */

/* V55_CATALOG_LINK_FOCUS_START */
.v55-catalog-media-link:focus {
  outline: 3px solid #6f63c4;
  outline-offset: -4px;
}

.v55-catalog-title-link:focus {
  border-radius: 4px;
  outline: 3px solid #6f63c4;
  outline-offset: 3px;
}
/* V55_CATALOG_LINK_FOCUS_END */

/* V599_UNIFIED_BENEFIT_LIST_START */
.benefit-list {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(205, 195, 250, 0.86);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 4%, rgba(220, 211, 255, 0.9) 0 116px, transparent 117px),
    radial-gradient(circle at 8% 96%, rgba(255, 255, 255, 0.58) 0 92px, transparent 93px),
    #f5f2ff;
  box-shadow: 0 20px 48px rgba(51, 43, 85, 0.08);
}

.benefit-list__item {
  display: grid;
  grid-template-columns: minmax(270px, 0.78fr) minmax(0, 1.72fr);
  min-height: 104px;
  transition: background-color 180ms ease;
}

.benefit-list__item + .benefit-list__item {
  border-top: 1px solid rgba(205, 195, 250, 0.72);
}

.benefit-list__item:hover {
  background-color: rgba(255, 255, 255, 0.24);
}

.benefit-list__item--expanded {
  min-height: 190px;
}

.benefit-list__lead {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  border-right: 1px solid rgba(205, 195, 250, 0.72);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(220, 211, 255, 0.22));
  padding: 20px 30px;
}

.benefit-list__lead .benefit-icon {
  width: 58px;
  height: 58px;
  margin: 0;
}

.benefit-list__item:hover .benefit-icon {
  transform: translateY(-1px) scale(1.02);
}

.benefit-list__lead h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 950;
  text-align: left;
  text-transform: uppercase;
}

.benefit-list__copy {
  display: grid;
  align-content: center;
  padding: 20px 38px;
  color: #3d596d;
}

.benefit-list__copy p {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 11px 0 11px 24px;
  color: inherit;
  font-size: 1rem;
  line-height: 1.55;
  text-align: left;
}

.benefit-list__copy p::before {
  content: "";
  position: absolute;
  top: 1.23em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8f7ee2;
  box-shadow: 0 0 0 5px rgba(143, 126, 226, 0.12);
}

.benefit-list__copy--points p + p {
  border-top: 1px solid rgba(205, 195, 250, 0.68);
}

@media (max-width: 980px) {
  .benefit-list__item {
    grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.78fr);
  }

  .benefit-list__lead {
    gap: 14px;
    padding-inline: 20px;
  }

  .benefit-list__copy {
    padding: 18px 26px;
  }

  .benefit-list__copy--points p {
    padding-block: 8px;
    line-height: 1.48;
  }
}

@media (max-width: 760px) {
  .benefit-list {
    border-radius: 18px;
  }

  .benefit-list__item,
  .benefit-list__item--expanded {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .benefit-list__lead {
    grid-template-columns: 56px minmax(0, 1fr);
    border-right: 0;
    padding: 22px 24px 12px;
  }

  .benefit-list__lead .benefit-icon {
    width: 56px;
    height: 56px;
  }

  .benefit-list__copy {
    padding: 4px 24px 24px;
  }
}

@media (max-width: 420px) {
  .benefit-list__lead {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding-inline: 18px;
  }

  .benefit-list__lead .benefit-icon {
    width: 52px;
    height: 52px;
  }

  .benefit-list__lead h3 {
    font-size: 1rem;
  }

  .benefit-list__copy {
    padding-inline: 18px;
  }

  .benefit-list__copy p {
    font-size: 0.96rem;
  }
}
/* V599_UNIFIED_BENEFIT_LIST_END */

/* V602_ACCOUNT_UX */
.account-comment-form,
.account-action-card,
.account-delivery-card,
.account-order-status,
.account-turnstile-section {
  display: grid;
  gap: 12px;
}

.account-comment-form[hidden],
.account-support-form[hidden],
.account-action-confirmation[hidden],
.account-delivery-card[hidden],
.account-delivery-status[hidden],
.account-processing-details[hidden],
.account-turnstile-section[hidden],
.account-reply-option [data-reply-contact-input][hidden] {
  display: none;
}

.account-order-status,
.account-action-card,
.account-turnstile-section {
  border: 1px solid rgba(120, 97, 214, 0.2);
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
}

.account-delivery-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid rgba(24, 183, 133, 0.32);
  border-radius: 8px;
  background: linear-gradient(145deg, #f1fff9 0%, #e8fff6 100%);
  box-shadow: 0 12px 30px rgba(15, 95, 72, 0.08);
  padding: 18px;
}

.account-delivery-copy {
  display: grid;
  gap: 5px;
}

.account-delivery-copy h2,
.account-delivery-copy p,
.account-delivery-status {
  margin: 0;
}

.account-delivery-copy h2 {
  color: #0e4535;
  font-size: 1.12rem;
  line-height: 1.25;
}

.account-delivery-copy p {
  color: #326b5a;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.5;
}

.account-delivery-card > button {
  min-width: 132px;
  min-height: 46px;
  border: 0;
  border-radius: 7px;
  background: var(--green);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 22px;
}

.account-delivery-card > button:hover {
  background: #12a778;
}

.account-delivery-card > button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.account-delivery-status {
  grid-column: 1 / -1;
  color: #326b5a;
  font-size: 0.88rem;
  font-weight: 850;
}

.account-delivery-status[data-state="error"] {
  color: #8b2d2d;
}

@media (max-width: 720px) {
  .account-delivery-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .account-delivery-card > button {
    width: 100%;
  }
}

.account-order-status > span,
.account-turnstile-section > div:first-child > strong {
  color: #6d628d;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.account-order-status > strong {
  color: var(--blue-ink);
  font-size: 1.05rem;
}

.account-processing-details {
  display: grid;
  gap: 11px;
  border-top: 1px solid rgba(216, 208, 255, 0.95);
  padding-top: 13px;
}

.account-processing-details p,
.account-comment-form p,
.account-turnstile-section p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.5;
}

.account-processing-timer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(120, 97, 214, 0.22);
  border-radius: 8px;
  background: #f5f2ff;
  padding: 12px 14px;
}

.account-processing-timer span {
  color: var(--blue-ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.account-processing-timer strong {
  color: var(--accent);
  font-size: clamp(1.55rem, 5vw, 2.1rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.account-processing-details .account-processing-wait {
  color: var(--blue-ink);
  font-weight: 900;
}

.account-comment-form > label,
.account-support-form > label {
  color: var(--blue-ink);
  font-size: 1rem;
  font-weight: 900;
}

.account-comment-form textarea {
  width: 100%;
  border: 1px solid #dcd3ff;
  border-radius: 8px;
  background: #fbfaff;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  line-height: 1.5;
  padding: 12px 14px;
  resize: vertical;
}

.account-comment-form button {
  min-height: 44px;
  border: 0;
  border-radius: 7px;
  background: var(--blue-dark);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 18px;
}

.account-comment-form button:hover {
  background: #5f53b2;
}

.account-comment-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.account-action-confirmation {
  border: 1px solid rgba(41, 171, 135, 0.24);
  border-radius: 8px;
  background: #eefcf7;
  color: #116a52;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.5;
  padding: 13px 14px;
}

.account-turnstile-section {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  background: #fbfaff;
}

.account-turnstile-section.is-embedded {
  min-width: 0;
  padding: 13px 14px;
}

.account-turnstile-section > div:first-child {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.account-turnstile-widget {
  min-width: 0;
  width: 100%;
  min-height: 65px;
  max-width: 100%;
  overflow: hidden;
}

.account-turnstile-message {
  grid-column: 1 / -1;
  color: #8b2d2d !important;
  font-weight: 850 !important;
}

.account-reply-option {
  align-items: flex-start;
}

.account-reply-option-body {
  display: grid;
  min-width: 0;
  flex: 1;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: none;
}

.account-reply-option-body strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.account-reply-option-body input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  height: auto;
  min-height: 44px;
  margin-top: 0;
  border: 1px solid #dcd3ff;
  border-radius: 7px;
  background: #fbfaff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  line-height: 1.35;
  padding: 11px 12px;
}

@media (max-width: 720px) {
  .account-turnstile-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .account-turnstile-widget {
    width: 100%;
  }

  .account-processing-timer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* V603_PRODUCT_DESCRIPTION_EXPERT_RELEASE */
.product-detail-description.product-description-polished {
  gap: 13px;
  border-color: rgba(87, 105, 126, 0.18);
  border-radius: 13px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 16px 40px rgba(42, 62, 82, 0.06);
  padding: 23px;
}

.product-description-polished > p,
.product-description-polished > div p,
.product-description-polished > aside p {
  margin: 0;
}

.product-description-heading {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 3px;
}

.product-description-heading h2 {
  flex: 0 0 auto;
  margin: 0;
  color: #243f56;
  font-size: 1.13rem;
  letter-spacing: -0.015em;
}

.product-description-heading > span {
  height: 1px;
  flex: 1 1 auto;
  background: linear-gradient(90deg, rgba(111, 99, 196, 0.55), rgba(111, 99, 196, 0));
}

.product-description-intro {
  display: grid;
  gap: 11px;
  border: 1px solid rgba(111, 99, 196, 0.16);
  border-radius: 14px;
  background: linear-gradient(135deg, #f8f6ff 0%, #fcfbff 100%);
  padding: 16px;
}

.product-detail-description .product-description-product {
  color: #2a4961;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.4;
}

.product-description-facts {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.product-description-facts > span {
  position: relative;
  display: block;
  min-width: 0;
  color: #4b6174;
  font-size: 0.75rem;
  font-weight: 780;
  line-height: 1.4;
  padding: 6px 0 6px 15px;
}

.product-description-facts > span::before {
  content: "";
  position: absolute;
  top: 0.92em;
  left: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8172d3;
  box-shadow: 0 0 0 3px rgba(129, 114, 211, 0.1);
}

.product-detail-description .product-description-ready {
  border-top: 1px solid rgba(111, 99, 196, 0.14);
  color: #5f7080;
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.45;
  padding-top: 10px;
}

.product-description-package {
  position: relative;
  overflow: hidden;
  border: 1px solid #e1e7ed;
  border-radius: 12px;
  background: #ffffff;
  padding: 14px 15px 14px 19px;
}

.product-description-package::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #8172d3, #a89de8);
}

.product-description-package p {
  color: #41596d;
  font-size: 0.8rem;
  line-height: 1.58;
}

.product-description-note {
  border-radius: 12px;
  padding: 14px 15px;
}

.product-description-warning {
  border: 1px solid #e6d3a0;
  background: linear-gradient(135deg, #fffbf0, #fffdf7);
}

.product-detail-description .product-description-warning p {
  color: #70591f;
  font-size: 0.77rem;
  font-weight: 780;
  line-height: 1.55;
}

.product-description-recommendations {
  display: grid;
  gap: 11px;
  border: 1px solid #c8e2d7;
  border-radius: 14px;
  background: linear-gradient(135deg, #f3fbf7 0%, #f8fcfa 100%);
  box-shadow: 0 8px 22px rgba(56, 112, 89, 0.05);
  padding: 16px;
}

.product-detail-description .product-description-recommendation-title {
  border-bottom: 1px solid #d5e9e1;
  color: #34705b;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1.4;
  padding-bottom: 10px;
}

.product-detail-description .product-description-recommendation-copy {
  color: #4a6073;
  font-size: 0.8rem;
  line-height: 1.55;
}

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

.product-description-options > p {
  border: 1px solid #d0e5dc;
  border-radius: 10px;
  background: #ffffff;
  color: #3e6557;
  font-size: 0.74rem;
  font-weight: 780;
  line-height: 1.45;
  padding: 11px 12px;
}

.product-description-danger {
  border: 1px solid #edcece;
  border-left: 4px solid #cf8585;
  border-radius: 11px;
  background: #fff8f8;
  padding: 13px 14px;
}

.product-detail-description .product-description-danger p {
  color: #7c4747;
  font-size: 0.75rem;
  font-weight: 710;
  line-height: 1.55;
}

.product-description-push {
  border: 1px solid #d9e5f0;
  border-radius: 11px;
  background: #f7faff;
  padding: 13px 14px;
}

.product-description-push p {
  color: #567087;
  font-size: 0.75rem;
  line-height: 1.55;
}

.push-guide-placeholder-link {
  border-radius: 4px;
  color: #5b4db2;
  font-weight: 950;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 150ms ease, background-color 150ms ease;
}

.push-guide-placeholder-link:hover {
  background: rgba(111, 99, 196, 0.1);
  color: #40338d;
}

.push-guide-placeholder-link:focus-visible {
  outline: 3px solid rgba(111, 99, 196, 0.25);
  outline-offset: 3px;
}

.product-description-delivery {
  position: relative;
  overflow: hidden;
  border-radius: 11px;
  background: linear-gradient(135deg, #334f66 0%, #4a6380 100%);
  padding: 13px 15px;
}

.product-description-delivery::after {
  content: "";
  position: absolute;
  top: -28px;
  right: -14px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.product-description-delivery strong {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 0.79rem;
  line-height: 1.45;
}

@media (max-width: 720px) {
  .product-detail-description.product-description-polished {
    padding: 17px;
  }

  .product-description-options {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-description-polished p,
  .product-description-polished span,
  .product-description-polished strong {
    overflow-wrap: anywhere;
  }
}

/* SEO_BYBIT_EDITORIAL_START */
.bybit-editorial {
  border-top: 1px solid #e3e8ed;
  border-bottom: 1px solid #e3e8ed;
  background: #f7fafb;
  padding: 44px 0 50px;
}

.bybit-editorial-shell {
  display: grid;
  gap: 38px;
}

.bybit-editorial-header {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: start;
}

.bybit-editorial-kicker,
.bybit-editorial-section-heading > p {
  margin: 0 0 8px;
  color: #6f63c4;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.bybit-editorial-header h2 {
  max-width: 560px;
  margin: 0;
  color: #132e43;
  font-size: 1.82rem;
  line-height: 1.16;
}

.bybit-editorial-lead {
  margin: 2px 0 0;
  border-left: 4px solid #19a187;
  color: #405b70;
  font-size: 0.96rem;
  line-height: 1.72;
  padding-left: 22px;
}

.bybit-editorial-reasons,
.bybit-editorial-purchase {
  display: grid;
  gap: 19px;
}

.bybit-editorial-section-heading {
  max-width: 760px;
}

.bybit-editorial-section-heading h3,
.bybit-editorial-columns h3 {
  margin: 0;
  color: #132e43;
  font-size: 1.28rem;
  line-height: 1.3;
}

.bybit-editorial-section-heading > span {
  display: block;
  margin-top: 7px;
  color: #607587;
  line-height: 1.55;
}

.bybit-reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bybit-reason-grid > li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  border: 1px solid #dce5ea;
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}

.bybit-reason-grid > li:nth-child(2),
.bybit-reason-grid > li:nth-child(3) {
  border-top-color: #e7c89f;
}

.bybit-reason-number {
  display: grid;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef0ff;
  color: #5f52b0;
  font-size: 0.78rem;
  font-weight: 950;
}

.bybit-reason-grid > li:nth-child(2) .bybit-reason-number,
.bybit-reason-grid > li:nth-child(3) .bybit-reason-number {
  background: #fff2e5;
  color: #9a581f;
}

.bybit-reason-grid h4 {
  margin: 0 0 7px;
  color: #203c52;
  font-size: 0.96rem;
  line-height: 1.35;
}

.bybit-reason-grid p,
.bybit-editorial-columns p,
.bybit-editorial-columns li {
  margin: 0;
  color: #536b7e;
  font-size: 0.86rem;
  line-height: 1.62;
}

.bybit-editorial-purchase {
  border-top: 1px solid #dfe6eb;
  border-bottom: 1px solid #dfe6eb;
  padding: 28px 0 30px;
}

.bybit-purchase-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bybit-purchase-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 11px;
  min-width: 0;
  align-items: start;
  padding-right: 22px;
}

.bybit-purchase-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 8px;
  width: 16px;
  height: 1px;
  background: #bdcbd4;
}

.bybit-purchase-steps span {
  display: grid;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d69b65;
  border-radius: 50%;
  background: #fff8f0;
  color: #91531e;
  font-size: 0.82rem;
  font-weight: 950;
}

.bybit-purchase-steps p {
  margin: 1px 0 0;
  color: #405b70;
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.5;
}

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

.bybit-editorial-columns--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 880px;
}

.bybit-editorial-columns > section {
  min-width: 0;
}

.bybit-editorial-columns > section + section {
  border-left: 1px solid #dfe6eb;
  padding-left: 46px;
}

.bybit-editorial-columns > section > p {
  margin-top: 9px;
}

.bybit-editorial-columns ul {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.bybit-editorial-columns li {
  position: relative;
  padding-left: 19px;
}

.bybit-editorial-columns li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: #19a187;
}

.bybit-editorial-columns section:nth-child(2) li::before {
  background: #e58a3b;
}

.bybit-editorial-columns strong {
  color: #243f54;
}

.bybit-editorial-closing {
  border-left: 4px solid #e58a3b;
  background: #ffffff;
  padding: 17px 20px;
}

.bybit-editorial-closing p {
  max-width: 920px;
  margin: 0;
  color: #29465b;
  font-size: 0.93rem;
  font-weight: 820;
  line-height: 1.58;
}

@media (max-width: 900px) {
  .bybit-editorial-header,
  .bybit-editorial-columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .bybit-editorial-columns > section + section {
    border-top: 1px solid #dfe6eb;
    border-left: 0;
    padding-top: 24px;
    padding-left: 0;
  }

  .bybit-purchase-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
  }

  .bybit-purchase-steps li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .bybit-editorial {
    padding: 34px 0 38px;
  }

  .bybit-editorial-shell {
    gap: 30px;
  }

  .bybit-editorial-header {
    gap: 17px;
  }

  .bybit-editorial-header h2 {
    font-size: 1.48rem;
  }

  .bybit-editorial-lead {
    font-size: 0.9rem;
    padding-left: 16px;
  }

  .bybit-reason-grid,
  .bybit-purchase-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .bybit-reason-grid > li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    padding: 15px;
  }

  .bybit-reason-number {
    width: 36px;
    height: 36px;
  }

  .bybit-editorial-purchase {
    padding: 24px 0;
  }

  .bybit-purchase-steps {
    gap: 13px;
  }

  .bybit-purchase-steps li {
    padding-right: 0;
  }

  .bybit-editorial-closing {
    padding: 15px 16px;
  }
}
/* SEO_BYBIT_EDITORIAL_END */

/* CATEGORY_EXCHANGES_HUB_R43_START */
.exchange-hub-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: -4px 0 34px;
}

.exchange-hub-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid #d8d0ff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #5f52b0;
  font-size: 0.84rem;
  font-weight: 900;
  padding: 0 15px;
  text-decoration: none;
}

.exchange-hub-nav a:hover {
  border-color: #b8aaf1;
  background: #f6f3ff;
  color: #473b96;
}

.exchange-hub-compare {
  margin-bottom: 58px;
  border: 1px solid #ddd8f4;
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 0%, rgba(220, 211, 255, 0.62) 0 150px, transparent 151px),
    linear-gradient(145deg, #f8f6ff 0%, #f9fcfd 52%, #f3fbf8 100%);
  box-shadow: 0 24px 60px rgba(50, 43, 91, 0.08);
  padding: 34px;
  scroll-margin-top: 24px;
}

.exchange-hub-compare-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: start;
  margin-bottom: 26px;
}

.exchange-hub-eyebrow {
  margin: 0 0 7px;
  color: #6f63c4;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.exchange-hub-compare h2,
.exchange-hub-catalog-head h2,
.exchange-hub-section-head h2,
.exchange-hub-faq-intro h2 {
  width: auto;
  margin: 0;
  color: #132e43;
  font-size: 1.78rem;
  line-height: 1.18;
  text-align: left;
}

.exchange-hub-compare-head > div:first-child > p:last-child,
.exchange-hub-catalog-head > p,
.exchange-hub-section-head > p:last-child,
.exchange-hub-faq-intro > p {
  max-width: 760px;
  margin: 11px 0 0;
  color: #526a7c;
  line-height: 1.65;
}

.exchange-hub-count {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(111, 99, 196, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(62, 52, 117, 0.08);
  padding: 13px 16px;
}

.exchange-hub-count strong {
  color: #5f52b0;
  font-size: 2rem;
  line-height: 1;
}

.exchange-hub-count span {
  color: #526a7c;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.25;
}

.exchange-hub-table-wrap {
  overflow: hidden;
}

.exchange-hub-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.exchange-hub-table th {
  color: #65798a;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.03em;
  padding: 0 14px 3px;
  text-align: left;
  text-transform: uppercase;
}

.exchange-hub-table td {
  border-top: 1px solid #e1e7eb;
  border-bottom: 1px solid #e1e7eb;
  background: rgba(255, 255, 255, 0.94);
  color: #455f72;
  font-size: 0.84rem;
  line-height: 1.5;
  padding: 14px;
  vertical-align: middle;
}

.exchange-hub-table td:first-child {
  display: flex;
  min-width: 150px;
  align-items: center;
  gap: 10px;
  border-left: 1px solid #e1e7eb;
  border-radius: 12px 0 0 12px;
  color: #17364c;
}

.exchange-hub-table td:last-child {
  min-width: 118px;
  border-right: 1px solid #e1e7eb;
  border-radius: 0 12px 12px 0;
}

.exchange-hub-service-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 12px;
  background: #eeeaff;
  color: #5d50aa;
  font-size: 0.68rem;
  font-weight: 950;
}

.exchange-hub-service-mark--orange {
  background: #fff1e3;
  color: #9c581d;
}

.exchange-hub-service-mark--green {
  background: #e9f8f3;
  color: #17725d;
}

.exchange-hub-service-mark--blue {
  background: #e9f3ff;
  color: #286397;
}

.exchange-hub-service-mark--navy {
  background: #eaf0f5;
  color: #2b4b63;
}

.exchange-hub-service-mark--gold {
  background: #fff5dc;
  color: #8d6719;
}

.exchange-hub-scenario {
  display: inline-flex;
  border-radius: 999px;
  background: #f1f5f7;
  color: #36566d;
  font-size: 0.76rem;
  font-weight: 900;
  padding: 7px 10px;
  white-space: nowrap;
}

.exchange-hub-product-link {
  display: grid;
  gap: 2px;
  color: #18394f;
  font-weight: 950;
  text-decoration: none;
}

.exchange-hub-product-link span {
  color: #6f63c4;
  font-size: 0.72rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.exchange-hub-catalog-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: end;
  margin: 0 0 24px;
  scroll-margin-top: 24px;
}

.exchange-hub-catalog-head > p {
  margin: 0;
}

.exchange-hub-guide {
  margin-top: 66px;
  border-top: 1px solid #e2e8ec;
  padding-top: 56px;
  scroll-margin-top: 24px;
}

.exchange-hub-section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.exchange-hub-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.exchange-hub-guide-grid > li {
  min-width: 0;
  border: 1px solid #dfe6eb;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(31, 63, 85, 0.05);
  padding: 20px;
}

.exchange-hub-guide-grid > li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #eeeaff;
  color: #5f52b0;
  font-size: 0.72rem;
  font-weight: 950;
}

.exchange-hub-guide-grid > li:nth-child(even) > span {
  background: #e9f8f3;
  color: #17725d;
}

.exchange-hub-guide-grid h3 {
  margin: 0 0 8px;
  color: #19374d;
  font-size: 1rem;
  line-height: 1.35;
}

.exchange-hub-guide-grid p {
  margin: 0;
  color: #556d7e;
  font-size: 0.84rem;
  line-height: 1.62;
}

.exchange-hub-guide-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  border-left: 4px solid #19a187;
  border-radius: 0 16px 16px 0;
  background: #eefaf6;
  padding: 20px 22px;
}

.exchange-hub-guide-note strong {
  color: #164c3e;
}

.exchange-hub-guide-note p {
  margin: 5px 0 0;
  color: #42695e;
  font-size: 0.86rem;
  line-height: 1.5;
}

.exchange-hub-guide-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.exchange-hub-guide-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(25, 161, 135, 0.28);
  border-radius: 999px;
  background: #ffffff;
  color: #176d59;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0 14px;
  text-decoration: none;
}

.exchange-hub-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  margin-top: 64px;
  border-top: 1px solid #e2e8ec;
  padding-top: 56px;
  scroll-margin-top: 24px;
}

.exchange-hub-faq-intro > p {
  margin-top: 11px;
}

.exchange-hub-faq-intro > a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: 20px;
  border: 1px solid #d8d0ff;
  border-radius: 999px;
  color: #5f52b0;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 0 15px;
  text-decoration: none;
}

.exchange-hub-faq-list {
  display: grid;
  gap: 9px;
}

.exchange-hub-faq-list details {
  border: 1px solid #dfe6eb;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(31, 63, 85, 0.04);
  padding: 0 18px;
}

.exchange-hub-faq-list details[open] {
  border-color: #cfc5f5;
  background: #fbfaff;
}

.exchange-hub-faq-list summary {
  position: relative;
  cursor: pointer;
  color: #19374d;
  font-weight: 900;
  line-height: 1.4;
  list-style: none;
  padding: 17px 38px 17px 0;
}

.exchange-hub-faq-list summary::-webkit-details-marker {
  display: none;
}

.exchange-hub-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: #eeeaff;
  color: #5f52b0;
  font-size: 1.1rem;
  transform: translateY(-50%);
}

.exchange-hub-faq-list details[open] summary::after {
  content: "−";
}

.exchange-hub-faq-list details p {
  margin: -2px 38px 17px 0;
  color: #556d7e;
  font-size: 0.86rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .exchange-hub-compare-head,
  .exchange-hub-catalog-head,
  .exchange-hub-faq {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .exchange-hub-count {
    justify-self: start;
  }

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

  .exchange-hub-guide-note {
    grid-template-columns: minmax(0, 1fr);
  }

  .exchange-hub-guide-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .catalog-page-main .catalog-section {
    padding-top: 42px;
  }

  .exchange-hub-nav {
    justify-content: flex-start;
    margin-bottom: 24px;
  }

  .exchange-hub-nav a {
    min-height: 36px;
    padding: 0 12px;
  }

  .exchange-hub-compare {
    margin-inline: -2px;
    margin-bottom: 46px;
    border-radius: 20px;
    padding: 22px 14px;
  }

  .exchange-hub-compare h2,
  .exchange-hub-catalog-head h2,
  .exchange-hub-section-head h2,
  .exchange-hub-faq-intro h2 {
    font-size: 1.48rem;
  }

  .exchange-hub-table-wrap {
    overflow: visible;
  }

  .exchange-hub-table,
  .exchange-hub-table tbody,
  .exchange-hub-table tr,
  .exchange-hub-table td {
    display: block;
    width: 100%;
  }

  .exchange-hub-table {
    border-spacing: 0;
  }

  .exchange-hub-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .exchange-hub-table tr {
    margin-top: 11px;
    border: 1px solid #e1e7eb;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.96);
    padding: 14px;
  }

  .exchange-hub-table td,
  .exchange-hub-table td:first-child,
  .exchange-hub-table td:last-child {
    min-width: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 9px 0;
  }

  .exchange-hub-table td:not(:first-child)::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 5px;
    color: #778998;
    font-size: 0.65rem;
    font-weight: 950;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .exchange-hub-table td:first-child {
    padding-top: 0;
  }

  .exchange-hub-table td:last-child {
    padding-bottom: 0;
  }

  .exchange-hub-product-link {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    background: #f3f0ff;
    padding: 0 12px;
  }

  .exchange-hub-catalog-head {
    margin-bottom: 20px;
  }

  .exchange-hub-guide {
    margin-top: 52px;
    padding-top: 44px;
  }

  .exchange-hub-guide-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .exchange-hub-guide-grid > li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
    padding: 16px;
  }

  .exchange-hub-guide-grid > li > span {
    margin-bottom: 0;
  }

  .exchange-hub-guide-note {
    padding: 17px;
  }

  .exchange-hub-guide-links {
    display: grid;
  }

  .exchange-hub-guide-links a {
    justify-content: center;
  }

  .exchange-hub-faq {
    gap: 26px;
    margin-top: 52px;
    padding-top: 44px;
  }

  .exchange-hub-faq-list details {
    padding: 0 14px;
  }

  .exchange-hub-faq-list summary {
    font-size: 0.9rem;
    padding-right: 34px;
  }

  .exchange-hub-faq-list details p {
    margin-right: 0;
  }
}
/* CATEGORY_EXCHANGES_HUB_R43_END */
