:root {
    --ink: #170d25;
    --ink-soft: #685b73;
    --purple-950: #140721;
    --purple-900: #201035;
    --purple-800: #311052;
    --purple-700: #4b1679;
    --purple-600: #6923a3;
    --purple-500: #8f43c3;
    --cyan: #27d2db;
    --cyan-soft: #dcfbfb;
    --gold: #f1bd54;
    --gold-light: #ffe6a6;
    --gold-dark: #9f6817;
    --rose: #ef5f9a;
    --white: #ffffff;
    --paper: #faf8fc;
    --line: #e9e2ee;
    --success: #138a6b;
    --danger: #c83c66;
    --shadow-sm: 0 12px 35px rgba(38, 15, 57, 0.08);
    --shadow-md: 0 24px 70px rgba(37, 11, 59, 0.14);
    --shadow-purple: 0 24px 70px rgba(84, 25, 125, 0.33);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body.is-nav-open {
    overflow: hidden;
}

button,
input {
    font: inherit;
}

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

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

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

.ui-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    fill: currentColor;
    vertical-align: -0.125em;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3,
.brand__word,
.price-block strong,
.order-card__total strong {
    letter-spacing: -0.035em;
}

[hidden] {
    display: none !important;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: absolute;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header--solid,
.site-header.is-scrolled {
    position: sticky;
    top: 0;
    color: var(--white);
    background: rgba(27, 10, 43, 0.96);
    box-shadow: 0 10px 35px rgba(17, 6, 28, 0.18);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
    position: fixed;
}

.site-header__inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.brand__logo {
    width: 218px;
    height: auto;
    max-width: none;
    filter: brightness(0) invert(1) drop-shadow(0 4px 14px rgba(237, 28, 36, 0.18));
}

.brand--footer .brand__logo {
    width: 198px;
}

.brand__mark {
    position: relative;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 2px solid rgba(255, 225, 166, 0.82);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 240, 202, 0.18), rgba(235, 175, 67, 0.05));
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.brand__mark::before {
    content: "";
    width: 11px;
    height: 16px;
    border: 2px solid var(--gold-light);
    border-radius: 70% 35% 65% 40%;
    transform: rotate(45deg);
}

.brand__mark::after {
    position: absolute;
    content: "";
    top: 7px;
    left: 18px;
    width: 2px;
    height: 14px;
    border-radius: 10px;
    background: var(--gold-light);
}

.brand__word {
    color: #fff7e9;
    font-size: 23px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 700;
}

.main-nav > a:not(.header-cart) {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}

.main-nav > a:not(.header-cart):hover {
    color: var(--gold-light);
}

.header-cart {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    gap: 8px;
    padding: 8px 12px 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.header-cart:hover,
.header-cart.is-active {
    border-color: rgba(255, 220, 146, 0.48);
    background: rgba(255, 255, 255, 0.13);
}

.header-cart__icon {
    width: 19px;
    height: 19px;
    transform: none;
}

.cart-count {
    display: grid;
    min-width: 24px;
    height: 24px;
    place-items: center;
    padding-inline: 5px;
    border-radius: 999px;
    color: #32174a;
    background: var(--gold);
    font-size: 11px;
    font-weight: 900;
}

.cart-count.bump {
    animation: bump 0.35s ease;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    color: inherit;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin-block: 4px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
    position: relative;
    min-height: 820px;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 7% 17%, rgba(123, 49, 170, 0.48), transparent 28%),
        radial-gradient(circle at 87% 48%, rgba(34, 206, 215, 0.18), transparent 27%),
        linear-gradient(126deg, #1b092b 0%, #35105c 52%, #18102b 100%);
}

.hero::before {
    position: absolute;
    content: "";
    inset: 0;
    opacity: 0.24;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero::after {
    position: absolute;
    content: "";
    top: -40%;
    right: -18%;
    width: 820px;
    height: 820px;
    border: 1px solid rgba(255, 225, 159, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.012), 0 0 0 160px rgba(255, 255, 255, 0.01);
}

.hero__grid {
    position: relative;
    z-index: 3;
    display: grid;
    min-height: 820px;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 64px;
    padding-top: 125px;
    padding-bottom: 72px;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
}

.hero__glow--one {
    top: 180px;
    left: 46%;
    width: 260px;
    height: 260px;
    background: rgba(180, 59, 213, 0.17);
}

.hero__glow--two {
    right: 2%;
    bottom: 3%;
    width: 290px;
    height: 290px;
    background: rgba(44, 219, 223, 0.11);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--purple-600);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow {
    color: var(--gold-light);
}

.eyebrow span {
    width: 27px;
    height: 1px;
    background: currentColor;
}

.hero h1 {
    max-width: 650px;
    margin: 22px 0 22px;
    font-size: clamp(52px, 5.3vw, 76px);
    font-weight: 850;
    line-height: 0.99;
}

.hero h1 em,
.closing-cta h2 em {
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.hero__lead {
    max-width: 590px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.65;
}

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

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-weight: 850;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button:focus-visible,
.main-nav a:focus-visible,
.text-link:focus-visible,
.quantity button:focus-visible,
.remove-item:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(41, 211, 219, 0.58);
    outline-offset: 3px;
}

.button--gold {
    color: #301839;
    background: linear-gradient(135deg, #ffe29b, #e9aa36);
    box-shadow: 0 14px 34px rgba(217, 157, 48, 0.22), inset 0 1px rgba(255, 255, 255, 0.6);
}

.button--gold:hover {
    box-shadow: 0 18px 44px rgba(217, 157, 48, 0.32), inset 0 1px rgba(255, 255, 255, 0.6);
}

.button--ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.07);
}

.button--ghost:hover {
    border-color: rgba(255, 229, 166, 0.36);
    background: rgba(255, 255, 255, 0.11);
}

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

.button.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.play-icon {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    font-size: 8px;
}

.play-icon .ui-icon {
    width: 10px;
    height: 10px;
}

.hero__facts {
    display: grid;
    max-width: 610px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero__facts div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 22px 20px 0 0;
}

.hero__facts div + div {
    padding-left: 21px;
    border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.hero__facts strong {
    color: var(--gold-light);
    font-size: 27px;
    line-height: 1.1;
}

.hero__facts span {
    color: rgba(255, 255, 255, 0.53);
    font-size: 12px;
}

.hero-cards {
    position: relative;
    min-height: 590px;
    perspective: 1200px;
}

.hero-cards__orbit {
    position: absolute;
    top: 50%;
    left: 52%;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 224, 154, 0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.hero-cards__orbit::before,
.hero-cards__orbit::after {
    position: absolute;
    content: "";
    border: 1px dashed rgba(52, 220, 224, 0.13);
    border-radius: inherit;
}

.hero-cards__orbit::before {
    inset: 45px;
}

.hero-cards__orbit::after {
    inset: 105px;
}

.floating-ticket {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(255, 228, 171, 0.64);
    border-radius: 27px;
    background: #3f1860;
    box-shadow: var(--shadow-purple);
}

.floating-ticket img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-ticket::after {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.12), transparent 30% 75%, rgba(255, 213, 130, 0.11));
    pointer-events: none;
}

.floating-ticket--back {
    top: 30px;
    right: 3px;
    width: 340px;
    height: 340px;
    opacity: 0.73;
    transform: rotate(8deg) translateZ(-40px);
}

.floating-ticket--front {
    top: 180px;
    left: 2px;
    width: 405px;
    height: 405px;
    transform: rotate(-7deg) translateZ(30px);
}

.floating-ticket__badge {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 18px;
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    border: 4px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    color: #3a164f;
    background: var(--gold);
    box-shadow: 0 8px 20px rgba(26, 8, 37, 0.28);
    font-size: 17px;
    font-weight: 950;
}

.hero-note {
    position: absolute;
    z-index: 8;
    right: -10px;
    bottom: 45px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(30, 12, 47, 0.79);
    box-shadow: 0 15px 35px rgba(8, 3, 14, 0.25);
    backdrop-filter: blur(14px);
}

.hero-note__icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #183a36;
    background: var(--cyan);
    font-weight: 900;
}

.hero-note__icon .ui-icon {
    width: 18px;
    height: 18px;
}

.hero-note div {
    display: flex;
    flex-direction: column;
}

.hero-note strong {
    font-size: 13px;
}

.hero-note small {
    color: rgba(255, 255, 255, 0.54);
    font-size: 11px;
}

.hero__bottom-line {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), #bf72c9 52%, var(--cyan));
}

.trust-strip {
    color: #f4edf7;
    background: #231232;
}

.trust-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-strip__inner > div {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    font-size: 13px;
}

.trust-strip__inner > div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.trust-strip__inner span,
.trust-strip__inner .feature-icon {
    color: var(--gold);
    font-size: 20px;
}

.trust-strip__inner .feature-icon {
    width: 21px;
    height: 21px;
}

.section {
    padding-block: 110px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 55px;
    margin-bottom: 42px;
}

.section-heading h2,
.advantages__content > h2,
.terms__intro h2,
.closing-cta h2 {
    margin: 8px 0 0;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 850;
    line-height: 1.04;
}

.section-heading > p {
    max-width: 430px;
    margin-bottom: 4px;
    color: var(--ink-soft);
    line-height: 1.65;
}

.section-heading--center {
    display: block;
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading--center > p {
    margin: 16px auto 0;
}

.catalog {
    background:
        radial-gradient(circle at 5% 7%, rgba(127, 45, 176, 0.08), transparent 21%),
        var(--paper);
}

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

.product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 8px 26px rgba(42, 18, 58, 0.045);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
    z-index: 2;
    border-color: rgba(99, 31, 143, 0.22);
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.product-card--featured {
    border-color: rgba(209, 149, 46, 0.42);
    box-shadow: 0 14px 44px rgba(61, 19, 89, 0.1);
}

.product-card__flag {
    position: absolute;
    z-index: 5;
    top: 15px;
    left: 15px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    color: #321746;
    background: linear-gradient(135deg, #ffe6a8, #e9ae3f);
    box-shadow: 0 7px 18px rgba(31, 12, 45, 0.2);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-visual {
    position: relative;
    overflow: hidden;
    height: 220px;
    padding: 27px;
    background: linear-gradient(145deg, #28113e, #431564 60%, #251037);
}

.product-visual::before {
    position: absolute;
    content: "";
    inset: 0;
    opacity: 0.28;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.25) 1px, transparent 0);
    background-size: 17px 17px;
}

.product-visual--image {
    height: 260px;
    padding: 0;
    background: #2e1342;
}

.product-visual--image::before {
    z-index: 2;
    opacity: 1;
    background: linear-gradient(to top, rgba(26, 8, 39, 0.3), transparent 45%);
}

.product-visual--image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.product-card:hover .product-visual--image > img {
    transform: scale(1.035);
}

.voucher-tone--ruby-alt > img {
    filter: hue-rotate(24deg) saturate(0.92) brightness(0.98);
}

.voucher-tone--indigo-alt > img {
    filter: hue-rotate(-24deg) saturate(1.12) brightness(1.02);
}

.voucher-tone--teal-gold > img {
    filter: hue-rotate(12deg) saturate(1.08) brightness(1.03);
}

.voucher-tone--royal-gold > img {
    filter: hue-rotate(48deg) saturate(0.9) brightness(0.98);
}

.voucher-overlay {
    position: absolute;
    z-index: 3;
    inset: 0;
    color: #fff4d2;
    pointer-events: none;
    text-align: center;
}

.voucher-overlay__logo {
    position: absolute;
    top: 7%;
    left: 50%;
    width: 48%;
    height: auto;
    max-height: 34px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 3px 8px rgba(20, 5, 30, 0.55));
    transform: translateX(-50%);
}

.voucher-overlay__amount {
    position: absolute;
    top: 27%;
    right: 7%;
    left: 7%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    text-shadow: 0 3px 0 #5b2745, 0 7px 20px rgba(13, 3, 25, 0.75);
}

.voucher-overlay__amount strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(33px, 3.3vw, 45px);
    font-weight: 900;
    letter-spacing: -0.045em;
}

.voucher-overlay__amount span {
    margin-top: 5px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.14em;
}

.voucher-overlay > small {
    position: absolute;
    right: 12%;
    bottom: 5%;
    left: 12%;
    padding: 5px 8px;
    border: 1px solid rgba(255, 232, 179, 0.34);
    border-radius: 999px;
    color: #fff0c8;
    background: rgba(31, 8, 44, 0.68);
    box-shadow: 0 5px 18px rgba(14, 3, 23, 0.25);
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(7px);
}

.product-card--featured .voucher-overlay__logo {
    left: 58%;
    width: 40%;
}

.product-card--featured .voucher-overlay__amount strong {
    font-size: clamp(31px, 3vw, 41px);
}

.mini-ticket {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    padding: 17px 18px;
    border: 1px solid rgba(255, 230, 171, 0.58);
    border-radius: 17px;
    color: #fff5e5;
    background:
        radial-gradient(circle at 80% 82%, rgba(53, 218, 217, 0.22), transparent 25%),
        linear-gradient(135deg, #3f185d, #621f77 52%, #27244e);
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.03), 0 18px 28px rgba(13, 4, 21, 0.24);
    transform: rotate(-2deg);
}

.mini-ticket--2 { background: radial-gradient(circle at 80% 82%, rgba(53, 218, 217, 0.26), transparent 25%), linear-gradient(135deg, #27185a, #3b418b 52%, #241539); }
.mini-ticket--3 { background: radial-gradient(circle at 80% 82%, rgba(250, 180, 71, 0.28), transparent 25%), linear-gradient(135deg, #411349, #7c245a 52%, #29133e); }
.mini-ticket--4 { background: radial-gradient(circle at 80% 82%, rgba(53, 218, 217, 0.24), transparent 25%), linear-gradient(135deg, #192e52, #15566e 52%, #272040); }

.mini-ticket__top,
.mini-ticket__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.58);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.mini-logo {
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: 0.05em;
}

.mini-logo i {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 3px;
    border: 1px solid currentColor;
    border-radius: 50%;
    vertical-align: -1px;
}

.mini-ticket > strong {
    font-size: 30px;
    letter-spacing: -0.04em;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.22);
}

.mini-ticket__bottom span {
    width: 60%;
    height: 19px;
    opacity: 0.7;
    background: repeating-linear-gradient(90deg, #fff 0 1px, transparent 1px 3px);
}

.mini-ticket__bottom b {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 5px;
    color: #fff;
    font-size: 8px;
}

.discount-bubble {
    position: absolute;
    z-index: 4;
    right: 13px;
    bottom: 13px;
    display: grid;
    width: 61px;
    height: 61px;
    place-items: center;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #351748;
    background: var(--gold);
    box-shadow: 0 8px 22px rgba(23, 7, 34, 0.28);
    font-size: 16px;
    font-weight: 950;
}

.product-card__body {
    padding: 23px;
}

.product-card__title-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--line);
}

.product-card__type {
    display: block;
    margin-bottom: 2px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 700;
}

.product-card h3 {
    margin-bottom: 0;
    font-size: 23px;
    line-height: 1.2;
}

.fuel-tag {
    flex: 0 0 auto;
    padding: 5px 8px;
    border-radius: 999px;
    color: #23676d;
    background: var(--cyan-soft);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.price-block {
    display: grid;
    min-height: 85px;
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 0 10px;
    padding-block: 14px;
}

.price-block__old {
    grid-column: 1 / -1;
    color: #9a8ea3;
    font-size: 13px;
    text-decoration: line-through;
}

.price-block strong {
    font-size: 27px;
    line-height: 1.15;
}

.price-block small {
    align-self: center;
    color: var(--success);
    font-size: 10px;
    font-weight: 750;
}

.button--product {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    color: #fff;
    background: linear-gradient(135deg, var(--purple-800), var(--purple-600));
    box-shadow: 0 10px 26px rgba(71, 20, 107, 0.17);
}

.button--product b {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    color: var(--purple-800);
    background: var(--gold);
    font-size: 17px;
}

.button--product b .ui-icon {
    width: 13px;
    height: 13px;
}

.product-card__in-cart {
    min-height: 18px;
    padding-top: 7px;
    color: var(--success);
    font-size: 10px;
    font-weight: 800;
    text-align: center;
}

.how {
    color: #f9f4fb;
    background:
        radial-gradient(circle at 88% 10%, rgba(53, 215, 222, 0.1), transparent 24%),
        radial-gradient(circle at 3% 100%, rgba(143, 54, 183, 0.22), transparent 25%),
        #1c0c2a;
}

.how .section-kicker {
    color: var(--gold);
}

.how .section-heading > p {
    color: rgba(255, 255, 255, 0.55);
}

.steps {
    display: grid;
    grid-template-columns: 1fr 72px 1fr 72px 1fr;
    align-items: center;
}

.step-card {
    position: relative;
    min-height: 290px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.035);
}

.step-card__number {
    position: absolute;
    top: 19px;
    right: 21px;
    color: rgba(255, 255, 255, 0.11);
    font-size: 36px;
    font-weight: 950;
}

.step-card__icon {
    display: grid;
    width: 56px;
    height: 56px;
    margin-bottom: 29px;
    place-items: center;
    border: 1px solid rgba(255, 223, 153, 0.32);
    border-radius: 17px;
    color: var(--gold);
    background: rgba(255, 224, 156, 0.07);
    font-size: 23px;
    font-weight: 800;
}

.step-card__icon .ui-icon {
    width: 26px;
    height: 26px;
}

.step-card h3 {
    margin-bottom: 10px;
    font-size: 21px;
}

.step-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 14px;
    line-height: 1.65;
}

.steps__connector {
    position: relative;
    height: 1px;
    background: linear-gradient(90deg, rgba(241, 189, 84, 0.15), rgba(241, 189, 84, 0.6), rgba(241, 189, 84, 0.15));
}

.steps__connector span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border: 1px solid rgba(241, 189, 84, 0.4);
    border-radius: 50%;
    color: var(--gold);
    background: #1c0c2a;
    transform: translate(-50%, -50%);
}

.steps__connector .ui-icon {
    width: 13px;
    height: 13px;
}

.advantages {
    background: #fff;
}

.advantages__grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
    gap: 90px;
}

.advantages__visual {
    position: relative;
    padding: 35px;
}

.advantages__visual::before,
.advantages__visual::after {
    position: absolute;
    content: "";
    border-radius: 50%;
}

.advantages__visual::before {
    inset: 0;
    border: 1px solid rgba(86, 29, 123, 0.12);
}

.advantages__visual::after {
    z-index: 0;
    right: -12%;
    bottom: -10%;
    width: 230px;
    height: 230px;
    background: rgba(38, 211, 218, 0.09);
    filter: blur(18px);
}

.reserve-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 455px;
    padding: 43px;
    border-radius: 32px;
    color: #fff;
    background:
        radial-gradient(circle at 75% 20%, rgba(38, 215, 220, 0.23), transparent 27%),
        linear-gradient(145deg, #27103e, #4e176c 62%, #162842);
    box-shadow: var(--shadow-purple);
}

.reserve-card::before {
    position: absolute;
    content: "";
    right: -100px;
    bottom: -110px;
    width: 330px;
    height: 330px;
    border: 45px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.reserve-card__eyebrow {
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.reserve-card > strong {
    display: block;
    margin: 55px 0 20px;
    font-size: clamp(38px, 4.2vw, 54px);
    line-height: 1.02;
}

.reserve-card p {
    max-width: 370px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    line-height: 1.65;
}

.reserve-card__meter {
    overflow: hidden;
    height: 8px;
    margin: 44px 0 13px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.09);
}

.reserve-card__meter span {
    display: block;
    width: 86%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.reserve-card small {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 700;
}

.reserve-card small i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 5px rgba(39, 210, 219, 0.12);
}

.advantages__content > h2 {
    margin-bottom: 34px;
}

.advantage-list article {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 17px;
    padding-block: 22px;
    border-top: 1px solid var(--line);
}

.advantage-list article > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    color: var(--purple-600);
    background: #f0e8f5;
    font-size: 11px;
    font-weight: 900;
}

.advantage-list h3 {
    margin-bottom: 6px;
    font-size: 18px;
}

.advantage-list p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.terms {
    background: #f2edf5;
}

.terms__grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: start;
    gap: 90px;
}

.terms__intro {
    position: sticky;
    top: 120px;
}

.terms__intro p {
    margin: 20px 0 25px;
    color: var(--ink-soft);
    line-height: 1.7;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--purple-700);
    font-size: 13px;
    font-weight: 850;
}

.text-link:hover {
    color: var(--purple-500);
}

.accordion {
    overflow: hidden;
    border: 1px solid #e2d8e7;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.accordion details + details {
    border-top: 1px solid var(--line);
}

.accordion summary {
    position: relative;
    display: grid;
    grid-template-columns: 38px 1fr 25px;
    align-items: center;
    gap: 13px;
    padding: 23px 25px;
    cursor: pointer;
    font-weight: 850;
    list-style: none;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary > span {
    color: var(--purple-500);
    font-size: 11px;
    letter-spacing: 0.06em;
}

.accordion summary i,
.accordion summary i::after {
    position: absolute;
    width: 13px;
    height: 1px;
    background: var(--purple-700);
    transition: transform 0.2s ease;
}

.accordion summary i {
    position: relative;
    justify-self: end;
}

.accordion summary i::after {
    content: "";
    transform: rotate(90deg);
}

.accordion details[open] summary i::after {
    transform: rotate(0);
}

.accordion details p {
    margin: -7px 63px 24px 76px;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.7;
}

.closing-cta {
    padding-block: 85px;
    color: #fff;
    background:
        radial-gradient(circle at 70% 20%, rgba(39, 211, 219, 0.12), transparent 24%),
        linear-gradient(130deg, #210c34, #4b176b 65%, #17263b);
}

.closing-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.closing-cta .section-kicker {
    color: var(--gold);
}

.site-footer {
    padding-top: 54px;
    color: rgba(255, 255, 255, 0.62);
    background: #13081d;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1fr 1.5fr 0.6fr;
    align-items: center;
    gap: 40px;
    padding-bottom: 45px;
}

.site-footer__top p {
    margin-bottom: 0;
    font-size: 13px;
}

.site-footer__top > a:last-child {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-self: end;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 800;
}

.site-footer__bottom {
    display: flex;
    min-height: 63px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 11px;
}

.site-footer--compact {
    padding-top: 0;
}

.toast {
    position: fixed;
    z-index: 150;
    right: 24px;
    bottom: 24px;
    display: grid;
    min-width: 330px;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    color: #fff;
    background: rgba(29, 12, 44, 0.95);
    box-shadow: 0 20px 55px rgba(19, 7, 27, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(15px);
}

.toast.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.toast__icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #173b36;
    background: var(--cyan);
    font-weight: 900;
}

.toast__icon .ui-icon {
    width: 15px;
    height: 15px;
}

.toast [data-toast-text] {
    font-size: 12px;
    font-weight: 750;
}

.toast a {
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 900;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Inner pages */
.inner-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 4% 5%, rgba(115, 41, 164, 0.08), transparent 24%),
        #f7f4f9;
}

.inner-page .site-header {
    top: 0;
}

.main-nav--simple {
    gap: 20px;
}

.secure-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 750;
}

.secure-label span,
.secure-label .ui-icon {
    color: var(--gold);
    font-size: 20px;
}

.secure-label .ui-icon {
    width: 18px;
    height: 18px;
}

.checkout-shell {
    min-height: calc(100vh - 180px);
    padding: 44px 0 100px;
}

.progress-steps {
    display: flex;
    max-width: 680px;
    align-items: center;
    margin: 0 auto 56px;
}

.progress-steps span {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    color: #a295aa;
    font-size: 11px;
    font-weight: 800;
}

.progress-steps span i {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid #d9cfe0;
    border-radius: 50%;
    font-style: normal;
}

.progress-steps span i .ui-icon {
    width: 12px;
    height: 12px;
}

.progress-steps span.is-current,
.progress-steps span.is-done {
    color: var(--purple-800);
}

.progress-steps span.is-current i {
    border-color: var(--purple-600);
    color: #fff;
    background: var(--purple-600);
}

.progress-steps span.is-done i {
    border-color: #48bca9;
    color: #fff;
    background: #48bca9;
}

.progress-steps > b {
    width: 100%;
    height: 1px;
    margin-inline: 12px;
    background: #dcd3e2;
}

.progress-steps > b.is-done {
    background: #48bca9;
}

.inner-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 36px;
}

.inner-heading h1 {
    margin: 4px 0 0;
    font-size: clamp(39px, 5vw, 56px);
    line-height: 1;
}

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

.cart-panel,
.form-card,
.checkout-empty {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.cart-panel__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px 135px;
    gap: 20px;
    padding: 14px 22px;
    color: #8d8194;
    background: #f7f3f9;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cart-panel__head span:last-child {
    text-align: right;
}

.cart-item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px 135px;
    align-items: center;
    gap: 20px;
    padding: 22px;
}

.cart-item + .cart-item {
    border-top: 1px solid var(--line);
}

.cart-item__product {
    display: grid;
    min-width: 0;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
}

.cart-item__thumb {
    position: relative;
    overflow: hidden;
    width: 82px;
    height: 82px;
    border-radius: 13px;
    color: #fff;
    background:
        radial-gradient(circle at 75% 24%, rgba(39, 211, 219, 0.28), transparent 29%),
        linear-gradient(140deg, #38144f, #6d2682 62%, #173e53);
}

.cart-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item__thumb span {
    position: absolute;
    right: 6px;
    bottom: 6px;
    left: 6px;
    padding: 5px 3px;
    border-radius: 6px;
    background: rgba(24, 8, 36, 0.72);
    font-size: 9px;
    font-weight: 900;
    text-align: center;
    backdrop-filter: blur(6px);
}

.cart-item__info {
    min-width: 0;
}

.cart-item__info small {
    display: block;
    margin-bottom: 3px;
    color: #8d8094;
    font-size: 10px;
}

.cart-item__info h2 {
    overflow: hidden;
    margin-bottom: 5px;
    font-size: 17px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-item__discount {
    display: inline-flex;
    padding: 3px 7px;
    border-radius: 999px;
    color: #1a725f;
    background: #e0f8f1;
    font-size: 8px;
    font-weight: 900;
}

.quantity {
    display: inline-grid;
    width: 124px;
    grid-template-columns: 36px 1fr 36px;
    align-items: center;
    overflow: hidden;
    border: 1px solid #ded5e3;
    border-radius: 11px;
    background: #fff;
}

.quantity button {
    display: grid;
    height: 38px;
    place-items: center;
    padding: 0;
    border: 0;
    color: var(--purple-700);
    background: #f8f4fa;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
}

.quantity button .ui-icon {
    width: 13px;
    height: 13px;
}

.quantity button:disabled {
    color: #c8bdcd;
    cursor: not-allowed;
}

.quantity span {
    text-align: center;
    font-size: 13px;
    font-weight: 900;
}

.cart-item__price {
    text-align: right;
}

.cart-item__price strong {
    display: block;
    font-size: 17px;
}

.cart-item__price s {
    color: #9f93a5;
    font-size: 10px;
}

.remove-item {
    position: absolute;
    top: 9px;
    right: 9px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #a599ab;
    background: transparent;
    cursor: pointer;
}

.remove-item:hover {
    color: var(--danger);
    background: #fff0f4;
}

.remove-item .ui-icon {
    width: 13px;
    height: 13px;
}

.order-card {
    position: sticky;
    top: 108px;
    padding: 26px;
    border: 1px solid #ded4e4;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.order-card__kicker {
    display: block;
    margin-bottom: 20px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 900;
}

.order-card__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-block: 12px;
    color: var(--ink-soft);
    font-size: 12px;
}

.order-card__row strong {
    color: var(--ink);
    font-size: 12px;
}

.order-card__row--saving strong {
    color: var(--success);
}

.order-card__total {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 15px;
    margin: 20px 0;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-weight: 850;
}

.order-card__total strong {
    color: var(--purple-800);
    font-size: 26px;
    line-height: 1;
}

.order-card__note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 14px 0 0;
    color: #928598;
    font-size: 9px;
    line-height: 1.45;
}

.order-card__note span,
.order-card__note .ui-icon {
    color: var(--purple-500);
    font-size: 16px;
    line-height: 1;
}

.order-card__note .ui-icon {
    width: 15px;
    height: 15px;
}

.empty-cart,
.checkout-empty {
    padding: 75px 30px;
    text-align: center;
}

.empty-cart__icon {
    display: grid;
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    place-items: center;
    border-radius: 50%;
    color: var(--purple-600);
    background: #efe5f4;
    font-size: 36px;
    transform: none;
}

.empty-cart__icon .ui-icon {
    width: 36px;
    height: 36px;
}

.empty-cart h2,
.checkout-empty h2 {
    margin-bottom: 8px;
    font-size: 29px;
}

.empty-cart p,
.checkout-empty p {
    margin-bottom: 24px;
    color: var(--ink-soft);
}

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

.form-card {
    padding: 29px;
}

.form-card__heading {
    display: grid;
    grid-template-columns: 41px 1fr;
    gap: 15px;
    margin-bottom: 26px;
}

.form-card__heading > span {
    display: grid;
    width: 41px;
    height: 41px;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
    font-size: 13px;
    font-weight: 900;
}

.form-card__heading h2 {
    margin-bottom: 2px;
    font-size: 21px;
}

.form-card__heading p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 11px;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.field--wide {
    grid-column: 1 / -1;
}

.field {
    display: block;
}

.field > span {
    display: block;
    margin-bottom: 7px;
    color: #433649;
    font-size: 11px;
    font-weight: 850;
}

.field input {
    width: 100%;
    height: 48px;
    padding-inline: 14px;
    border: 1px solid #ded5e3;
    border-radius: 11px;
    color: var(--ink);
    background: #fcfbfd;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input::placeholder {
    color: #aaa0af;
}

.field input:focus {
    border-color: var(--purple-500);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(128, 52, 175, 0.09);
}

.field input.is-invalid {
    border-color: var(--danger);
    box-shadow: 0 0 0 4px rgba(200, 60, 102, 0.08);
}

.field small {
    display: block;
    margin-top: 5px;
    color: #9b8fa1;
    font-size: 8px;
}

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

.payment-option {
    position: relative;
    display: grid;
    min-height: 71px;
    grid-template-columns: 39px 1fr 17px;
    align-items: center;
    gap: 11px;
    padding: 11px 13px;
    border: 1px solid #e1d8e6;
    border-radius: 13px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.payment-option:hover {
    border-color: rgba(112, 35, 158, 0.38);
}

.payment-option:has(input:checked) {
    border-color: var(--purple-500);
    background: #fbf7fd;
    box-shadow: 0 0 0 3px rgba(112, 35, 158, 0.08);
}

.payment-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.payment-option > span:nth-of-type(2) {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.payment-option strong {
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.payment-option small {
    color: #95899b;
    font-size: 8px;
}

.payment-option > i {
    display: grid;
    width: 17px;
    height: 17px;
    place-items: center;
    border: 1px solid #cfc3d5;
    border-radius: 50%;
}

.payment-option:has(input:checked) > i {
    border: 5px solid var(--purple-600);
}

.payment-option--station {
    grid-column: 1 / -1;
}

.bank-logo {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    font-size: 15px;
    font-weight: 950;
}

.bank-logo--khan { background: #0e8b52; }
.bank-logo--golomt { background: #eaa429; }
.bank-logo--xac { background: #ef6e35; }
.bank-logo--state { background: #3973b9; }
.bank-logo--tdb { background: #3156a6; }
.bank-logo--capitron { background: #7d2988; }
.bank-logo--station { background: linear-gradient(135deg, #4c176e, #241138); }

.bank-logo--station b {
    width: 13px;
    height: 18px;
    border: 2px solid var(--gold-light);
    border-radius: 70% 35% 65% 40%;
    transform: rotate(45deg);
}

.payment-notice {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    margin-top: 16px;
    padding: 12px;
    border: 1px solid #ddd3e3;
    border-radius: 11px;
    color: #75677c;
    background: #f8f5fa;
}

.payment-notice > span {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--purple-500);
    font-size: 10px;
    font-weight: 900;
}

.payment-notice > span .ui-icon {
    width: 12px;
    height: 12px;
}

.payment-notice p {
    margin-bottom: 0;
    font-size: 9px;
    line-height: 1.5;
}

.checkout-status {
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid #e4c98d;
    border-radius: 12px;
    color: #6f4f17;
    background: #fff8e8;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
}

.consent {
    position: relative;
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    padding: 4px;
    color: #6c5f72;
    cursor: pointer;
}

.consent input {
    position: absolute;
    opacity: 0;
}

.consent > span {
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border: 1px solid #cfc4d5;
    border-radius: 5px;
    background: #fff;
}

.consent input:checked + span {
    border-color: var(--purple-600);
    background: var(--purple-600);
}

.consent input:checked + span::after {
    content: "✓";
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.consent input:focus-visible + span {
    outline: 3px solid rgba(41, 211, 219, 0.4);
    outline-offset: 2px;
}

.consent p {
    margin: 1px 0 0;
    font-size: 10px;
    line-height: 1.55;
}

.order-card__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.order-card__title span {
    font-size: 19px;
    font-weight: 900;
}

.order-card__title a {
    color: var(--purple-600);
    font-size: 9px;
    font-weight: 850;
}

.checkout-products {
    max-height: 255px;
    overflow-y: auto;
    margin: 0 -5px 18px 0;
    padding-right: 5px;
    border-bottom: 1px solid var(--line);
}

.checkout-product {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 10px;
    padding-bottom: 13px;
}

.checkout-product + .checkout-product {
    padding-top: 13px;
    border-top: 1px solid #f0ebf3;
}

.checkout-product__thumb {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 9px;
    color: var(--gold-light);
    background: linear-gradient(135deg, #35144e, #712987);
    font-size: 9px;
    font-weight: 900;
}

.checkout-product div:nth-child(2) {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.checkout-product div:nth-child(2) strong {
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkout-product div:nth-child(2) small {
    color: #96899d;
    font-size: 8px;
}

.checkout-product > strong {
    font-size: 10px;
}

.order-card__note--center {
    justify-content: center;
}

body.has-modal {
    overflow: hidden;
}

.modal {
    position: fixed;
    z-index: 300;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 6, 27, 0.75);
    backdrop-filter: blur(8px);
}

.modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 480px);
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 30px 100px rgba(11, 3, 17, 0.42);
    text-align: center;
}

.success-mark {
    display: grid;
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #24cbb9, #15886d);
    box-shadow: 0 12px 32px rgba(23, 141, 111, 0.25);
}

.success-mark .ui-icon {
    width: 30px;
    height: 30px;
}

.modal__dialog h2 {
    margin: 7px 0 9px;
    font-size: 34px;
}

.modal__dialog > p {
    color: var(--ink-soft);
    font-size: 13px;
}

.modal__amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 12px;
    color: var(--ink);
    background: #f5f0f8;
    font-size: 12px;
}

.modal__amount strong {
    color: var(--purple-600);
    font-size: 18px;
}

.modal__notice {
    margin: 14px 0 22px;
    padding: 14px;
    border: 1px solid #ead9b9;
    border-radius: 12px;
    color: #77561f;
    background: #fff9ec;
    font-size: 10px;
    line-height: 1.55;
}

@keyframes bump {
    50% { transform: scale(1.2); }
}

@media (max-width: 1080px) {
    .hero__grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 35px;
    }

    .hero-cards {
        min-height: 520px;
    }

    .floating-ticket--back {
        width: 285px;
        height: 285px;
    }

    .floating-ticket--front {
        top: 165px;
        width: 345px;
        height: 345px;
    }

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

    .advantages__grid,
    .terms__grid {
        gap: 55px;
    }

    .cart-layout,
    .checkout-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
    }

    .cart-panel__head,
    .cart-item {
        grid-template-columns: minmax(0, 1fr) 130px 115px;
    }
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .main-nav:not(.main-nav--simple) {
        position: fixed;
        z-index: 80;
        top: 116px;
        right: 18px;
        left: 18px;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 18px;
        background: rgba(27, 9, 42, 0.98);
        box-shadow: 0 25px 75px rgba(10, 3, 16, 0.42);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .main-nav:not(.main-nav--simple).is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav:not(.main-nav--simple) > a {
        padding: 13px 12px;
    }

    .main-nav:not(.main-nav--simple) .header-cart {
        margin-top: 7px;
        justify-content: center;
    }

    .hero {
        min-height: auto;
    }

    .hero__grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 45px;
        padding-top: 175px;
        padding-bottom: 90px;
    }

    .hero__content {
        max-width: 720px;
    }

    .hero-cards {
        width: min(100%, 620px);
        min-height: 570px;
        margin-inline: auto;
    }

    .floating-ticket--back {
        right: 30px;
        width: 330px;
        height: 330px;
    }

    .floating-ticket--front {
        left: 35px;
        width: 390px;
        height: 390px;
    }

    .hero-note {
        right: 15px;
    }

    .trust-strip__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-strip__inner > div:nth-child(3) {
        border-left: 0;
    }

    .trust-strip__inner > div:nth-child(n+3) {
        border-top: 1px solid rgba(255, 255, 255, 0.09);
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .steps__connector {
        width: 1px;
        height: 38px;
        justify-self: center;
        background: linear-gradient(rgba(241, 189, 84, 0.15), rgba(241, 189, 84, 0.6), rgba(241, 189, 84, 0.15));
    }

    .steps__connector span {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .step-card {
        min-height: auto;
    }

    .advantages__grid,
    .terms__grid {
        grid-template-columns: 1fr;
    }

    .advantages__visual {
        width: min(100%, 610px);
        margin-inline: auto;
    }

    .terms__intro {
        position: static;
    }

    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .order-card {
        position: static;
    }

    .order-card--checkout {
        grid-row: 1;
    }

    .checkout-main {
        grid-row: 2;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .site-header__inner {
        min-height: 70px;
    }

    .site-header {
        top: 0;
    }

    .modal__dialog {
        padding: 32px 22px;
    }

    .brand__mark {
        width: 35px;
        height: 35px;
    }

    .brand__word {
        font-size: 18px;
    }

    .brand__logo {
        width: 174px;
    }

    .brand--footer .brand__logo {
        width: 184px;
    }

    .main-nav--simple > a:not(.header-cart) {
        display: none;
    }

    .main-nav--simple .header-cart {
        min-height: 41px;
        font-size: 0;
    }

    .main-nav--simple .header-cart__icon {
        font-size: 20px;
    }

    .hero__grid {
        padding-top: 142px;
        padding-bottom: 70px;
    }

    .hero h1 {
        margin-top: 17px;
        font-size: clamp(43px, 13vw, 61px);
    }

    .hero__lead {
        font-size: 16px;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero__facts {
        grid-template-columns: 1fr;
        margin-top: 36px;
    }

    .hero__facts div {
        display: grid;
        grid-template-columns: 65px 1fr;
        align-items: center;
        padding: 14px 0;
    }

    .hero__facts div + div {
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.13);
        border-left: 0;
    }

    .hero-cards {
        min-height: 430px;
    }

    .hero-cards__orbit {
        width: 370px;
        height: 370px;
    }

    .floating-ticket--back {
        right: 8px;
        width: 230px;
        height: 230px;
        border-radius: 20px;
    }

    .floating-ticket--front {
        top: 130px;
        left: 6px;
        width: 285px;
        height: 285px;
        border-radius: 22px;
    }

    .floating-ticket__badge {
        width: 52px;
        height: 52px;
        font-size: 13px;
    }

    .hero-note {
        right: 0;
        bottom: 12px;
    }

    .trust-strip__inner {
        grid-template-columns: 1fr;
    }

    .trust-strip__inner > div {
        min-height: 60px;
        justify-content: flex-start;
        padding-left: 22px;
        border-left: 0 !important;
    }

    .trust-strip__inner > div + div {
        border-top: 1px solid rgba(255, 255, 255, 0.09);
    }

    .section {
        padding-block: 80px;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 15px;
    }

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

    .product-visual {
        height: 235px;
    }

    .product-visual--image {
        height: 330px;
    }

    .advantages__visual {
        padding: 0;
    }

    .reserve-card {
        min-height: 430px;
        padding: 30px;
    }

    .closing-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .site-footer__top > a:last-child {
        justify-self: start;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        padding-block: 18px;
    }

    .toast {
        right: 14px;
        bottom: 14px;
        left: 14px;
        min-width: 0;
    }

    .checkout-shell {
        padding-top: 30px;
    }

    .progress-steps {
        margin-bottom: 38px;
    }

    .progress-steps span {
        font-size: 0;
    }

    .progress-steps span i {
        font-size: 11px;
    }

    .inner-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .cart-panel__head {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr auto;
        gap: 15px;
        padding: 18px;
    }

    .cart-item__product {
        grid-column: 1 / -1;
        padding-right: 22px;
    }

    .cart-item__price {
        grid-column: 2;
        grid-row: 2;
    }

    .quantity {
        grid-column: 1;
        grid-row: 2;
    }

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

    .field--wide,
    .payment-option--station {
        grid-column: auto;
    }

    .form-card {
        padding: 21px;
    }

}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
