:root {
    --bg: #f6f7fb;
    --surface: #ffffff;
    --text: #111111;
    --muted: #62677a;
    --line: #e8ebf2;

    --cyan: #00c2ff;
    --magenta: #ff3ea5;
    --yellow: #ffd43b;

    --shadow: 0 12px 40px rgba(20, 20, 30, 0.08);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Advent Pro", Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

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

.container {
    width: min(1260px, calc(100% - 12px));
    margin: 0 auto;
}

.narrow {
    width: min(820px, 100%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    padding-left: 0;
}

.brand-logo {
    height: 46px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
}

.nav-links a {
    position: relative;
    padding: 0 18px;
    line-height: 76px;
    font-size: 20px;
    font-weight: 500;
    color: #1f1f1f;
    transition: opacity 0.2s ease;
}

.nav-links a + a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 42px;
    background: rgba(0,0,0,0.24);
}

.nav-links a:hover {
    opacity: 0.72;
}

.page {
    position: relative;
    z-index: 2;
}

.hero {
    padding: 72px 0 32px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.02;
    margin: 0 0 18px;
}

.hero p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 28px;
    max-width: 670px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    border: 0;
    border-radius: 16px;
    padding: 15px 22px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    color: #fff;
    box-shadow: 0 12px 24px rgba(255, 62, 165, 0.22);
}

.btn-secondary {
    background: #fff;
    color: #111;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.btn-ghost {
    background: transparent;
    color: #111;
    border: 1px solid #dcdfe8;
}

.hero-card,
.card-panel,
.product-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(17,17,17,0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    overflow: hidden;
}

.hero-card-top {
    padding: 18px 18px 0;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.cyan { background: var(--cyan); }
.dot.magenta { background: var(--magenta); }
.dot.yellow { background: var(--yellow); }

.hero-card-body {
    padding: 20px 22px 26px;
}

.hero-card-body h3 {
    margin-top: 4px;
    margin-bottom: 14px;
}

.hero-card-body ol {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.8;
}

.cards-section,
.form-section,
.thanks-section {
    padding: 30px 0 70px;
}

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

.section-head h1,
.section-head h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin: 0 0 12px;
}

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

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

.product-card {
    padding: 22px;
    position: relative;
    overflow: hidden;
    min-height: 230px;
    transition: 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.badge {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(0,194,255,0.1);
    color: #00688a;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.badge.alt {
    background: rgba(255,212,59,0.16);
    color: #775b00;
}

.badge.support {
    background: rgba(255,62,165,0.12);
    color: #8d1958;
}

.product-card h3 {
    font-size: 24px;
    margin: 0 0 12px;
}

.product-card p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 22px;
}

.card-link {
    font-weight: 700;
}

.form-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
}

.card-panel {
    padding: 26px;
}

.main-form h1 {
    margin-top: 0;
    margin-bottom: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}

.label-hint {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-top: 4px;
    font-weight: 400;
}

input[type="text"],
input[type="file"],
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid #d9deea;
    background: #fff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

input[type="text"]:focus,
input[type="file"]:focus,
textarea:focus {
    border-color: var(--cyan);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.choice-grid {
    display: grid;
    gap: 12px;
}

.choice-grid.two {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
}

.choice-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.choice-grid.seven {
    grid-template-columns: repeat(4, 1fr);
}

.choice-pill {
    position: relative;
    display: block;
}

.choice-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-pill span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 12px 14px;
    text-align: center;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #dce1eb;
    font-weight: 700;
    transition: 0.25s ease;
}

.choice-pill.long span {
    min-height: 58px;
    padding-inline: 10px;
    font-size: 14px;
}

.choice-pill input:checked + span {
    background: linear-gradient(135deg, rgba(0,194,255,0.12), rgba(255,62,165,0.12));
    border-color: #b7c7ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(80, 100, 180, 0.10);
}

.summary h2 {
    margin-top: 0;
}

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

.summary-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.sticky-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.flash-wrap {
    padding-top: 18px;
    display: grid;
    gap: 10px;
}

.flash {
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
}

.flash-error {
    background: #ffe6eb;
    color: #9f173f;
    border: 1px solid #ffc4d1;
}

.flash-success {
    background: #e6fff2;
    color: #0f7a4b;
    border: 1px solid #b9efcf;
}

.flash-info {
    background: #e8f6ff;
    color: #0d6e9a;
    border: 1px solid #b7def3;
}

.center {
    text-align: center;
}

.success-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
}

.site-footer {
    padding: 20px 0 50px;
    color: var(--muted);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(17,17,17,0.08);
    padding-top: 22px;
}

.bg-shape {
    position: fixed;
    border-radius: 50%;
    z-index: 0;
    filter: blur(40px);
    opacity: 0.5;
    pointer-events: none;
}

.shape-1 {
    width: 240px;
    height: 240px;
    background: rgba(0,194,255,0.16);
    top: -60px;
    left: -60px;
}

.shape-2 {
    width: 260px;
    height: 260px;
    background: rgba(255,62,165,0.14);
    bottom: -80px;
    right: -60px;
}

.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(17,17,17,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17,17,17,0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 0;
    pointer-events: none;
}

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

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

.floating {
    animation: floating 4.5s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.orders-list {
    display: grid;
    gap: 16px;
}

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

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

    .choice-grid.seven {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .nav {
        padding: 12px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .brand-logo {
        height: 46px;
    }

    .hero {
        padding-top: 38px;
    }

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

    .choice-grid.two,
    .choice-grid.three,
    .choice-grid.seven {
        grid-template-columns: repeat(2, 1fr);
    }

    .sticky-actions,
    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

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

.checkout-head {
    margin-bottom: 18px;
}

.wizard-summary-panel {
    position: static;
}

.wizard-mini-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.78);
    border: 1px solid var(--line);
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.wizard-mini-note__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    flex: 0 0 auto;
}

.checkout-wizard {
    position: relative;
    overflow: hidden;
}

.wizard-stepper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.wizard-stepper__step {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s ease;
}

.wizard-stepper__dot {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid #dce1eb;
    transition: 0.25s ease;
}

.wizard-stepper__line {
    flex: 1 1 24px;
    min-width: 24px;
    max-width: 64px;
    height: 2px;
    border-radius: 999px;
    background: #dce1eb;
}

.wizard-stepper__step.active,
.wizard-stepper__step.done {
    color: var(--text);
}

.wizard-stepper__step.active .wizard-stepper__dot,
.wizard-stepper__step.done .wizard-stepper__dot {
    border-color: transparent;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    color: #fff;
    box-shadow: 0 10px 20px rgba(80, 100, 180, 0.16);
}

.wizard-progress {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(17,17,17,0.06);
    overflow: hidden;
    margin-bottom: 24px;
}

.wizard-progress__bar {
    height: 100%;
    width: 25%;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    transition: width 0.35s ease;
}

.wizard-step {
    display: none;
    opacity: 0;
    transform: translateY(12px) scale(0.985);
}

.wizard-step.active {
    display: block;
    animation: wizardFadeIn 0.42s ease forwards;
}

.wizard-step.shake {
    animation: wizardShake 0.36s ease;
}

.wizard-title {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 26px;
}

.wizard-actions {
    margin-top: 26px;
}

.file-drop-zone {
    position: relative;
    border: 1.5px dashed #cfd7e8;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,255,0.96));
    padding: 22px;
    min-height: 132px;
    display: grid;
    place-items: center;
    text-align: center;
    cursor: pointer;
    transition: 0.25s ease;
}

.file-drop-zone:hover,
.file-drop-zone.dragover {
    border-color: var(--cyan);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 194, 255, 0.10);
}

.file-drop-zone__inner {
    display: grid;
    gap: 8px;
    color: var(--muted);
}

.file-drop-zone__preview {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #dce1eb;
}

.file-drop-zone__name {
    font-weight: 700;
    word-break: break-word;
    text-align: left;
}

.file-drop-zone__remove {
    border: 0;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(17,17,17,0.06);
    font-size: 16px;
}

.wizard-review {
    display: grid;
    gap: 12px;
}

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

.wizard-review__key {
    color: var(--muted);
    font-weight: 700;
}

.wizard-review__val {
    text-align: right;
    font-weight: 700;
    word-break: break-word;
}

@keyframes wizardFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes wizardShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}


.order-wizard {
    position: relative;
}

.order-wizard .section-head {
    margin-bottom: 18px;
}

.stepper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 22px;
}

.stepper__step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.72);
    border-radius: 16px;
    color: var(--muted);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease, background .25s ease;
}

.stepper__step.active {
    border-color: rgba(0,194,255,0.35);
    color: var(--text);
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-1px);
}

.stepper__step.done {
    border-color: rgba(255,62,165,0.25);
    color: var(--text);
    background: rgba(255,255,255,0.95);
}

.stepper__dot {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    background: #eef2fb;
    color: var(--muted);
    flex-shrink: 0;
    transition: .25s ease;
}

.stepper__step.active .stepper__dot,
.stepper__step.done .stepper__dot {
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    color: #fff;
}

.form-step {
    display: none;
    animation: wizardStepIn .42s ease;
}

.form-step.active {
    display: block;
}

@keyframes wizardStepIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wizard-title {
    margin: 0 0 14px;
    font-size: clamp(24px, 3vw, 32px);
}

.wizard-sub {
    margin: -4px 0 18px;
    color: var(--muted);
    line-height: 1.7;
}

.choice-grid {
    display: grid;
    gap: 12px;
}

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

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

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

.choice-pill {
    position: relative;
    display: block;
    cursor: pointer;
}

.choice-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-pill span {
    min-height: 58px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 16px;
    font-weight: 700;
    transition: transform .2s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.choice-pill:hover span {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.choice-pill input:checked + span {
    border-color: rgba(0,194,255,0.45);
    background: linear-gradient(180deg, rgba(0,194,255,0.08), rgba(255,62,165,0.08));
    box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

.choice-pill.long span {
    padding-inline: 10px;
    font-size: 14px;
}

.choice-pill--with-image span {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
}

.choice-pill__image {
    width: 100%;
    max-width: 180px;
    height: 140px;
    object-fit: contain;
    border-radius: 12px;
}

.choice-pill__text {
    font-size: 16px;
    line-height: 1.3;
}

.file-drop {
    border: 1.5px dashed #cfd7e7;
    border-radius: 20px;
    background: rgba(255,255,255,0.75);
    padding: 28px 18px;
    text-align: center;
    transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
    cursor: pointer;
}

.file-drop:hover,
.file-drop.drag-over {
    border-color: rgba(0,194,255,0.7);
    background: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.file-drop__icon {
    font-size: 34px;
    margin-bottom: 10px;
}

.file-drop__text {
    font-weight: 700;
    margin-bottom: 6px;
}

.file-drop__sub {
    color: var(--muted);
    font-size: 14px;
}

.file-drop__link {
    color: #00688a;
    text-decoration: underline;
}

.file-drop__preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.file-drop__filename {
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-weight: 700;
    word-break: break-all;
}

.file-drop__remove {
    border: 0;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    cursor: pointer;
}

.order-summary {
    margin-top: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,0.82);
    padding: 16px;
}

.order-summary__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(17,17,17,0.06);
}

.order-summary__row:last-child {
    border-bottom: 0;
}

.order-summary__key {
    color: var(--muted);
}

.order-summary__val {
    font-weight: 700;
    text-align: right;
}

.step-actions {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 22px;
}

.step-actions--end {
    justify-content: flex-end;
}

.input-error input,
.input-error textarea {
    border-color: #ff5c7a !important;
    box-shadow: 0 0 0 4px rgba(255,92,122,0.12);
}

.error-msg {
    color: #cc3255;
    font-size: 13px;
    margin-top: 8px;
}

.hidden-inline {
    display: none !important;
}

@media (max-width: 820px) {
    .choice-grid.two,
    .choice-grid.three,
    .choice-grid.seven {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 560px) {
    .choice-grid.two,
    .choice-grid.three,
    .choice-grid.seven,
    .stepper {
        grid-template-columns: 1fr;
    }

    .step-actions .btn {
        width: 100%;
    }
}


.gender-cards-grid {
    align-items: stretch;
}

.choice-card--image span {
    flex-direction: column;
    gap: 12px;
    min-height: 260px;
    justify-content: flex-start;
    padding: 14px;
}

.choice-card__img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(17,17,17,0.08);
    background: #f2f3f7;
}

.size-chart-preview {
    margin-top: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,0.84);
    padding: 16px;
}

.size-chart-preview__head {
    font-weight: 700;
    margin-bottom: 12px;
}

.size-chart-preview__img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(17,17,17,0.08);
    background: #f2f3f7;
    display: block;
}



:root {
    --bg: #e7e7e7;
    --surface: #f7f7f7;
    --text: #101010;
    --muted: #3d3d3d;
    --line: #202020;
    --cyan: #00adef;
    --magenta: #ed008c;
    --yellow: #fef200;
    --shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    --radius: 26px;
}

body {
    margin: 0;
    font-family: "Advent Pro", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(245, 245, 245, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    padding-left: 8px;
}

.brand-logo {
    height: 58px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.nav-links a {
    padding: 0 22px;
    line-height: 1;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #252525;
    position: relative;
}

.nav-links a + a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 42px;
    background: rgba(0, 0, 0, 0.28);
}

.nav-links a:hover {
    opacity: 0.72;
}

.home-hero {
    padding: 0 0 20px;
}

.home-banner {
    width: 100%;
    height: 260px;
    background-color: #000;
    background-image: url("../img/hero-top.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 115%;
}



.home-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 22px;
    align-items: center;
    background: #d9d9d9;
    padding: 14px 28px 16px;
}

.intro-copy {
    background: #efefef;
    border-radius: 0 68px 68px 0;
    padding: 18px 28px 12px;
    min-height: 118px;
    display: flex;
    align-items: center;
}

.intro-copy h1 {
    margin: 0;
    font-family: "Advent Pro", Arial, sans-serif;
    font-size: 42px;
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: 0;
    color: #676767;
}

.intro-scenario {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 0;
}

.intro-scenario-figma {
    justify-content: flex-start;
}

.scenario-figure {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    transform: translateX(-10px) scale(0.92);
    transform-origin: left center;
}
.cards-section { padding: 8px 0 70px; }
.home-section-head {
    margin-bottom: 18px;
}
.home-section-head h2 {
    font-size: 58px;
    line-height: 0.92;
    margin-bottom: 8px;
}
.home-section-head {
    border-top: 10px solid #ececec;
}
.home-section-head p {
    font-size: 22px;
    color: #2f2f2f;
}
.home-cards-grid { margin-top: 18px; }

@media (max-width: 920px) {
    .nav { min-height: 74px; align-items: flex-start; padding: 10px 16px; }
    .nav-links a { font-size: 18px; padding: 0 14px; line-height: 48px; }
    .nav-links a + a::before { height: 28px; }
    .home-banner { height: 170px; }
    .home-intro { grid-template-columns: 1fr; padding: 16px 18px; }
    .intro-copy { border-radius: 28px; min-height: auto; }
    .intro-copy h1 { font-size: 36px; }
    .scenario-figure { max-width: 480px; transform: none; }
}

@media (max-width: 640px) {
    .brand-logo { height: 42px; }
    .nav { flex-direction: column; align-items: flex-start; }
    .nav-links { width: 100%; }
    .nav-links a { font-size: 17px; padding: 0 10px; line-height: 42px; }
    .intro-scenario { align-items: flex-start; }
    .scenario-figure {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        transform: none;
    }
    .home-section-head h2 { font-size: 44px; }
    .home-section-head p { font-size: 18px; }
}




.plaque-colors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}


.plaque-color-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 520px;
    border: 1px solid #222;
    border-radius: 24px;
    padding: 16px;
    background: #fff;
}


.plaque-color-card__image-wrap {
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 18px;
}

.plaque-color-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.plaque-color-card__title {
    margin-top: auto;
    padding-top: 14px;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
}

.home-figma-section {
    padding-top: 0;
    padding-bottom: 72px;
    min-height: 640px;
    background:
        linear-gradient(rgba(9, 12, 18, 0.18), rgba(9, 12, 18, 0.18)),
        url("../img/hero-top.png") center/cover no-repeat;
}

.home-figma-wrap {
    padding: 0 0 56px;
}

.figma-head {
    width: min(1040px, calc(100% - 120px));
    margin: 0 auto 38px;
    background: #f7f7f7;
    border: 2px solid #22a3ff;
    padding: 28px 44px 24px;
    box-shadow: 0 8px 20px rgba(20, 20, 30, 0.08);
}

.figma-head h2 {
    font-size: clamp(44px, 4.4vw, 66px);
    line-height: 0.95;
    margin-bottom: 12px;
    color: #0f0f0f;
}

.figma-head p {
    color: #191919;
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.15;
}

.home-figma-cards {
    width: min(1180px, calc(100% - 60px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(420px, 1fr));
    justify-content: center;
    gap: 22px 32px;
}

.figma-product-card {
    min-height: 176px;
    max-width: 560px;
    border: 1.5px solid rgba(30, 30, 30, 0.55);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    padding: 20px 28px 18px;
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 18px;
    align-items: start;
    box-shadow: 0 10px 28px rgba(20, 20, 30, 0.10);
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.figma-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(20, 20, 30, 0.14);
}

.figma-product-card:nth-child(3) {
    grid-column: 1 / 2;
}

.figma-product-card__icon {
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    color: #15a2ec;
}

.figma-product-card__icon svg {
    width: 88px;
    height: 88px;
    display: block;
}

.figma-product-card__body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.figma-product-card__body p {
    margin: 2px 0 20px;
    color: #141414;
    font-size: clamp(18px, 1.55vw, 25px);
    line-height: 1.12;
    max-width: 360px;
}

.figma-product-card__btn {
    margin-top: auto;
    align-self: center;
    min-width: 254px;
    text-align: center;
    padding: 13px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), #7b7ef6 55%, var(--magenta));
    color: #fff;
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 700;
    line-height: 1;
}

.plaque-colors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.plaque-color-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 520px;
    border: 1px solid #222;
    border-radius: 24px;
    padding: 16px;
    background: #fff;
    cursor: pointer;
}

.plaque-color-card__image-wrap {
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 18px;
}

.plaque-color-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.plaque-color-card__title {
    margin-top: auto;
    padding-top: 14px;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
}

.plaque-color-card:has(input:checked) {
    box-shadow: 0 0 0 3px rgba(34, 163, 255, 0.16);
    border-color: #22a3ff;
}

.cup-color-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.cup-color-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 170px;
    border-radius: 22px;
    border: none;
    padding: 18px;
    background: #fff;
    cursor: pointer;
}

.cup-color-card__swatch {
    height: 100px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}
.cup-1{background:#232323}.cup-2{background:#2f68d8}.cup-3{background:#85314b}.cup-4{background:#3f7f49}.cup-5{background:#f08b1e}.cup-6{background:#8f97a3}

.cup-color-card__title {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-top: auto;
}

.cup-color-card:has(input:checked) {
    border-color: #22a3ff;
    box-shadow: 0 0 0 3px rgba(34, 163, 255, 0.16);
}

@media (max-width: 1100px) {
    .figma-head {
        width: min(100%, calc(100% - 28px));
        padding: 22px 24px 18px;
    }

    .home-figma-cards {
        width: min(100%, calc(100% - 28px));
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .figma-product-card {
        max-width: none;
    }

    .figma-product-card:nth-child(3) {
        grid-column: auto;
    }

    .figma-product-card__body p {
        font-size: 22px;
        max-width: none;
    }

    .figma-product-card__btn {
        font-size: 24px;
        min-width: 220px;
    }
}

@media (max-width: 700px) {
    .figma-head {
        padding: 18px 18px 16px;
    }

    .figma-head p {
        font-size: 18px;
    }

    .figma-product-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 18px;
        min-height: 0;
    }

    .figma-product-card__icon {
        width: 72px;
        height: 72px;
        margin: 0 auto;
    }

    .figma-product-card__icon svg {
        width: 68px;
        height: 68px;
    }

    .figma-product-card__body p {
        font-size: 18px;
        margin-top: 0;
    }

    .plaque-colors-grid,
    .cup-color-grid {
        grid-template-columns: 1fr;
    }
}


.home-choice-section {
    padding-top: 0;
    padding-bottom: 0;
    background: #f2f2f2;
}

.home-section-head {
    padding: 20px 0 14px;
    margin-bottom: 0;
}

.home-choice-stage {
    position: relative;
    min-height: 520px;
    padding: 20px 0 110px;
    background:
        linear-gradient(rgba(9, 12, 18, 0.24), rgba(9, 12, 18, 0.24)),
        url("../img/hero-top.png") center/cover no-repeat;
    overflow: hidden;
}

.home-choice-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 48%, rgba(255,255,255,0.10) 70%, rgba(255,255,255,0.22) 100%);
    pointer-events: none;
    z-index: 0;
}

.home-choice-stage::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 46%;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 18%, rgba(0,0,0,0.75) 55%, rgba(0,0,0,1) 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 18%, rgba(0,0,0,0.75) 55%, rgba(0,0,0,1) 100%);
    pointer-events: none;
    z-index: 0;
}

.home-choice-stage > .container {
    position: relative;
    z-index: 1;
}

.home-choice-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 34px;
    align-items: start;
    max-width: 1180px;
}

.home-choice-card {
    min-height: 170px;
    max-width: 650px;
    border: 1px solid rgba(17,17,17,0.34);
    border-radius: 24px;
    background: rgba(255,255,255,0.96);
    padding: 18px 24px 16px;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 18px;
    align-items: start;
    box-shadow: 0 10px 24px rgba(20,20,30,0.10);
}

.home-choice-card--bottom {
    grid-column: 1 / 2;
}

.home-choice-card__icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    color: #16a5ee;
    margin-top: 4px;
}

.home-choice-card__icon svg {
    width: 78px;
    height: 78px;
    display: block;
}

.home-choice-card__body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.home-choice-card__body p {
    margin: 4px 0 18px;
    max-width: 340px;
    color: #111;
    font-size: 18px;
    line-height: 1.14;
}

.home-choice-card__btn {
    margin-top: auto;
    align-self: flex-start;
    min-width: 170px;
    text-align: center;
    padding: 10px 18px 11px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), #7b7ef6 55%, var(--magenta));
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 920px) {
    .home-choice-stage {
        padding-bottom: 42px;
        min-height: 0;
    }
    .home-choice-cards {
        grid-template-columns: 1fr;
    }
    .home-choice-card,
    .home-choice-card--bottom {
        max-width: none;
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .home-choice-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 18px;
    }
    .home-choice-card__icon {
        margin: 0 auto;
    }
    .home-choice-card__body p {
        max-width: none;
        font-size: 17px;
        margin-bottom: 16px;
    }
    .home-choice-card__btn {
        align-self: center;
    }
}

input,
textarea {
    width: 100%;
    border: 1px solid #cfd6df;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 16px;
    outline: none;
    transition: 0.2s;
    background: #fff;
}

input:focus,
textarea:focus {
    border-color: #53b7ff;
    box-shadow: 0 0 0 2px rgba(83, 183, 255, 0.15);
}

input::placeholder,
textarea::placeholder {
    color: #9aa4b2;
}

.price-box {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.88);
    border: 1px solid var(--line);
    box-shadow: 0 8px 20px rgba(17,17,17,0.06);
}

.price-box__label {
    color: var(--muted);
}

.price-box__value {
    font-weight: 700;
}

.order-summary__row--total {
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid rgba(17,17,17,0.08);
    border-bottom: 0;
}

.order-summary__row--total .order-summary__key,
.order-summary__row--total .order-summary__val {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
}


.plaque-preview-block {
    margin-bottom: 24px;
}


.cup-color-card {
    cursor: pointer;
    border: 1px solid #d8dce3;
}

.cup-color-card input[type="radio"] {
    display: none;
}

.cup-color-card:has(input:checked) {
    border-color: #22a3ff;
    box-shadow: 0 0 0 3px rgba(34, 163, 255, 0.16);
}

.cup-0 {
    background: #ffffff;
    border: 1px solid #ccc;
}

.cup-white {
    background: #ffffff;
    border: 1px solid #ccc;
}


.cup-color-card input[type="radio"] {
    display: none;
}

.cup-color-card__inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.cup-color-card__swatch {
    height: 100px;
    border-radius: 14px;
    border: none;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.cup-white {
    background: #ffffff;
    border: 1px solid #cfcfcf;
}

.cup-black {
    background: #232323;
}

.cup-blue {
    background: #2f68d8;
}

.cup-burgundy {
    background: #85314b;
}

.cup-green {
    background: #3f7f49;
}

.cup-orange {
    background: #f08b1e;
}

.cup-gray {
    background: #8f97a3;
}


.cup-color-card input[type="radio"] {
    display: none;
}

.cup-color-card {
    display: block;
    cursor: pointer;
    border: 1px solid #d8dce3;
    border-radius: 22px;
    padding: 18px;
    background: #fff;
    transition: 0.25s ease;
}

.cup-color-card__inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.cup-color-card__image-wrap {
    width: 100%;
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cup-color-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.cup-color-card__image-fallback {
    font-weight: 700;
    color: #666;
}

.cup-color-card__title {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}

.cup-color-card:has(input:checked) {
    border-color: #22a3ff;
    box-shadow: 0 0 0 3px rgba(34, 163, 255, 0.16);
}


.cup-card {
    display: block;
    cursor: pointer;
    border: 1px solid #d8dce3;
    border-radius: 24px;
    padding: 16px;
    background: #fff;
    transition: 0.25s ease;
    overflow: hidden;
}

.cup-card:hover {
    transform: translateY(-3px);
}

.cup-card input {
    display: none;
}

.cup-card__img {
    width: 100%;
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cup-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cup-card__title {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-top: 14px;
}

.cup-card:has(input:checked) {
    border-color: #22a3ff;
    box-shadow: 0 0 0 3px rgba(34, 163, 255, 0.16);
}

.cup-fallback {
    color: #888;
    font-weight: 700;
}

@media (max-width: 900px) {
    .cup-color-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .cup-color-grid {
        grid-template-columns: 1fr;
    }

    .cup-card__img {
        height: 190px;
    }
}


.cup-color-card input[type="radio"] {
    display: none;
}

.cup-color-card {
    display: block;
    cursor: pointer;
    border: 1px solid #d8dce3;
    border-radius: 22px;
    padding: 18px;
    background: #fff;
    transition: 0.25s ease;
}

.cup-color-card__inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.cup-color-card__image-wrap {
    width: 100%;
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cup-color-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.cup-color-card__image-fallback {
    font-weight: 700;
    color: #666;
}

.cup-color-card__title {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}

.cup-color-card:has(input:checked) {
    border-color: #22a3ff;
    box-shadow: 0 0 0 3px rgba(34, 163, 255, 0.16);
}

@media (max-width: 700px) {
    .cup-color-grid {
        grid-template-columns: 1fr;
    }

    .cup-color-card__image-wrap {
        height: 190px;
    }
}


.size-chart-preview {
    width: fit-content;
    max-width: 100%;
    margin: 18px auto 0;
    padding: 18px 20px;
    border: 1px solid #222;
    border-radius: 22px;
}

.wizard-checkout-layout {
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 32px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.wizard-summary-panel {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(17,17,17,0.34);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(20,20,30,0.10);
}

.wizard-summary-title {
    margin: 0 0 24px 0;
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
}

.wizard-summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.wizard-summary-icon {
    font-size: 40px;
    line-height: 1;
}

.wizard-summary-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
}

.wizard-summary-details {
    margin-bottom: 20px;
}

.wizard-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
}

.wizard-summary-key {
    color: var(--muted);
    font-weight: 500;
}

.wizard-summary-val {
    color: var(--text);
    font-weight: 600;
}

.wizard-summary-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 0;
    border-top: 2px solid var(--line);
}

.wizard-summary-price-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--muted);
}

.wizard-summary-price-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
}

.wizard-form-panel {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(17,17,17,0.34);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 24px rgba(20,20,30,0.10);
}

.wizard-form-panel .form-group {
    margin-bottom: 24px;
}

.wizard-form-panel label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
}

.wizard-form-panel input[type="text"],
.wizard-form-panel input[type="tel"],
.wizard-form-panel textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cfd6df;
    border-radius: 14px;
    font-size: 16px;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wizard-form-panel input[type="text"]:focus,
.wizard-form-panel input[type="tel"]:focus,
.wizard-form-panel textarea:focus {
    outline: none;
    border-color: #16a5ee;
    box-shadow: 0 0 0 3px rgba(22, 165, 238, 0.12);
}

.wizard-form-panel textarea {
    resize: vertical;
    min-height: 100px;
}

.wizard-form-panel .file-drop {
    border: 2px dashed #222;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wizard-form-panel .file-drop:hover,
.wizard-form-panel .file-drop--dragover {
    border-color: #22a3ff;
    background: rgba(34, 163, 255, 0.04);
}

@media (max-width: 900px) {
    .wizard-checkout-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .wizard-summary-panel,
    .wizard-form-panel {
        padding: 20px;
    }

    .wizard-summary-icon {
        font-size: 32px;
    }
}


.contacts-checkout-layout {
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
    max-width: 1200px;
}

.checkout-summary-panel {
    position: sticky;
    top: 100px;
    background: var(--surface);
    border: 1px solid #222;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.checkout-summary-head h2 {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 600;
    color: var(--text);
}

.checkout-summary-head p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.checkout-summary-content {
    margin-top: 28px;
}

.summary-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.summary-item__icon {
    font-size: 48px;
    line-height: 1;
    flex-shrink: 0;
}

.summary-item__content {
    flex: 1;
}

.summary-item__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

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

.summary-list li {
    padding: 8px 0;
    font-size: 16px;
    color: var(--text);
    line-height: 1.5;
}

.summary-list li strong {
    font-weight: 600;
    margin-right: 8px;
    color: var(--text);
}

.summary-price-box {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 2px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-price-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--muted);
}

.summary-price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
}

.checkout-form-panel {
    background: var(--surface);
    border: 1px solid #222;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.checkout-form-head h1 {
    margin: 0 0 8px 0;
    font-size: 32px;
    font-weight: 600;
}

.checkout-form-head p {
    margin: 0 0 32px 0;
    color: var(--muted);
    font-size: 16px;
}

.checkout-form .form-group {
    margin-bottom: 28px;
}

.checkout-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
}

.required-mark {
    color: #ff3e3e;
}

.label-hint {
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
    margin-left: 4px;
}

.checkout-form input[type="text"],
.checkout-form input[type="tel"],
.checkout-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #222;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: var(--surface);
}

.checkout-form input[type="text"]:focus,
.checkout-form input[type="tel"]:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: #22a3ff;
    box-shadow: 0 0 0 3px rgba(34, 163, 255, 0.12);
}

.checkout-form textarea {
    resize: vertical;
    min-height: 120px;
}

.file-drop {
    border: 2px dashed #222;
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--surface);
}

.file-drop:hover,
.file-drop--dragover {
    border-color: #22a3ff;
    background: rgba(34, 163, 255, 0.04);
}

.file-drop__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.file-drop__icon {
    font-size: 52px;
    line-height: 1;
}

.file-drop__text {
    font-size: 16px;
    color: var(--text);
}

.file-drop__link {
    color: #22a3ff;
    text-decoration: underline;
    cursor: pointer;
}

.file-drop__sub {
    font-size: 14px;
    color: var(--muted);
}

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

.file-drop__filename {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    word-break: break-word;
}

.file-drop__remove {
    background: #ff3e3e;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.file-drop__remove:hover {
    background: #e02020;
}

.checkout-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

@media (max-width: 1024px) {
    .contacts-checkout-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .checkout-summary-panel {
        position: static;
    }
}

@media (max-width: 600px) {
    .checkout-summary-panel,
    .checkout-form-panel {
        padding: 24px;
    }

    .checkout-form-head h1 {
        font-size: 26px;
    }

    .summary-item__icon {
        font-size: 36px;
    }

    .checkout-actions {
        flex-direction: column;
    }

    .checkout-actions .btn {
        width: 100%;
    }

    .file-drop {
        padding: 32px 24px;
    }
}
    background: #fff;
}

.size-chart-preview__head {
    margin-bottom: 12px;
}

.size-chart-preview__img {
    display: block;
    width: auto;
    height: auto;
    max-width: 520px;
    max-height: 340px;
    object-fit: contain;
    margin: 0 auto;
    border: none;
    background: transparent;
    border-radius: 16px;
}


.tshirt-order-container {
    width: min(1280px, calc(100% - 64px));
}

.tshirt-wizard-card {
    padding: 26px;
}

.tshirt-wizard-head {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    align-items: end;
    margin-bottom: 24px;
}

.tshirt-section-head {
    margin: 0;
}

.tshirt-section-head h1 {
    font-size: clamp(34px, 4vw, 48px);
    line-height: 0.95;
    margin: 0 0 12px;
}

.tshirt-section-head p {
    font-size: 16px;
    line-height: 1.3;
    margin: 0;
}

.tshirt-stepper {
    margin: 0;
    grid-template-columns: repeat(5, minmax(120px, 1fr));
}

.tshirt-size-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 24px;
    align-items: flex-start;
}

.tshirt-size-options {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.tshirt-size-options .wizard-title {
    margin-bottom: 16px;
}

.tshirt-size-options .form-group {
    margin-top: 0;
}

.tshirt-size-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    align-self: start;
    margin-top: -10px;
}

.tshirt-size-grid .choice-pill span {
    min-height: 58px;
}

#tshirtWizardForm .size-chart-preview {
    width: 100%;
    max-width: 390px;
    margin: 0;
    margin-top: 38px;
    padding: 16px;
    border: 1px solid #222;
    border-radius: 22px;
    background: #fff;
    align-self: flex-start;
}

#tshirtWizardForm .size-chart-preview__head {
    margin-bottom: 12px;
    font-weight: 700;
}

#tshirtWizardForm .size-chart-preview__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
    border: none;
    border-radius: 16px;
    background: transparent;
}

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

    .tshirt-wizard-head,
    .tshirt-size-layout {
        grid-template-columns: 1fr;
    }

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

    #tshirtWizardForm .size-chart-preview {
        max-width: 520px;
        margin: 8px auto 0;
    }
}

@media (max-width: 700px) {
    .tshirt-wizard-card {
        padding: 18px;
    }

    .tshirt-stepper,
    .tshirt-size-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 480px) {
    .tshirt-stepper,
    .tshirt-size-grid {
        grid-template-columns: 1fr !important;
    }
}


.tshirt-wizard-head {
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
    gap: 24px;
    margin-bottom: 26px;
}

.tshirt-section-head {
    margin: 0;
}

.tshirt-section-head h1 {
    margin: 0;
    line-height: 1;
}

.tshirt-section-head p {
    display: none;
}

.tshirt-stepper {
    margin: 0;
    padding-top: 2px;
    align-self: start;
}

.tshirt-stepper .stepper__step {
    min-height: 52px;
}

.tshirt-size-layout {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 24px;
    align-items: start;
}

.tshirt-size-options .wizard-title {
    margin-top: 0;
    margin-bottom: 16px;
    line-height: 1;
}

.tshirt-size-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    align-items: start;
    margin-top: -10px;
}

#tshirtWizardForm .size-chart-preview {
    margin-top: 38px;
    align-self: flex-start;
}

#tshirtWizardForm .size-chart-preview__img {
    max-height: 300px;
}

@media (max-width: 1100px) {
    .tshirt-wizard-head {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .tshirt-stepper {
        padding-top: 0;
    }

    .tshirt-size-layout {
        grid-template-columns: 1fr;
    }

    #tshirtWizardForm .size-chart-preview {
        margin: 8px auto 0;
    }
}


.contacts-page {
    max-width: 900px;
    margin: 0 auto;
}

.contacts-head {
    margin-bottom: 24px;
}

.contacts-head h1 {
    margin: 0 0 10px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 0.95;
}

.contacts-head p {
    margin: 0;
    color: var(--muted);
    font-size: 22px;
}

.printlab-contact-card {
    padding: 28px;
    border: 1px solid #222;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
}

.printlab-contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    flex-wrap: wrap;
}

.printlab-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.printlab-contact-label {
    color: var(--muted);
    font-size: 18px;
    font-weight: 700;
}

.printlab-phone-link {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: #111;
    line-height: 1;
}

.printlab-phone-link:hover {
    opacity: 0.72;
}

.printlab-messenger-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.messenger-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(0,0,0,0.14);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.messenger-icon:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.messenger-telegram {
    background: #229ED9;
}

.messenger-whatsapp {
    background: #25D366;
}

.messenger-viber {
    background: #7360F2;
}

@media (max-width: 640px) {
    .printlab-contact-card {
        padding: 22px;
    }

    .printlab-contact-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .messenger-icon {
        width: 44px;
        height: 44px;
    }
}

.footer-inner--contacts-only {
    justify-content: flex-end;
}

.printlab-footer-contacts {
    display: grid;
    gap: 10px;
    text-align: right;
}

.footer-phone-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-phone-link {
    font-weight: 800;
    color: #111;
    border-bottom: 1px solid #111;
}

.footer-socials {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.footer-social--telegram { background: #229ED9; }
.footer-social--whatsapp { background: #25D366; }
.footer-social--viber { background: #7360F2; }








#plaqueWizardForm .choice-pill input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

#plaqueWizardForm .choice-pill span::before {
    content: none !important;
    display: none !important;
}

#plaqueWizardForm .price-box {
    min-width: 74px;
    min-height: 42px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

#plaqueWizardForm .price-box:empty::before {
    content: "—";
    font-weight: 800;
    color: #111;
}

#plaqueWizardForm .size-chart-preview {
    width: 100%;
    max-width: 100%;
    margin: 18px auto 0;
}

#plaqueWizardForm .size-chart-preview__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 700px) {
    #plaqueWizardForm .size-chart-preview {
        padding: 12px;
    }

    #plaqueWizardForm .size-chart-preview__img {
        max-width: 100%;
    }
}

.plaque-wizard-card {
    padding: 26px;
}

.plaque-wizard-head {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 26px;
}

.plaque-section-head {
    margin: 0;
}

.plaque-section-head h1 {
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1;
    margin: 0;
}

.plaque-stepper {
    margin: 0;
    padding-top: 2px;
    align-self: start;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plaque-stepper .stepper__step {
    min-height: 52px;
}

@media (max-width: 1100px) {
    .plaque-wizard-head {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .plaque-stepper {
        padding-top: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .plaque-wizard-card {
        padding: 18px;
    }

    .plaque-stepper {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 480px) {
    .plaque-stepper {
        grid-template-columns: 1fr !important;
    }
}

.cup-wizard-card {
    padding: 26px;
}

.cup-wizard-head {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 26px;
}

.cup-section-head {
    margin: 0;
}

.cup-section-head h1 {
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1;
    margin: 0;
}

.cup-stepper {
    margin: 0;
    padding-top: 2px;
    align-self: start;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cup-stepper .stepper__step {
    min-height: 52px;
}

@media (max-width: 1100px) {
    .cup-wizard-head {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cup-stepper {
        padding-top: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .cup-wizard-card {
        padding: 18px;
    }

    .cup-stepper {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 480px) {
    .cup-stepper {
        grid-template-columns: 1fr !important;
    }
}