: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;
}

.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.png") 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;
}

.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(3, minmax(0, 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-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-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;
}

.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: uppercase;
}

.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-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;
}

.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%);
}

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

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

.footer-inner {
  display: grid;
  grid-template-columns: minmax(180px, auto) minmax(0, 1fr);
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

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

.footer-links {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-self: end;
  gap: 18px;
}

.footer-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #3b315f;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0 8px;
  text-align: center;
  white-space: nowrap;
  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.png") 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;
}

.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);
}

.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);
}

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

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .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,
  .contact-page-layout,
  .page-hero-grid,
  .article-layout {
    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-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding: 6px 0 2px;
    font-size: 0.86rem;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    min-height: 34px;
    border: 1px solid rgba(216, 208, 255, 0.88);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    padding: 7px 12px;
    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(290px, 100%);
    font-size: 1.88rem;
  }

  .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;
  }

  .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-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;
    justify-self: stretch;
  }
}
