:root {
    /* Базовая палитра витрины: светлый фон, темный текст и зеленый акцент действий. */
    color-scheme: light;
    --bg: #f7f8f6;
    --ink: #161a18;
    --muted: #68716c;
    --line: #dfe5df;
    --panel: #ffffff;
    --accent: #0f8f66;
    --accent-dark: #08714f;
    --danger: #b6403a;
    --shadow: 0 18px 50px rgba(24, 30, 26, 0.12);
    --panel-border: rgba(22, 26, 24, 0.08);
    --panel-shadow-soft: 0 22px 54px rgba(17, 24, 39, 0.06);
    --panel-shadow-strong: 0 24px 60px rgba(17, 24, 39, 0.08);
    --panel-surface:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 246, 0.94)),
        #fff;
    --panel-surface-accent:
        linear-gradient(135deg, rgba(15, 115, 85, 0.08), rgba(255, 255, 255, 0) 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 246, 0.94)),
        #fff;
    --field-surface: #fff;
}

.data-panel,
.checkout-panel,
.order-summary,
.payment-box,
.delivery-section,
.refund-section,
.blog-item,
.cart-item-card,
.cart-checkout-item,
.cart-empty-state,
.cart-verified-box,
.order-progress,
.reviews-hero-panel,
.review-card {
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    background: var(--panel-surface);
    box-shadow: var(--panel-shadow-soft);
}

.data-panel--accent,
.checkout-panel,
.delivery-section--primary,
.reviews-hero-panel {
    background: var(--panel-surface-accent);
}

.data-panel__header,
.section-head,
.cart-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.data-panel__header h2,
.section-head h2,
.cart-section-head h2 {
    margin: 0;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.08;
}

.data-panel__header p,
.section-head p,
.section-subtitle {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.data-grid {
    display: grid;
    gap: 14px;
}

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

.data-field,
.spec-list div,
.delivery-credentials > div,
.order-heading__facts div {
    min-width: 0;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--field-surface);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.data-field__label,
.spec-list dt,
.delivery-credentials dt,
.order-heading__facts span {
    display: block;
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 760;
    line-height: 1.35;
}

.data-field__value,
.spec-list dd,
.delivery-credentials dd,
.order-heading__facts strong {
    margin: 0;
    color: var(--ink);
    font-weight: 780;
    line-height: 1.45;
}

.data-field__value--strong {
    font-size: 18px;
}

.verification-summary {
    display: grid;
    gap: 22px;
}

.verification-hero {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(15, 143, 102, 0.18);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(15, 143, 102, 0.08), rgba(255, 255, 255, 0.95));
}

.verification-hero h2 {
    margin: 0 0 4px;
    font-size: 24px;
}

.verification-hero p {
    margin: 0;
    color: var(--muted);
}

.verification-spinner {
    position: relative;
    display: block;
    width: 52px;
    height: 52px;
    border: 4px solid rgba(15, 143, 102, 0.14);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: verification-spin 900ms linear infinite;
}

.verification-spinner::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: rgba(15, 143, 102, 0.08);
}

.verification-steps {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.verification-meter {
    display: grid;
    gap: 10px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
}

.verification-meter__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.verification-meter__head strong {
    font-size: 15px;
}

.verification-meter__head span {
    color: var(--muted);
    font-weight: 800;
}

.verification-meter__track {
    position: relative;
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(22, 26, 24, 0.08);
}

.verification-meter__bar {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent), #23b383);
    transition: width 260ms ease;
}

.verification-meter__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
}

.verification-step {
    display: grid;
    grid-template-columns: 18px 24px 1fr;
    gap: 14px;
    align-items: start;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.verification-step strong,
.verification-step p {
    margin: 0;
}

.verification-step p {
    color: var(--muted);
    font-size: 14px;
}

.verification-step__dot {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border-radius: 999px;
    background: #c7d0ca;
}

.verification-step__icon {
    display: grid;
    width: 24px;
    min-height: 24px;
    place-items: center;
    color: var(--muted);
    font-size: 16px;
    font-weight: 800;
}

.verification-step.is-idle .verification-step__dot {
    background: #c7d0ca;
}

.verification-step.is-running {
    border-color: rgba(15, 143, 102, 0.35);
    background: rgba(15, 143, 102, 0.05);
    box-shadow: 0 12px 28px rgba(15, 143, 102, 0.08);
}

.verification-step.is-running .verification-step__dot {
    background: var(--accent);
    animation: verification-pulse 1.1s ease-in-out infinite;
}

.verification-step.is-success {
    border-color: rgba(15, 143, 102, 0.38);
    background: rgba(15, 143, 102, 0.06);
}

.verification-step.is-success .verification-step__dot {
    background: var(--accent);
}

.verification-step.is-success .verification-step__icon {
    color: var(--accent);
}

.verification-step.is-error {
    border-color: rgba(182, 64, 58, 0.28);
    background: rgba(182, 64, 58, 0.06);
}

.verification-step.is-error .verification-step__dot {
    background: var(--danger);
}

.verification-step.is-error .verification-step__icon {
    color: var(--danger);
}

.verification-step.is-running .verification-step__icon {
    color: var(--accent);
}

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

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

.verification-next-step {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.verification-next-step h3,
.verification-next-step p {
    margin: 0;
}

.verification-next-step h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.verification-next-step p {
    color: var(--muted);
}

.verification-next-step--neutral {
    background: rgba(255, 255, 255, 0.82);
}

.verification-next-step--success {
    background: rgba(15, 143, 102, 0.08);
    border-color: rgba(15, 143, 102, 0.24);
}

.verification-next-step--warning {
    background: rgba(240, 145, 18, 0.08);
    border-color: rgba(240, 145, 18, 0.24);
}

.verification-next-step--danger {
    background: rgba(182, 64, 58, 0.08);
    border-color: rgba(182, 64, 58, 0.24);
}

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

.checkout-form--verification .button[disabled] {
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

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

@keyframes verification-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(15, 143, 102, 0.28);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(15, 143, 102, 0);
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

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

img {
    display: block;
    max-width: 100%;
}

[hidden] {
    display: none !important;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
    padding: 14px clamp(18px, 5vw, 72px);
    background: rgba(247, 248, 246, 0.92);
    border-bottom: 1px solid rgba(22, 26, 24, 0.08);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand__mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
    font-size: 14px;
}

.site-nav,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    font-weight: 650;
}

.site-nav a:hover,
.nav-form button:hover,
.footer-links a:hover,
.back-link:hover {
    color: var(--accent);
}

.nav-form {
    margin: 0;
}

.nav-form button {
    min-height: 34px;
    border: 1px solid rgba(22, 26, 24, 0.12);
    border-radius: 8px;
    background: #fff;
    color: inherit;
    cursor: pointer;
    font: inherit;
    font-weight: 760;
    padding: 7px 12px;
    transition: border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.nav-form button:hover {
    border-color: rgba(15, 143, 102, 0.42);
    box-shadow: 0 8px 18px rgba(22, 26, 24, 0.08);
    transform: translateY(-1px);
}

.hero {
    /* Первый экран работает как витрина каталога: изображение дает контекст, текст остается читаемым за счет затемнения. */
    position: relative;
    min-height: calc(100svh - 72px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero__image,
.hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__image {
    object-fit: cover;
    transform: scale(1.04);
    animation: image-settle 900ms ease-out forwards;
}

.hero__shade {
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.44) 48%, rgba(0, 0, 0, 0.12));
}

.hero__content {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100% - 36px));
    margin-left: clamp(18px, 7vw, 96px);
    color: #fff;
    animation: rise-in 520ms ease-out both;
}

.hero h1 {
    max-width: 720px;
    margin: 10px 0 18px;
    font-size: 86px;
    line-height: 0.96;
    letter-spacing: 0;
}

.hero p:not(.eyebrow) {
    max-width: 560px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.hero--catalog-banner {
    width: 100vw;
    height: clamp(380px, 34vw, 560px);
    min-height: 0;
    margin-left: calc(50% - 50vw);
    aspect-ratio: auto;
    max-height: none;
    background: #06142e;
}

.hero--catalog-banner .hero__image {
    object-fit: cover;
    object-position: center 30%;
    transform: none;
    animation: none;
}

.hero--catalog-banner .hero__shade {
    background:
        linear-gradient(90deg, rgba(4, 10, 28, 0.74), rgba(4, 10, 28, 0.2) 42%, rgba(4, 10, 28, 0.04) 74%),
        linear-gradient(180deg, rgba(4, 10, 28, 0.03), rgba(4, 10, 28, 0.18));
}

.hero--catalog-banner .hero__content {
    position: absolute;
    inset: auto auto clamp(34px, 5vw, 78px) clamp(18px, 8vw, 112px);
    width: min(560px, calc(100% - 36px));
    margin: 0;
    color: #fff;
    animation: none;
}

.hero--catalog-banner h1 {
    max-width: 560px;
    margin: 8px 0 12px;
    font-size: clamp(38px, 4.5vw, 70px);
    line-height: 0.98;
}

.hero--catalog-banner p:not(.eyebrow) {
    max-width: 500px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
}

.hero--catalog-banner .button {
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(15, 143, 102, 0.9);
    box-shadow: 0 14px 34px rgba(3, 13, 35, 0.28);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font: inherit;
    font-weight: 780;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 12px 30px rgba(15, 143, 102, 0.22);
}

.button--primary:hover {
    background: var(--accent-dark);
}

.button--dark {
    background: var(--ink);
    color: #fff;
}

.button--ghost {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
}

.button--primary-soft {
    border: 1px solid rgba(15, 143, 102, 0.18);
    background: rgba(15, 143, 102, 0.08);
    color: var(--accent-dark);
}

.button--primary-soft:hover {
    background: rgba(15, 143, 102, 0.14);
}

.auth-social-button {
    /* Отдельная ширина для OAuth-кнопки, чтобы она не слипалась с основной формой входа. */
    display: inline-flex;
    margin-top: 18px;
}

.button--wide {
    width: 100%;
}

.details-link {
    color: var(--accent);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-word;
}

.details-link:hover {
    color: var(--accent-dark);
}

.catalog-shell,
.filter-showcase,
.latest-news,
.product-page,
.related,
.order-page,
.simple-page,
.article-page {
    /* Единая рабочая ширина для всех публичных страниц без зависимости от Vite/Tailwind. */
    width: min(1240px, calc(100% - 36px));
    margin: 0 auto;
}

.catalog-shell {
    padding: 36px 0 84px;
}

.filter-showcase {
    padding: 56px 0 20px;
}

.latest-news {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(22, 26, 24, 0.05);
}

.latest-news time {
    color: var(--accent);
    font-weight: 800;
}

.latest-news h2 {
    margin: 8px 0;
    letter-spacing: 0;
}

.latest-news p:not(.eyebrow) {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
}

.filter-showcase h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: 0;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.filter-tile {
    /* Плитка фильтра является управляемым админом витринным разделом: фиксируем размер иконки, чтобы сетка не прыгала от разных файлов. */
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 92px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.filter-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 143, 102, 0.36);
    box-shadow: 0 14px 34px rgba(22, 26, 24, 0.08);
}

.filter-tile.is-active {
    transform: translateY(-2px);
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(15, 143, 102, 0.20), rgba(255, 255, 255, 0.98) 62%);
    box-shadow: 0 18px 42px rgba(15, 143, 102, 0.22);
}

.filter-tile.is-active::before {
    content: "";
    position: absolute;
    inset: 12px auto 12px 0;
    width: 4px;
    border-radius: 0 6px 6px 0;
    background: var(--accent);
}

.filter-tile.is-active::after {
    content: "Выбрано";
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.filter-tile.is-active .filter-tile__icon {
    box-shadow: 0 0 0 3px rgba(15, 143, 102, 0.22);
}

.filter-tile.is-active strong {
    color: var(--accent-strong);
}

.filter-tile__icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    overflow: hidden;
    border-radius: 8px;
    background: #101312;
    color: #fff;
    font-size: 24px;
    font-weight: 850;
}

.filter-tile__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.filter-tile strong,
.filter-tile small {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
}

.filter-tile strong {
    line-height: 1.18;
}

.filter-tile small {
    margin-top: 5px;
    color: var(--muted);
    font-weight: 700;
}

.category-rail {
    position: sticky;
    top: 96px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.category-link {
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--muted);
    font-weight: 720;
}

.category-link:hover,
.category-link.is-active {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 10px 26px rgba(22, 26, 24, 0.06);
}

.catalog-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px 12px;
    align-items: end;
    margin-bottom: 26px;
}

.catalog-filter-panel {
    margin-bottom: 26px;
}

.catalog-filter-panel .catalog-tools {
    margin: 14px 0 0;
}

.catalog-filter-toggle {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 11px 18px;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
    cursor: pointer;
    font-weight: 780;
    transition: transform 160ms ease, background 160ms ease;
}

.catalog-filter-toggle:hover {
    transform: translateY(-2px);
}

.catalog-filter-toggle small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 680;
}

label {
    display: grid;
    gap: 7px;
    min-width: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 720;
}

.catalog-tools label > span {
    min-height: 34px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.catalog-multi-select {
    display: grid;
    position: relative;
    min-width: 0;
    gap: 8px;
    padding: 0;
    border: 0;
}

.catalog-multi-select legend {
    min-height: 34px;
    margin: 0;
    color: var(--ink);
    font-size: 13px;
    font-weight: 780;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.catalog-multi-select__control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.catalog-multi-select__toggle {
    display: flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    font-size: 14px;
    font-weight: 780;
    text-align: left;
}

.catalog-multi-select__toggle:hover,
.catalog-multi-select__toggle[aria-expanded="true"] {
    border-color: rgba(15, 143, 102, 0.32);
    box-shadow: 0 0 0 3px rgba(15, 143, 102, 0.08);
}

.catalog-multi-select__toggle::after {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    margin-left: auto;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    content: "";
    transform: rotate(45deg) translateY(-2px);
}

.catalog-multi-select__toggle[aria-expanded="true"]::after {
    transform: rotate(225deg) translateY(-2px);
}

.catalog-multi-select__count {
    flex: 0 0 auto;
    min-width: 28px;
    min-height: 24px;
    padding: 4px 8px;
    border: 1px solid rgba(15, 143, 102, 0.16);
    border-radius: 8px;
    background: rgba(15, 143, 102, 0.07);
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    white-space: nowrap;
}

.catalog-multi-select__dropdown {
    position: absolute;
    z-index: 20;
    top: calc(100% + 8px);
    left: 0;
    display: grid;
    width: min(360px, 92vw);
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(15, 143, 102, 0.18);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(22, 26, 24, 0.16);
}

.catalog-multi-select__dropdown[hidden] {
    display: none;
}

.catalog-multi-select__dropdown input {
    width: 100%;
    min-width: 0;
}

.catalog-multi-select__selected {
    display: flex;
    min-height: 34px;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    padding: 0;
}

.catalog-multi-select__hint {
    padding: 0 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
}

.catalog-multi-select__chip {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    padding: 5px 9px;
    border: 1px solid rgba(15, 143, 102, 0.22);
    border-radius: 8px;
    background: rgba(15, 143, 102, 0.09);
    color: var(--accent-dark);
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
}

.catalog-multi-select__chip:hover {
    border-color: rgba(15, 143, 102, 0.36);
    background: rgba(15, 143, 102, 0.14);
}

.catalog-multi-select__options {
    display: grid;
    max-height: 210px;
    gap: 6px;
    overflow-y: auto;
    padding: 7px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
}

.catalog-multi-select__option {
    display: flex;
    width: 100%;
    min-height: 34px;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 10px;
    border: 1px solid rgba(22, 26, 24, 0.08);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    font-size: 13px;
    font-weight: 720;
    text-align: left;
}

.catalog-multi-select__option:hover {
    border-color: rgba(15, 143, 102, 0.28);
    background: rgba(15, 143, 102, 0.06);
}

.catalog-multi-select__option.is-selected {
    border-color: rgba(15, 143, 102, 0.44);
    background: rgba(15, 143, 102, 0.12);
    color: var(--accent-dark);
}

.catalog-multi-select__empty {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
}

.catalog-range-field {
    display: grid;
    gap: 7px;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.catalog-range-field legend {
    min-height: 34px;
    margin: 0 0 7px;
    padding: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 720;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.catalog-range-field > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.catalog-range-field input {
    min-width: 0;
}

.catalog-tools > .button {
    align-self: end;
    min-height: 44px;
}

input,
select,
textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    padding: 11px 13px;
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(15, 143, 102, 0.14);
}

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

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

.product-card {
    /* Карточка является кликабельной единицей товара, поэтому ей задана стабильная высота и аккуратная рамка. */
    display: grid;
    min-height: 248px;
    align-content: space-between;
    gap: 12px;
    padding: 22px;
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    background: var(--panel-surface);
    box-shadow: var(--panel-shadow-soft);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 143, 102, 0.34);
    box-shadow: var(--panel-shadow-strong);
}

.product-card__link {
    display: grid;
    gap: 12px;
    min-height: 0;
}

.product-card__body {
    display: grid;
    gap: 6px;
    min-height: 88px;
    align-content: start;
}

.product-card h2,
.product-card h3 {
    margin: 8px 0 6px;
    font-size: 18px;
    line-height: 1.22;
    letter-spacing: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-card p,
.fineprint,
.empty-state p,
.simple-page p,
.order-heading p,
.product-lead {
    color: var(--muted);
}

.product-card__category {
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
}

.product-card__meta-placeholder {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.product-card strong,
.price {
    display: block;
    color: var(--ink);
    font-size: 30px;
    line-height: 0.95;
}

.product-card__price-block {
    display: grid;
    gap: 4px;
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(22, 26, 24, 0.08);
}

.product-card__price-label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.product-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
    margin-bottom: 2px;
    min-height: 26px;
    align-items: flex-start;
}

.product-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    max-width: 100%;
    padding: 4px 9px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card__badge--neutral {
    background: #f2f4f1;
    border-color: #e4e9e3;
    color: #4c5750;
}

.product-card__badge--mint {
    background: rgba(15, 143, 102, 0.08);
    border-color: rgba(15, 143, 102, 0.18);
    color: var(--accent-dark);
}

.product-card__badge--blue {
    background: rgba(55, 113, 226, 0.08);
    border-color: rgba(55, 113, 226, 0.18);
    color: #2958b3;
}

.product-card__badge--amber {
    background: rgba(230, 154, 16, 0.1);
    border-color: rgba(230, 154, 16, 0.18);
    color: #9b6511;
}

.product-card__badge--rose {
    background: rgba(196, 78, 110, 0.08);
    border-color: rgba(196, 78, 110, 0.18);
    color: #a13e5a;
}

.product-card__badge--violet {
    background: rgba(119, 87, 220, 0.1);
    border-color: rgba(119, 87, 220, 0.18);
    color: #5f45b0;
}

.product-card__badge--more {
    background: rgba(22, 26, 24, 0.06);
    border-color: rgba(22, 26, 24, 0.1);
    color: var(--muted);
}

.roblox-donation-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.roblox-donation-chip {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 32px;
    padding: 7px 11px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.1;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.roblox-donation-chip--1 {
    background: rgba(15, 143, 102, 0.1);
    border-color: rgba(15, 143, 102, 0.24);
    color: var(--accent-dark);
}

.roblox-donation-chip--2 {
    background: rgba(55, 113, 226, 0.1);
    border-color: rgba(55, 113, 226, 0.22);
    color: #2958b3;
}

.roblox-donation-chip--3 {
    background: rgba(230, 154, 16, 0.12);
    border-color: rgba(230, 154, 16, 0.24);
    color: #8a5a10;
}

.empty-state,
.notice {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.global-notice {
    width: min(1240px, calc(100% - 36px));
    margin: 24px auto 0;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
    padding: 0;
    list-style: none;
}

.pagination a,
.pagination span {
    display: inline-flex;
    min-width: 38px;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
}

.product-page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 42px;
    padding: 72px 0 56px;
}

.product-main h1,
.order-heading h1,
.simple-page h1,
.article-page h1 {
    margin: 0 0 18px;
    font-size: 62px;
    line-height: 1;
    letter-spacing: 0;
}

.back-link {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--muted);
    font-weight: 760;
}

.spec-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 34px 0 0;
}

.details-section {
    margin-top: 34px;
}

.details-section h2 {
    margin: 0 0 16px;
}

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

.details-list > div {
    display: grid;
    align-content: start;
    gap: 8px;
    min-height: 80px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
}

.details-list > .details-list__row--danger {
    border-color: #e2a4a0;
    background: #fff1f0;
}

.details-list > .details-list__row--wide {
    grid-column: 1 / -1;
}

.details-list dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 720;
}

.details-list dd {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
    font-weight: 740;
}

.details-list__row--wide dd {
    font-weight: 640;
}

.detail-compact-list,
.detail-event-list {
    display: grid;
    gap: 8px;
}

.detail-toggle {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.detail-collapsible > :nth-child(n + 21) {
    display: none;
}

.detail-collapsible--one > :nth-child(n + 2) {
    display: none;
}

.tank-grid.detail-collapsible > :nth-child(n + 25) {
    display: none;
}

.detail-toggle:checked + .detail-collapsible > *,
.detail-toggle:checked + .tank-grid.detail-collapsible > * {
    display: grid;
}

.detail-toggle:checked + .detail-compact-list > .detail-compact-item,
.detail-toggle:checked + .detail-event-list > .detail-event-item,
.detail-toggle:checked + .fortnite-cosmetic-grid > .fortnite-cosmetic-card,
.detail-toggle:checked + .riot-asset-grid > .riot-asset-card {
    display: flex;
}

.detail-toggle:checked + .detail-collapsible + .detail-more-button {
    color: var(--muted);
}

.detail-more-button {
    display: inline-flex;
    width: fit-content;
    margin-top: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 9px 14px;
    color: var(--ink);
    font-weight: 760;
    cursor: pointer;
    background: #fff;
}

.detail-list-summary {
    margin: 0 0 12px;
    color: var(--muted);
    font-weight: 700;
}

.detail-more-button .when-expanded {
    display: none;
}

.detail-toggle:checked + .detail-collapsible + .detail-more-button .when-collapsed {
    display: none;
}

.detail-toggle:checked + .detail-collapsible + .detail-more-button .when-expanded {
    display: inline;
}

.detail-compact-item,
.detail-event-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.detail-compact-item span,
.detail-event-item span {
    color: var(--muted);
    font-size: 14px;
    text-align: right;
}

.detail-event-list.detail-collapsible--one > .detail-event-item:nth-child(n + 2) {
    display: none;
}

.detail-toggle:checked + .detail-event-list.detail-collapsible--one > .detail-event-item {
    display: flex;
}

.fortnite-cosmetic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
}

.detail-collapsible > .fortnite-cosmetic-card:nth-child(n + 25) {
    display: none;
}

.fortnite-cosmetic-card {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: #fff;
    background: radial-gradient(#959595, #4c4c4c);
}

.fortnite-cosmetic-card--superrare {
    background: radial-gradient(#e5ff00, #8e8423);
}

.fortnite-cosmetic-card--legendary {
    background: linear-gradient(#ff8b51, #773821);
}

.fortnite-cosmetic-card--epic {
    background: radial-gradient(#c36aff, #4a2981);
}

.fortnite-cosmetic-card--rare {
    background: radial-gradient(#52b6ff, #183c76);
}

.fortnite-cosmetic-card--uncommon {
    background: radial-gradient(#8fff62, #1b511c);
}

.fortnite-cosmetic-card--common {
    background: radial-gradient(#959595, #4c4c4c);
}

.fortnite-cosmetic-card img,
.fortnite-cosmetic-card__placeholder {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 8px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.18);
}

.fortnite-cosmetic-card__placeholder {
    display: grid;
    place-items: center;
    font-weight: 800;
}

.fortnite-cosmetic-card div {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.fortnite-cosmetic-card strong {
    overflow-wrap: anywhere;
    font-size: 13px;
    line-height: 1.2;
}

.fortnite-cosmetic-card span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
}

.riot-asset-grid,
.minecraft-asset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.riot-asset-card {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 10px;
    border: 1px solid rgba(15, 143, 102, 0.16);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 247, 0.88));
    box-shadow: 0 10px 24px rgba(13, 22, 18, 0.05);
}

.riot-asset-card--link {
    color: inherit;
    text-decoration: none;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.riot-asset-card--link:hover {
    border-color: rgba(15, 143, 102, 0.38);
    box-shadow: 0 14px 30px rgba(13, 22, 18, 0.08);
    transform: translateY(-1px);
}

.riot-asset-card img,
.riot-asset-card__placeholder {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 8px;
    object-fit: cover;
    background: #eef5f1;
}

.riot-asset-card__placeholder {
    display: grid;
    place-items: center;
    color: var(--accent-dark);
    font-weight: 900;
}

.riot-asset-card__body {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.riot-asset-card strong {
    overflow-wrap: anywhere;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.25;
}

.riot-asset-card span {
    color: var(--muted);
    font-size: 12px;
}

.minecraft-asset-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.minecraft-asset-card {
    display: grid;
    gap: 10px;
    align-content: start;
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(15, 143, 102, 0.16);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 247, 0.88));
    box-shadow: 0 10px 24px rgba(13, 22, 18, 0.05);
}

.minecraft-asset-card img {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    object-fit: contain;
    image-rendering: pixelated;
    background:
        linear-gradient(45deg, #eef5f1 25%, transparent 25%),
        linear-gradient(-45deg, #eef5f1 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #eef5f1 75%),
        linear-gradient(-45deg, transparent 75%, #eef5f1 75%);
    background-color: #f8fbf9;
    background-size: 18px 18px;
    background-position: 0 0, 0 9px, 9px -9px, -9px 0;
}

.minecraft-asset-card strong {
    overflow-wrap: anywhere;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.25;
}

.genshin-browser {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    background: #f7faf8;
}

.genshin-browser > input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.genshin-browser__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    max-height: 720px;
    overflow: auto;
    padding-right: 4px;
}

.genshin-browser__details {
    min-width: 0;
}

.genshin-tile {
    position: relative;
    display: grid;
    min-width: 0;
    align-items: end;
    gap: 4px;
    min-height: 114px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 5px;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.genshin-tile img,
.genshin-tile__placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    object-fit: cover;
    background: #e8edf0;
}

.genshin-tile__placeholder {
    display: grid;
    place-items: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--muted);
}

.genshin-tile__constellation {
    position: absolute;
    top: 7px;
    right: 8px;
    display: grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(17, 24, 20, 0.78);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.genshin-stars {
    color: #f1bc22;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
}

.genshin-tile strong {
    color: var(--ink);
    font-size: 13px;
    line-height: 1.15;
    text-align: center;
}

.genshin-panel {
    display: none;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.genshin-panel__hero {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.54) 38%, rgba(238, 243, 239, 0.9) 72%),
        linear-gradient(135deg, rgba(246, 218, 139, 0.24), rgba(98, 168, 202, 0.14));
}

.genshin-panel__character {
    position: absolute;
    right: 16%;
    bottom: -16px;
    max-width: 58%;
    max-height: 330px;
    object-fit: contain;
    filter: drop-shadow(0 18px 32px rgba(17, 24, 20, 0.18));
}

.genshin-panel__loadout {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 8px;
    width: 58px;
    margin: 24px 0 0 24px;
}

.genshin-gear {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(17, 24, 20, 0.22);
    border-radius: 8px;
    background: #eef2f1;
}

.genshin-gear img,
.genshin-gear span {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.genshin-constellations {
    position: absolute;
    z-index: 3;
    top: 18px;
    right: 20px;
    display: grid;
    gap: 10px;
}

.genshin-constellations span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(17, 24, 20, 0.24);
    border-radius: 999px;
    background: rgba(17, 24, 20, 0.46);
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

.genshin-constellations .is-active {
    border-color: #d6ad43;
    background: #fff4d4;
    color: #9a6a00;
}

.genshin-panel__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--line);
}

.genshin-panel__title strong {
    font-size: 18px;
}

.genshin-panel__title span {
    color: var(--muted);
    font-weight: 700;
}

.genshin-panel__section {
    display: grid;
    gap: 10px;
    padding: 14px 18px 18px;
}

.genshin-panel__section h3 {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.genshin-panel__section p {
    margin: 0;
    color: var(--ink);
    line-height: 1.55;
}

.detail-empty-copy {
    color: var(--muted) !important;
    font-weight: 600;
}

.genshin-weapon,
.genshin-artifact {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 10px;
    align-items: center;
    min-width: 0;
}

.genshin-weapon img,
.genshin-artifact img {
    width: 50px;
    height: 50px;
    border: 1px solid var(--line);
    border-radius: 8px;
    object-fit: contain;
    background: #eef2f1;
}

.genshin-weapon div,
.genshin-artifact div {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.genshin-weapon strong,
.genshin-artifact strong {
    overflow-wrap: anywhere;
}

.genshin-weapon span,
.genshin-artifact span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

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

.genshin-artifact {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.genshin-rarity-5 {
    --genshin-rarity-color: #d7a73f;
}

.genshin-rarity-4 {
    --genshin-rarity-color: #8c66d9;
}

.genshin-rarity-3 {
    --genshin-rarity-color: #4f93d8;
}

.genshin-rarity-2 {
    --genshin-rarity-color: #61a66b;
}

.genshin-rarity-1 {
    --genshin-rarity-color: #7b8790;
}

.genshin-rarity-5,
.genshin-rarity-4,
.genshin-rarity-3,
.genshin-rarity-2,
.genshin-rarity-1 {
    border-color: color-mix(in srgb, var(--genshin-rarity-color) 45%, var(--line));
}

.genshin-rarity-5 .genshin-stars,
.genshin-rarity-5.genshin-gear,
.genshin-rarity-5.genshin-artifact {
    background: color-mix(in srgb, #d7a73f 12%, #ffffff);
}

.genshin-rarity-4 .genshin-stars,
.genshin-rarity-4.genshin-gear,
.genshin-rarity-4.genshin-artifact {
    background: color-mix(in srgb, #8c66d9 10%, #ffffff);
}

.honkai-browser .genshin-browser__list {
    align-content: start;
}

.honkai-tile {
    background:
        linear-gradient(180deg, rgba(122, 92, 190, 0.08), rgba(255, 255, 255, 0.92)),
        #fff;
}

.honkai-panel__hero {
    isolation: isolate;
    background:
        radial-gradient(circle at 58% 24%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.38) 36%, rgba(232, 240, 249, 0.86) 74%),
        linear-gradient(135deg, rgba(100, 145, 212, 0.18), rgba(140, 102, 217, 0.16));
}

.honkai-panel__hero--empty {
    min-height: 260px;
}

.honkai-panel__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.16;
    filter: saturate(1.05) blur(1px);
    transform: scale(1.03);
}

.honkai-panel__character {
    z-index: 2;
    right: 8%;
    max-width: 66%;
    max-height: 360px;
}

.honkai-panel__loadout {
    z-index: 3;
    width: 60px;
}

.honkai-panel__placeholder {
    position: absolute;
    z-index: 1;
    right: 11%;
    bottom: 22px;
    display: grid;
    width: 148px;
    height: 148px;
    place-items: center;
    border: 1px solid rgba(122, 92, 190, 0.18);
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(232, 240, 249, 0.92));
    color: rgba(95, 69, 176, 0.68);
    box-shadow: 0 18px 38px rgba(17, 24, 20, 0.08);
    backdrop-filter: blur(8px);
}

.honkai-panel__placeholder span {
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
}

.honkai-traces span {
    overflow: hidden;
    width: 38px;
    height: 38px;
    border-color: rgba(17, 24, 20, 0.16);
    background: rgba(255, 255, 255, 0.78);
    color: rgba(17, 24, 20, 0.48);
    box-shadow: 0 4px 12px rgba(17, 24, 20, 0.08);
    backdrop-filter: blur(4px);
}

.honkai-traces img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    opacity: 0.76;
    filter: drop-shadow(0 2px 4px rgba(17, 24, 20, 0.16));
}

.honkai-traces .is-active img {
    opacity: 1;
    filter: drop-shadow(0 2px 8px rgba(214, 173, 67, 0.28));
}

.honkai-traces span.is-active {
    border-color: rgba(15, 143, 95, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(230, 248, 241, 0.94));
    color: #0f8f5f;
    box-shadow: 0 8px 18px rgba(15, 143, 95, 0.12);
}

.honkai-traces small {
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.honkai-weapon strong,
.honkai-artifact strong {
    overflow-wrap: anywhere;
}

.honkai-panel .genshin-panel__title span {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.honkai-panel .genshin-panel__title span::before {
    content: none;
}

.honkai-panel .genshin-panel__section p.detail-empty-copy {
    font-size: 14px;
    line-height: 1.5;
}

.detail-list-link {
    color: var(--accent);
    text-decoration: none;
}

.detail-list-link:hover,
.detail-list-link:focus-visible {
    text-decoration: underline;
}

.ea-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}

.ea-game-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
    align-items: start;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
}

.ea-game-card img,
.ea-game-card__placeholder {
    width: 72px;
    height: 96px;
    border-radius: 8px;
    object-fit: cover;
    background: #eef2f5;
}

.ea-game-card__placeholder {
    display: grid;
    place-items: center;
    color: var(--muted);
    font-weight: 800;
}

.ea-game-card__body {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.ea-game-card__body strong {
    font-size: 14px;
    line-height: 1.3;
}

.ea-game-card__subtitle {
    color: var(--muted);
    font-size: 12px;
}

.ea-game-card__meta {
    display: grid;
    gap: 4px;
    margin-top: 2px;
}

.ea-game-card__meta span {
    color: var(--muted);
    font-size: 12px;
}

.tank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}

.tank-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
}

.tank-card--premium {
    border-color: rgba(209, 143, 0, 0.7);
    background: rgba(255, 248, 225, 0.92);
}

.tank-card img,
.tank-card__placeholder {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px;
    background: #f3f4f6;
}

.tank-card__placeholder {
    display: grid;
    place-items: center;
    color: var(--muted);
}

.tank-card strong {
    display: block;
    font-size: 13px;
    line-height: 1.35;
}

.tank-card span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
}

.tank-tabs {
    display: grid;
    gap: 12px;
}

.tank-tabs > input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.tank-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tank-tabs__nav label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--muted);
    cursor: pointer;
    font-weight: 760;
}

.tank-tabs__nav span {
    color: var(--ink);
}

.tank-tabs__panel {
    display: none;
}

.tank-tabs > input:nth-of-type(1):checked ~ .tank-tabs__nav label:nth-child(1),
.tank-tabs > input:nth-of-type(2):checked ~ .tank-tabs__nav label:nth-child(2),
.tank-tabs > input:nth-of-type(3):checked ~ .tank-tabs__nav label:nth-child(3) {
    border-color: rgba(79, 70, 229, 0.7);
    color: var(--ink);
    background: rgba(79, 70, 229, 0.08);
}

.tank-tabs > input:nth-of-type(1):checked ~ .tank-tabs__panels .tank-tabs__panel:nth-child(1),
.tank-tabs > input:nth-of-type(2):checked ~ .tank-tabs__panels .tank-tabs__panel:nth-child(2),
.tank-tabs > input:nth-of-type(3):checked ~ .tank-tabs__panels .tank-tabs__panel:nth-child(3) {
    display: block;
}

.brawler-tabs {
    display: grid;
    gap: 14px;
}

.brawler-tabs > input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.brawler-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brawler-tabs__nav label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 12px;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    font-weight: 760;
    cursor: pointer;
}

.brawler-tabs__nav label span {
    display: inline-flex;
    min-width: 24px;
    justify-content: center;
    border-radius: 999px;
    padding: 2px 7px;
    background: color-mix(in srgb, var(--brawler-rarity) 12%, #ffffff);
    color: var(--brawler-rarity);
    font-size: 11px;
    font-weight: 800;
}

.brawler-tabs__panels > .brawler-section {
    display: none;
}

.brawler-tabs > input:nth-of-type(1):checked ~ .brawler-tabs__nav label:nth-child(1),
.brawler-tabs > input:nth-of-type(2):checked ~ .brawler-tabs__nav label:nth-child(2),
.brawler-tabs > input:nth-of-type(3):checked ~ .brawler-tabs__nav label:nth-child(3),
.brawler-tabs > input:nth-of-type(4):checked ~ .brawler-tabs__nav label:nth-child(4),
.brawler-tabs > input:nth-of-type(5):checked ~ .brawler-tabs__nav label:nth-child(5),
.brawler-tabs > input:nth-of-type(6):checked ~ .brawler-tabs__nav label:nth-child(6) {
    border-color: color-mix(in srgb, var(--brawler-rarity) 55%, #cad3dd);
    background: color-mix(in srgb, var(--brawler-rarity) 10%, #ffffff);
}

.brawler-tabs > input:nth-of-type(1):checked ~ .brawler-tabs__panels .brawler-section:nth-child(1),
.brawler-tabs > input:nth-of-type(2):checked ~ .brawler-tabs__panels .brawler-section:nth-child(2),
.brawler-tabs > input:nth-of-type(3):checked ~ .brawler-tabs__panels .brawler-section:nth-child(3),
.brawler-tabs > input:nth-of-type(4):checked ~ .brawler-tabs__panels .brawler-section:nth-child(4),
.brawler-tabs > input:nth-of-type(5):checked ~ .brawler-tabs__panels .brawler-section:nth-child(5),
.brawler-tabs > input:nth-of-type(6):checked ~ .brawler-tabs__panels .brawler-section:nth-child(6),
.brawler-tabs__panels > .brawler-section:only-child {
    display: grid;
}

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

.brawler-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brawler-section__header strong {
    display: block;
    font-size: 15px;
    color: var(--ink);
}

.brawler-section__header span {
    display: inline-flex;
    width: fit-content;
    margin-top: 4px;
    border-radius: 999px;
    padding: 4px 10px;
    background: color-mix(in srgb, var(--brawler-rarity) 12%, #ffffff);
    color: var(--brawler-rarity);
    font-size: 12px;
    font-weight: 700;
}

.brawler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
    gap: 10px;
}

.brawler-card {
    border: 1px solid color-mix(in srgb, var(--brawler-rarity) 50%, #d8dee8);
    border-radius: 8px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--brawler-rarity) 12%, #ffffff) 0%, #ffffff 100%);
    padding: 10px;
    display: grid;
    gap: 8px;
}

.brawler-card__top {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 8px;
    align-items: center;
}

.brawler-card__top img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brawler-card__top strong {
    display: block;
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
}

.brawler-card__rarity {
    display: inline-flex;
    width: fit-content;
    margin-top: 3px;
    border-radius: 999px;
    padding: 2px 7px;
    background: color-mix(in srgb, var(--brawler-rarity) 14%, #ffffff);
    color: var(--brawler-rarity);
    font-size: 11px;
    font-weight: 800;
}

.brawler-card__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}

.brawler-card__stats span {
    display: grid;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--muted);
    font-size: 11px;
}

.brawler-card__stats strong {
    color: var(--ink);
    font-size: 13px;
}

.brawler-skill-group {
    display: grid;
    gap: 5px;
}

.brawler-skill-group > span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.brawler-skill-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(56px, 1fr));
    gap: 6px;
}

.brawler-skill {
    display: grid;
    justify-items: center;
    gap: 3px;
    min-width: 0;
}

.brawler-skill img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--line);
}

.brawler-skill small {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.15;
    text-align: center;
    word-break: break-word;
}

.spec-list div,
.checkout-panel,
.order-summary,
.payment-box,
.delivery-section,
.refund-section,
.blog-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.spec-list div {
    padding: 16px;
}

.spec-list dt {
    color: var(--muted);
    font-size: 13px;
}

.spec-list dd {
    margin: 4px 0 0;
    font-weight: 780;
}

.product-source-notices {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.product-source-notice {
    border: 1px solid rgba(20, 148, 104, .22);
    border-radius: 12px;
    background: rgba(236, 253, 245, .72);
    color: #245546;
    font-size: 14px;
    line-height: 1.55;
    padding: 14px 16px;
}

.product-source-notice--warning {
    border-color: rgba(245, 158, 11, .28);
    background: rgba(255, 251, 235, .8);
    color: #6b4a11;
}

.checkout-panel {
    align-self: start;
    display: grid;
    gap: 22px;
    padding: 28px;
}

.checkout-form {
    display: grid;
    gap: 14px;
}

.stack-form {
    /* Единая сетка форм кабинета, авторизации и гостевой ссылки без привязки к JS-компонентам. */
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.inline-choice {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    gap: 10px;
}

.inline-choice input {
    width: 18px;
    min-height: 18px;
}

.payment-methods {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    border: 0;
}

.payment-methods legend {
    margin: 0 0 2px;
    color: var(--text);
    font-weight: 760;
}

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

.payment-method-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 14px;
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    background: var(--surface);
    cursor: pointer;
    transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.payment-method-option input {
    width: 18px;
    min-height: 18px;
    accent-color: var(--accent);
    flex: 0 0 auto;
}

.payment-method-option span {
    display: grid;
    gap: 4px;
}

.payment-method-option strong {
    color: var(--text);
    font-size: 15px;
    line-height: 1.25;
}

.payment-method-option small {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.payment-method-option:has(input:checked) {
    border-color: color-mix(in srgb, var(--accent) 55%, white);
    background: color-mix(in srgb, var(--accent) 8%, white);
    box-shadow: 0 14px 28px rgba(10, 154, 111, 0.12);
}

.recaptcha-box {
    min-height: 78px;
}

.form-error {
    margin: 0;
    color: var(--danger);
    font-weight: 720;
}

.unavailable-box {
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid #e8b8b4;
    border-radius: 8px;
    background: #fff8f7;
}

.unavailable-box p {
    margin: 0;
    color: var(--muted);
}

.related {
    padding: 24px 0 86px;
}

.related h2,
.delivery-section h2,
.refund-section h2,
.order-summary h2 {
    margin: 0 0 6px;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.08;
}

.order-page,
.simple-page,
.article-page {
    padding: 72px 0 96px;
}

.info-page {
    width: min(1240px, calc(100% - 36px));
    margin: 0 auto;
    padding: 56px 0 96px;
}

.info-page__hero {
    margin-bottom: 24px;
    padding: 34px 30px 36px;
}

.info-page__hero h1 {
    margin: 0;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.12;
}

.info-page__hero p:not(.eyebrow) {
    max-width: 760px;
    margin-top: 12px;
    color: var(--muted);
}

.info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.9fr);
    gap: 18px;
    align-items: start;
}

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

.info-stack {
    display: grid;
    gap: 18px;
}

.info-stack > .data-panel,
.info-aside.data-panel {
    padding: 24px;
}

.info-stack > .info-card,
.info-stack > .data-panel,
.info-aside,
.info-card {
    overflow: visible;
}

.info-aside {
    position: sticky;
    top: 24px;
}

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

.info-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(250, 252, 251, 0.78);
    padding: 16px 18px;
    box-shadow: 0 8px 22px rgba(17, 24, 20, 0.04);
}

.info-stack > .info-card {
    padding: 24px;
}

.info-stack > .info-card > h2,
.info-card h2 {
    margin: 0 0 16px;
    font-size: clamp(24px, 2.2vw, 32px);
    line-height: 1.18;
}

.info-stack > .data-panel .section-head {
    margin-bottom: 18px;
}

.info-stack > .data-panel .section-head h2 {
    line-height: 1.18;
}

.info-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 17px;
    line-height: 1.35;
}

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

.info-card p + p,
.info-card p + .info-list,
.info-card .info-list + p {
    margin-top: 10px;
}

.info-list {
    margin: 10px 0 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.65;
}

.info-list li + li {
    margin-top: 6px;
}

.info-card a {
    color: var(--text);
}

.account-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
    margin-top: 28px;
}

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

.account-section {
    margin-top: 20px;
}

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

.account-nav-tile {
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.account-nav-tile:hover {
    border-color: rgba(15, 143, 102, 0.22);
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.06);
    transform: translateY(-1px);
}

.account-nav-tile strong {
    font-size: 16px;
    line-height: 1.3;
}

.account-nav-tile span {
    color: var(--muted);
    line-height: 1.6;
}

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

.notification-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
}

.notification-card--unread {
    border-color: rgba(15, 143, 102, 0.24);
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.05);
}

.notification-card__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.notification-card__head strong {
    font-size: 17px;
    line-height: 1.35;
}

.notification-card__head span {
    font-size: 12px;
    color: var(--muted);
    white-space: nowrap;
}

.notification-card__main p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.notification-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

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

.account-records {
    display: grid;
    gap: 12px;
}

.account-record-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
}

.account-record-card--link,
.account-record-card--order {
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.account-record-card--link:hover,
.account-record-card--order:hover {
    border-color: rgba(15, 143, 102, 0.22);
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.06);
    transform: translateY(-1px);
}

.account-record-card__copy,
.account-record-card__meta {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.account-record-card__copy span {
    display: grid;
    gap: 4px;
    font-weight: 760;
    color: var(--ink);
}

.account-record-card__copy small,
.account-record-card__meta small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.account-record-card__meta {
    justify-items: end;
    text-align: right;
}

.account-record-card__meta--stack {
    min-width: 140px;
}

.account-record-card__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.account-list__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.account-list__row strong {
    text-align: right;
}

.account-list__row--link {
    color: inherit;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.account-list__row--link:hover {
    border-color: rgba(15, 143, 102, 0.3);
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.06);
    transform: translateY(-1px);
}

.account-list__primary,
.account-list__primary span {
    display: grid;
    gap: 4px;
}

.account-list__primary small {
    color: var(--muted);
    font-size: 12px;
}

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

.order-link {
    transition: color 160ms ease;
}

.order-link:hover {
    color: var(--accent);
}

.order-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 392px;
    gap: 24px;
    margin-top: 28px;
}

.order-layout--single {
    grid-template-columns: minmax(0, 1fr);
}

.order-summary,
.payment-box,
.delivery-section,
.refund-section {
    padding: 28px;
}

.order-progress {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
    gap: 20px;
    margin-top: 24px;
    padding: 22px;
}

.order-progress__label {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.order-progress strong {
    display: block;
    margin-top: 4px;
    font-size: 20px;
}

.order-progress p {
    margin: 8px 0 0;
    color: var(--muted);
}

.order-progress ol {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.order-progress li {
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--muted);
    font-weight: 760;
}

.order-progress li.is-active {
    border-color: var(--accent);
    color: var(--ink);
    background: rgba(16, 185, 129, 0.08);
}

.order-progress li.is-done {
    color: var(--accent);
}

.payment-box {
    display: grid;
    gap: 16px;
    align-self: start;
}

.order-line,
.order-total {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.order-total {
    border-bottom: 0;
    font-size: 20px;
}

.order-line__link {
    margin-top: 6px;
}

.order-line__link a {
    color: var(--accent);
    font-size: 14px;
    font-weight: 760;
}

.order-items-panel {
    display: grid;
    gap: 18px;
}

.order-items-panel__head {
    margin-bottom: 0;
}

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

.order-item-card {
    display: grid;
    gap: 18px;
    padding: 22px 24px;
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    background: var(--panel-surface);
    box-shadow: var(--panel-shadow-soft);
}

.order-item-card__main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.order-item-card__copy {
    display: grid;
    gap: 6px;
}

.order-item-card__eyebrow {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.order-item-card h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
}

.order-item-card__price {
    font-size: 18px;
    line-height: 1.15;
    white-space: nowrap;
}

.order-item-card__facts {
    gap: 14px;
}

.order-item-card__reason {
    grid-column: 1 / -1;
}

.order-item-card__footer {
    display: flex;
    justify-content: flex-start;
    padding-top: 2px;
    border-top: 1px solid var(--line);
}

.order-item-card__footer .button {
    min-width: 220px;
}

.warranty-panel {
    display: grid;
    gap: 18px;
}

.warranty-panel__head {
    margin-bottom: 0;
}

.warranty-stack {
    display: grid;
    gap: 14px;
}

.warranty-card {
    border-radius: 14px;
}

.warranty-support-card {
    gap: 14px;
}

.warranty-support-card__number {
    display: grid;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    background: #f9fbfa;
}

.warranty-support-card__copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.support-center .warranty-stack {
  gap: 16px;
}

.support-thread {
  display: grid;
  gap: 12px;
}

.support-message {
  border: 1px solid rgba(18, 23, 22, 0.12);
  border-radius: 16px;
  padding: 16px 18px;
  background: #fff;
}

.support-message--staff {
  background: rgba(18, 157, 112, 0.06);
  border-color: rgba(18, 157, 112, 0.24);
}

.support-message__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 8px;
  font-size: 13px;
  color: #64748b;
}

.support-message__meta strong {
  font-size: 14px;
  color: #121716;
}

.support-message__body {
  font-size: 15px;
  line-height: 1.65;
  color: #1f2937;
}

.support-compose {
  border: 1px solid rgba(18, 23, 22, 0.10);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.support-compose textarea {
  min-height: 132px;
}

.warranty-support-card__copy strong {
    margin: 0;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.warranty-support-card p {
    margin: 0;
}

.warranty-support-card .delivery-link-row {
    margin-top: 2px;
}

.delivery-section,
.refund-section,
.blog-list {
    margin-top: 22px;
}

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

.delivery-card {
    padding: 22px;
    border: 1px solid var(--panel-border);
    border-radius: 14px;
    background: var(--panel-surface);
    box-shadow: var(--panel-shadow-soft);
}

.delivery-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.delivery-card__head strong {
    display: block;
    font-size: 18px;
}

.delivery-card__head p,
.delivery-card__empty {
    margin: 6px 0 0;
    color: var(--muted);
}

.delivery-credentials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.delivery-credentials > div {
    min-width: 0;
    padding: 16px 18px;
}

.delivery-credentials > .delivery-credentials__wide {
    grid-column: 1 / -1;
}

.delivery-credentials dt {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 720;
}

.delivery-credentials dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.delivery-credentials__value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.delivery-credentials code {
    display: inline-block;
    padding: 2px 0;
    color: var(--ink);
    font: inherit;
    font-weight: 760;
}

.copy-button {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 760;
}

.copy-button--icon {
    display: inline-grid;
    width: 32px;
    min-width: 32px;
    padding: 0;
    place-items: center;
}

.copy-button__icon {
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
}

.copy-button:hover {
    border-color: rgba(15, 143, 102, 0.42);
    color: var(--accent);
}

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

.delivery-credentials a {
    color: var(--accent);
    font-weight: 760;
}

.order-heading--delivery {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 420px);
    gap: 24px;
    align-items: start;
}

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

.order-heading__facts div {
    padding: 18px 20px;
}

.order-heading__facts span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.order-heading__facts strong {
    display: block;
    color: var(--ink);
    font-size: 18px;
    font-weight: 800;
}

.order-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px;
    align-items: start;
    margin-top: 22px;
}

.order-showcase__aside {
    position: sticky;
    top: 110px;
}

.delivery-section--primary {
    margin-top: 0;
    padding: 28px;
}

.delivery-list--showcase {
    gap: 16px;
    margin-top: 18px;
}

.order-live-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(15, 115, 85, 0.2);
    border-radius: 8px;
    background: rgba(15, 115, 85, 0.06);
}

.order-live-note strong {
    display: block;
    margin-bottom: 4px;
}

.order-live-note p {
    margin: 0;
    color: var(--muted);
}

.order-live-note__dot {
    width: 12px;
    height: 12px;
    margin-top: 4px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(15, 115, 85, 0.35);
    animation: order-live-pulse 1.8s infinite;
}

.delivery-list--showcase .delivery-card {
    padding: 22px;
    box-shadow: 0 16px 34px rgba(17, 24, 20, 0.06);
}

.section-subtitle {
    margin: 8px 0 0;
    color: var(--muted);
}

.delivery-empty {
    margin-top: 18px;
    padding: 22px;
    border: 1px dashed var(--line);
    border-radius: 8px;
    background: #f8fbf9;
}

.delivery-empty strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.delivery-empty p {
    margin: 0;
    color: var(--muted);
}

.order-tip {
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f7faf8;
}

.order-tip strong {
    display: block;
    margin-bottom: 6px;
}

.order-tip p {
    margin: 0;
    color: var(--muted);
}

.order-tip--success {
    border-color: rgba(15, 115, 85, 0.28);
    background: rgba(15, 115, 85, 0.08);
}

.order-tip--warning {
    border-color: rgba(213, 136, 0, 0.28);
    background: rgba(213, 136, 0, 0.08);
}

.order-tip--danger {
    border-color: rgba(184, 58, 58, 0.24);
    background: rgba(184, 58, 58, 0.07);
}

.order-quick-stats {
    display: grid;
    gap: 10px;
}

.order-quick-stats__item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
}

.order-quick-stats__item:first-child {
    padding-top: 0;
    border-top: 0;
}

.order-quick-stats__item span {
    color: var(--muted);
}

.delivery-link-row {
    display: grid;
    gap: 10px;
}

.delivery-link-row .button {
    width: 100%;
    justify-content: center;
}

.delivery-card__head .copy-button--all {
    flex-shrink: 0;
}

@keyframes order-live-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(15, 115, 85, 0.35);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(15, 115, 85, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(15, 115, 85, 0);
    }
}

.simple-page {
    max-width: 820px;
}

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

.blog-item a {
    display: grid;
    gap: 8px;
    padding: 22px;
}

.blog-item time,
.article-page time {
    color: var(--accent);
    font-weight: 800;
}

.blog-item h2 {
    margin: 0;
    letter-spacing: 0;
}

.blog-item p {
    margin: 0;
    color: var(--muted);
}

.article-page {
    max-width: 860px;
}

.article-body {
    color: #2c332f;
    font-size: 18px;
}

.article-body img {
    border-radius: 8px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    padding: 36px clamp(18px, 5vw, 72px);
    border-top: 1px solid var(--line);
    background: #fff;
}

.site-footer p {
    max-width: 560px;
    margin: 8px 0 0;
    color: var(--muted);
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes image-settle {
    to {
        transform: scale(1);
    }
}

@media (max-width: 980px) {
    /* На планшетах боковая навигация становится горизонтальной, чтобы каталог не сжимался. */
    .catalog-shell,
    .filter-showcase,
    .product-page,
    .order-layout,
    .order-showcase,
    .order-progress,
    .account-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-aside {
        position: static;
    }

    .order-heading--delivery {
        grid-template-columns: 1fr;
    }

    .order-showcase__aside {
        position: static;
    }

    .category-rail {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .category-link {
        flex: 0 0 auto;
    }

    .catalog-tools,
    .filter-grid,
    .product-grid,
    .product-grid--compact,
    .details-list,
    .spec-list {
        grid-template-columns: 1fr 1fr;
    }

    .latest-news {
        align-items: flex-start;
        flex-direction: column;
    }

    .checkout-panel {
        width: min(100%, 520px);
    }

    .genshin-browser {
        grid-template-columns: 1fr;
    }

    .genshin-browser__list {
        grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
        max-height: 340px;
    }

    .genshin-panel__character {
        right: 8%;
        max-width: 62%;
    }

    .hero h1 {
        font-size: 62px;
    }

    .product-main h1,
    .order-heading h1,
    .simple-page h1,
    .article-page h1 {
        font-size: 48px;
    }
}

@media (max-width: 680px) {
    /* На мобильных все ключевые блоки складываются в одну колонку и сохраняют крупные кликабельные зоны. */
    .site-header,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero {
        min-height: 620px;
    }

    .hero--catalog-banner {
        height: clamp(320px, 58vw, 440px);
        aspect-ratio: auto;
        min-height: 0;
    }

    .hero__content {
        margin: 0 auto;
    }

    .hero--catalog-banner .hero__content {
        inset: auto 18px 24px 18px;
        width: auto;
        margin: 0;
    }

    .hero__shade {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.52));
    }

    .hero--catalog-banner .hero__shade {
        background: linear-gradient(180deg, rgba(4, 10, 28, 0.16), rgba(4, 10, 28, 0.72));
    }

    .hero--catalog-banner h1 {
        font-size: 34px;
    }

    .hero--catalog-banner p:not(.eyebrow) {
        max-width: 420px;
        margin-bottom: 16px;
        font-size: 15px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .product-main h1,
    .order-heading h1,
    .simple-page h1,
    .article-page h1 {
        font-size: 36px;
    }

    .catalog-tools,
    .filter-grid,
    .product-grid,
    .product-grid--compact,
    .spec-list {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: 190px;
    }

    .details-list > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

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

    .order-line,
    .order-total {
        flex-direction: column;
    }

    .order-item-card,
    .warranty-support-card__number {
        padding: 18px;
    }

    .order-item-card__main,
    .warranty-support-card__copy {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-item-card__price {
        white-space: normal;
    }

    .delivery-credentials {
        grid-template-columns: 1fr;
    }

    .order-heading__facts {
        grid-template-columns: 1fr;
    }

    .delivery-section--primary,
    .delivery-list--showcase .delivery-card {
        padding: 20px;
    }

    .genshin-browser {
        padding: 8px;
    }

    .genshin-browser__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-height: 310px;
    }

    .genshin-tile {
        min-height: 98px;
    }

    .genshin-panel__hero {
        min-height: 250px;
    }

    .genshin-panel__character {
        right: -4%;
        max-width: 72%;
    }

    .genshin-constellations {
        right: 10px;
        gap: 7px;
    }

    .genshin-constellations span {
        width: 34px;
        height: 34px;
    }

    .genshin-artifacts {
        grid-template-columns: 1fr;
    }

.latest-news .button {
        width: 100%;
    }
}

.reviews-page {
    display: grid;
    gap: 28px;
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: 56px 0 88px;
}

.reviews-hero-panel {
    display: grid;
    gap: 18px;
    padding: 28px 30px;
}

.reviews-hero-panel__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.reviews-hero-panel__meta span {
    padding: 8px 12px;
    border: 1px solid rgba(15, 115, 85, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: #2f4b3f;
    font-size: 14px;
}

.reviews-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 20px;
    align-items: end;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.reviews-intro__copy {
    display: grid;
    gap: 10px;
    max-width: 680px;
}

.reviews-intro__copy h1,
.reviews-intro__copy p {
    margin: 0;
}

.reviews-intro__copy h1 {
    font-size: clamp(28px, 4.4vw, 46px);
    line-height: 1.02;
    letter-spacing: 0;
}

.reviews-intro__copy p:not(.eyebrow) {
    max-width: 600px;
    font-size: 15px;
    line-height: 1.65;
}

.reviews-intro__summary {
    display: grid;
    gap: 4px;
    justify-items: end;
    text-align: right;
    align-content: start;
}

.reviews-intro__summary strong {
    font-size: clamp(30px, 4vw, 52px);
    line-height: 0.95;
}

.reviews-intro__summary span {
    color: var(--muted);
    font-size: 13px;
}

.reviews-stage {
    display: grid;
    gap: 18px;
}

.reviews-stage__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    align-items: start;
}

.reviews-stage__head h2,
.reviews-stage__head p {
    margin: 0;
}

.reviews-stage__head h2 {
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.08;
}

.reviews-grid {
    column-count: 2;
    column-gap: 22px;
}

.reviews-grid--single {
    column-count: 1;
}

.reviews-grid--single .review-card {
    max-width: 920px;
}

.review-card {
    display: grid;
    gap: 14px;
    padding: 26px;
    position: relative;
    overflow: hidden;
    break-inside: avoid;
    margin: 0 0 22px;
}

.review-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), rgba(15, 143, 102, 0.12));
}

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

.review-card__identity {
    display: grid;
    gap: 8px;
}

.review-card__author {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.review-card__head strong {
    font-size: 18px;
    line-height: 1.2;
}

.review-card__author span,
.review-card__category {
    color: var(--muted);
    font-size: 14px;
}

.review-card__head p {
    margin: 0;
    color: var(--ink);
    font-weight: 600;
    font-size: 15px;
}

.review-card__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    padding-top: 2px;
}

.review-card__body {
    margin: 0;
    color: #152118;
    line-height: 1.75;
    font-size: 15px;
    max-width: 60ch;
}

.review-card__reply {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border: 1px solid rgba(15, 115, 85, 0.14);
    border-radius: 8px;
    background: rgba(15, 115, 85, 0.045);
}

.review-card__reply-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #0f7355;
}

.review-card__reply p {
    margin: 0;
    color: #274034;
    line-height: 1.6;
}

.review-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    gap: 12px;
    color: #68746d;
    font-size: 13px;
    padding-top: 14px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.review-stars {
    display: inline-flex;
    gap: 4px;
    font-size: 18px;
    line-height: 1;
    color: #cfd7d1;
}

.review-stars span.is-active {
    color: #f1b92b;
}

.review-stars--inline {
    vertical-align: middle;
    margin-left: 6px;
}

.reviews-pagination {
    display: flex;
    justify-content: center;
    padding-top: 4px;
}

.review-section__head {
    margin-bottom: 8px;
}

.review-section--full {
    margin-top: 28px;
}

.review-form {
    gap: 18px;
}

.review-form__top {
    display: grid;
    grid-template-columns: minmax(0, 240px);
    gap: 18px;
}

.review-form__field {
    display: grid;
    gap: 8px;
}

.review-form__field span {
    font-weight: 600;
    color: var(--ink);
}

.review-form__field small {
    color: var(--muted);
    line-height: 1.5;
}

.review-form select,
.review-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 12px 14px;
    color: var(--ink);
    font: inherit;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.review-form textarea {
    min-height: 160px;
    resize: vertical;
}

.review-form select:focus,
.review-form textarea:focus {
    outline: none;
    border-color: rgba(15, 115, 85, 0.48);
    box-shadow: 0 0 0 3px rgba(15, 115, 85, 0.12);
}

.review-form__footer {
    padding: 14px 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: #f7faf8;
}

.review-form .button {
    width: min(100%, 320px);
}

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

.review-panel__body {
    display: grid;
    gap: 14px;
}

.review-panel__text,
.review-panel__note {
    margin: 0;
    line-height: 1.65;
}

.review-panel__reply {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border: 1px solid rgba(15, 115, 85, 0.18);
    border-radius: 8px;
    background: rgba(15, 115, 85, 0.05);
}

.review-panel__reply-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0f7355;
}

.review-panel__reply p {
    margin: 0;
    color: var(--ink);
}

@media (max-width: 720px) {
    .reviews-intro {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .reviews-page {
        width: min(100%, calc(100% - 24px));
        padding: 40px 0 68px;
    }

    .reviews-hero-panel {
        padding: 22px 18px;
    }

    .reviews-intro__summary {
        justify-items: start;
        text-align: left;
    }

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

    .review-card__head,
    .review-card__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-card {
        padding: 22px 20px;
    }

    .review-card__body {
        font-size: 15px;
    }
}

@media (max-width: 1040px) {
    .reviews-grid {
        column-count: 1;
    }
}

.site-nav__cart-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-nav__badge {
    display: inline-flex;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(15, 143, 102, 0.12);
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 800;
}

.product-purchase-actions,
.product-cart-state,
.cart-summary__actions,
.cart-checkout-form {
    display: grid;
    gap: 12px;
}

.product-purchase-actions__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.product-purchase-actions__form {
    height: 100%;
}

.product-purchase-actions__form .button {
    min-height: 52px;
}

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

.product-card__actions form {
    margin: 0;
}

.product-cart-state__label {
    color: var(--muted);
    font-size: 14px;
}

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

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

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

.cart-section-head span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.cart-section-head--spaced {
    margin-top: 28px;
}

.cart-section-head--compact {
    margin-bottom: 14px;
}

.cart-items,
.cart-checkout-items {
    display: grid;
    gap: 16px;
}

.cart-item-card,
.cart-checkout-item,
.cart-empty-state,
.cart-verified-box {
    border-color: var(--panel-border);
    border-radius: 16px;
    background: var(--panel-surface);
    box-shadow: var(--panel-shadow-soft);
}

.cart-item-card {
    display: grid;
    gap: 16px;
    padding: 22px 24px;
}

.cart-item-card--muted {
    opacity: 0.82;
}

.cart-item-card__main,
.cart-item-card__actions,
.cart-checkout-item {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.cart-item-card__copy,
.cart-checkout-item__copy {
    display: grid;
    gap: 6px;
}

.cart-item-card__copy h2,
.cart-checkout-item__copy strong {
    margin: 0;
    font-size: 19px;
    line-height: 1.35;
}

.cart-item-card__copy h2 a {
    color: inherit;
    text-decoration: none;
}

.cart-item-card__meta,
.cart-item-card__status,
.cart-checkout-item__copy span {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.cart-item-card__price,
.cart-checkout-item__price {
    font-size: 18px;
    white-space: nowrap;
}

.cart-item-card__actions {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
}

.button--danger-soft {
    color: var(--danger);
    border-color: rgba(182, 64, 58, 0.18);
    background: rgba(182, 64, 58, 0.04);
}

.button--danger-soft:hover {
    border-color: rgba(182, 64, 58, 0.3);
    background: rgba(182, 64, 58, 0.08);
}

.cart-summary {
    position: sticky;
    top: 94px;
    display: grid;
    gap: 18px;
}

.cart-summary__stack {
    display: grid;
    gap: 12px;
}

.cart-summary__stat {
    display: grid;
    gap: 8px;
}

.cart-summary__stat span {
    display: block;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 760;
}

.cart-summary__stat strong {
    display: block;
    margin: 0;
    font-size: 22px;
    line-height: 1.1;
}

.cart-summary__stat--narrative strong {
    font-size: 16px;
    line-height: 1.4;
}

.cart-summary__note {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border: 1px solid rgba(22, 26, 24, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
}

.cart-summary__note strong,
.cart-summary__note p {
    margin: 0;
}

.cart-summary__note p {
    color: var(--muted);
    line-height: 1.65;
}

.cart-empty-state {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 28px;
    text-align: center;
}

.cart-empty-state strong {
    font-size: 24px;
}

.cart-empty-state p {
    margin: 12px 0 0;
    color: var(--muted);
}

.cart-checkout-layout {
    align-items: start;
}

.cart-checkout-summary {
    display: grid;
    gap: 20px;
}

.cart-checkout-item {
    padding: 18px 20px;
    box-shadow: none;
}

.cart-verified-box {
    display: grid;
    gap: 16px;
    padding: 22px 24px;
}

.cart-verified-box__totals {
    display: grid;
    gap: 12px;
}

.notice--soft {
    background: #f7faf8;
}

@media (max-width: 980px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media (max-width: 720px) {
    .payment-method-grid {
        grid-template-columns: 1fr;
    }

    .cart-item-card,
    .cart-checkout-item,
    .cart-empty-state,
    .cart-verified-box {
        padding: 18px;
    }

    .cart-item-card__main,
    .cart-item-card__actions,
    .cart-checkout-item,
    .cart-section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-purchase-actions__row,
    .product-card__actions,
    .account-nav-grid {
        grid-template-columns: 1fr;
    }

    .cart-item-card__price,
    .cart-checkout-item__price {
        white-space: normal;
    }

    .account-list__row {
        flex-direction: column;
        align-items: flex-start;
    }

    .account-list__row strong {
        text-align: left;
    }

    .account-record-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .account-record-card__meta {
        justify-items: start;
        text-align: left;
    }

    .account-record-card__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .notification-card {
        grid-template-columns: 1fr;
    }

    .notification-card__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .notification-card__actions {
        justify-content: flex-start;
    }
}
