:root {
    color-scheme: light;
    --font-body: Inter, "SF Pro Display", "SF Pro Text", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
    --ink: #171714;
    --muted: #6e6e68;
    --line: #deded7;
    --soft-line: #ecece6;
    --canvas: #f5f5f1;
    --surface: #ffffff;
    --soft-surface: #fafaf7;
    --accent: #d94b2b;
    --accent-dark: #b7371b;
    --accent-soft: #fff0eb;
    --accent-border-soft: #efd0c5;
    --success: #247b4a;
    --success-soft: #edf8f1;
    --warning: #9b6414;
    --warning-soft: #fff7e7;
    --error: #b43b35;
    --error-soft: #fff0ef;
    --shadow: 0 24px 70px rgba(29, 29, 24, 0.08);
    --header-surface: rgba(255, 255, 255, 0.88);
    --header-border: rgba(222, 222, 215, 0.9);
    --header-foreground: var(--ink);
    --header-muted: var(--muted);
    --header-back: #4f4f4a;
    --brand-mark-surface: var(--ink);
    --brand-mark-foreground: #fff;
    --brand-name-foreground: var(--header-foreground);
    --brand-logo-surface: #fff;
    --brand-logo-border: rgba(23, 23, 20, 0.12);
    --brand-logo-shadow: 0 8px 22px rgba(23, 23, 20, 0.1);
    --brand-logo-radius: 13px;
    --brand-logo-mark-size: 42px;
    --brand-logo-size: 34px;
    --brand-logo-fit: contain;
    --strong-surface: var(--ink);
    --strong-foreground: #fff;
    --focus-ring: rgba(217, 75, 43, 0.11);
    --focus-ring-strong: rgba(217, 75, 43, 0.18);
    --focus-ring-accessory: rgba(217, 75, 43, 0.2);
    --screen-protector-image: none;
    --rugged-case-image: none;
    --lens-protector-image: none;
    --charging-cable-image: none;
    --screen-protector-icon-opacity: 1;
    --rugged-case-icon-opacity: 1;
    --lens-protector-icon-opacity: 1;
    --charging-cable-icon-opacity: 1;
    --accent-shadow-soft: rgba(217, 75, 43, 0.08);
    --accent-shadow: rgba(217, 75, 43, 0.22);
    --accent-decoration: rgba(217, 75, 43, 0.08);
    --accent-border: rgba(217, 75, 43, 0.62);
    --accent-selection-surface: #fff8f4;
    --accent-selection-shadow: rgba(141, 65, 39, 0.09);
    --accent-choice-foreground: #a43e25;
    --accent-choice-surface: #fff1ea;
}

* {
    box-sizing: border-box;
}

*[hidden] {
    display: none !important;
}

html {
    background: var(--canvas);
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--ink);
    background: var(--canvas);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

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

a {
    color: inherit;
}

svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    height: 68px;
    border-bottom: 1px solid var(--header-border);
    background: var(--header-surface);
    color: var(--header-foreground);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1440px, calc(100% - 48px));
    height: 100%;
    margin: 0 auto;
}

.brand {
    display: inline-flex;
    gap: 11px;
    align-items: center;
    text-decoration: none;
}

.brand__mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    color: var(--brand-mark-foreground);
    background: var(--brand-mark-surface);
    font-size: 16px;
    font-weight: 850;
    letter-spacing: -0.06em;
}

.brand__mark.has-logo {
    width: var(--brand-logo-mark-size);
    height: var(--brand-logo-mark-size);
    overflow: hidden;
    border: 1px solid var(--brand-logo-border);
    border-radius: var(--brand-logo-radius);
    background: var(--brand-logo-surface);
    box-shadow: var(--brand-logo-shadow);
}

.brand__logo {
    display: block;
    width: var(--brand-logo-size);
    height: var(--brand-logo-size);
    object-fit: var(--brand-logo-fit);
    object-position: center;
}

.brand__logo[hidden],
.brand__fallback[hidden] {
    display: none;
}

.brand__copy {
    display: grid;
    gap: 1px;
    line-height: 1.1;
}

html[data-header-brand-layout="centered-logo"] .site-header__inner {
    position: relative;
}

html[data-header-brand-layout="centered-logo"] .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

html[data-header-brand-layout="centered-logo"] .brand__copy {
    display: none;
}

.brand__copy strong {
    color: var(--brand-name-foreground);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.brand__copy small {
    color: var(--header-muted);
    font-size: 11px;
    font-weight: 650;
}

.header-back {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    color: var(--header-back);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.header-back svg {
    width: 17px;
    height: 17px;
}

.header-back:hover {
    color: var(--accent);
}

.purchase-page {
    width: min(1440px, calc(100% - 48px));
    margin: 0 auto;
    padding: 18px 0 72px;
}

.breadcrumbs {
    display: flex;
    gap: 9px;
    align-items: center;
    min-height: 34px;
    margin-bottom: 14px;
    color: #85857e;
    font-size: 12px;
    font-weight: 650;
}

.breadcrumbs a {
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.purchase-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(490px, 0.95fr);
    overflow: clip;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.reservation-access-gate {
    display: flex;
    min-height: min(560px, calc(100vh - 150px));
    padding: clamp(38px, 7vw, 72px);
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: var(--shadow);
    text-align: center;
}

.reservation-access-gate__icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 25px;
    font-weight: 850;
}

.reservation-access-gate h1 {
    margin: 7px 0 12px;
    font-size: clamp(27px, 4vw, 40px);
    letter-spacing: -0.045em;
}

.reservation-access-gate > p:not(.eyebrow) {
    max-width: 500px;
    margin: 0 0 28px;
    color: var(--muted);
    line-height: 1.8;
}

.reservation-access-gate button {
    min-width: 160px;
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--accent);
    font-weight: 800;
    cursor: pointer;
}

.reservation-access-gate button:hover {
    background: var(--accent-dark);
}

.product-stage {
    min-width: 0;
    background:
        radial-gradient(circle at 50% 33%, rgba(255, 255, 255, 0.98) 0 17%, rgba(255, 255, 255, 0) 48%),
        linear-gradient(150deg, #f0f1ed 0%, #e8ebe6 54%, #f5f2ec 100%);
}

.product-stage__sticky {
    position: sticky;
    top: 86px;
    display: flex;
    min-height: calc(100vh - 122px);
    padding: 30px 42px 34px;
    flex-direction: column;
}

.product-badge-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-badge,
.availability-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    border: 1px solid rgba(23, 23, 20, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.availability-badge {
    gap: 7px;
}

.availability-badge i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #98988f;
}

.availability-badge[data-tone="success"] {
    color: var(--success);
    border-color: rgba(36, 123, 74, 0.2);
    background: rgba(237, 248, 241, 0.88);
}

.availability-badge[data-tone="success"] i {
    background: var(--success);
}

.availability-badge[data-tone="warning"] {
    color: var(--warning);
    border-color: rgba(155, 100, 20, 0.2);
    background: rgba(255, 247, 231, 0.9);
}

.availability-badge[data-tone="warning"] i {
    background: var(--warning);
}

.availability-badge[data-tone="error"] {
    color: var(--error);
    border-color: rgba(180, 59, 53, 0.2);
    background: rgba(255, 240, 239, 0.9);
}

.availability-badge[data-tone="error"] i {
    background: var(--error);
}

.product-media {
    position: relative;
    display: grid;
    min-height: 430px;
    flex: 1 1 auto;
    place-items: center;
}

.product-media::after {
    position: absolute;
    right: 12%;
    bottom: 9%;
    left: 12%;
    height: 32px;
    border-radius: 50%;
    background: rgba(38, 41, 38, 0.16);
    content: "";
    filter: blur(18px);
}

.product-media > img {
    position: relative;
    z-index: 2;
    display: block;
    width: min(76%, 520px);
    height: 410px;
    object-fit: contain;
    filter: drop-shadow(0 32px 30px rgba(35, 37, 34, 0.18));
}

.device-placeholder {
    position: relative;
    z-index: 2;
    width: 206px;
    height: 398px;
    border: 9px solid #242622;
    border-radius: 44px;
    background:
        radial-gradient(circle at 72% 25%, rgba(255, 255, 255, 0.78), transparent 8%),
        radial-gradient(circle at 45% 68%, #bd7051, transparent 27%),
        linear-gradient(145deg, #738980 0%, #27322f 38%, #141918 100%);
    box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, 0.18),
        0 35px 52px rgba(31, 34, 31, 0.26);
    transform: rotate(7deg);
}

.device-placeholder__camera {
    position: absolute;
    top: 11px;
    left: 50%;
    width: 72px;
    height: 22px;
    border-radius: 15px;
    background: #101210;
    transform: translateX(-50%);
}

.device-placeholder__lens {
    position: absolute;
    width: 28px;
    height: 28px;
    border: 7px solid #171a18;
    border-radius: 50%;
    background: #60716a;
    box-shadow: 0 0 0 2px rgba(224, 228, 221, 0.38);
}

.device-placeholder__lens--one {
    top: 54px;
    left: 22px;
}

.device-placeholder__lens--two {
    top: 90px;
    left: 58px;
}

.device-placeholder__shine {
    position: absolute;
    top: 16%;
    right: 12%;
    width: 48px;
    height: 190px;
    border-radius: 50%;
    background: linear-gradient(rgba(255, 255, 255, 0.18), transparent);
    filter: blur(14px);
}

.media-loading {
    position: absolute;
    z-index: 4;
    display: flex;
    gap: 9px;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid rgba(23, 23, 20, 0.08);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    font-weight: 700;
}

.media-loading span,
.spinner {
    display: block;
    width: 16px;
    height: 16px;
    border: 2px solid #d8d8d1;
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
}

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

.product-caption {
    position: relative;
    z-index: 3;
    max-width: 650px;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.2em;
}

.product-caption h1 {
    margin: 0;
    font-size: clamp(34px, 3.3vw, 54px);
    font-weight: 850;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.product-description {
    max-width: 580px;
    margin: 14px 0 0;
    color: #62625d;
    font-size: 14px;
    line-height: 1.75;
}

.selected-configuration {
    display: flex;
    gap: 28px;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 22px;
    padding: 18px 0;
    border-top: 1px solid rgba(23, 23, 20, 0.12);
    border-bottom: 1px solid rgba(23, 23, 20, 0.12);
}

.selected-configuration > div {
    display: grid;
    gap: 5px;
}

.selected-configuration span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.selected-configuration strong {
    font-size: 16px;
    font-weight: 800;
}

.selected-configuration__price {
    text-align: right;
}

.selected-configuration__price strong {
    color: var(--accent);
    font-size: 21px;
}

.service-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.service-strip > div {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    min-width: 0;
    color: #71716b;
    font-size: 11px;
    line-height: 1.45;
}

.service-strip svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: var(--accent);
}

.service-strip span {
    display: grid;
}

.service-strip strong {
    color: #353531;
    font-size: 12px;
}

.configuration-panel {
    min-width: 0;
    padding: 48px 48px 38px;
    border-left: 1px solid var(--line);
    background: var(--surface);
}

.mobile-product-float {
    display: none;
}

.configuration-header {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--soft-line);
}

.configuration-header h2 {
    max-width: 590px;
    margin: 0;
    font-size: clamp(31px, 3vw, 46px);
    font-weight: 840;
    letter-spacing: -0.052em;
    line-height: 1.08;
}

.configuration-header > p:last-child {
    max-width: 590px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.load-state,
.load-error {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 28px;
    padding: 18px;
    border: 1px solid var(--soft-line);
    border-radius: 16px;
    background: var(--soft-surface);
}

.load-state .spinner {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.load-state strong,
.load-error strong {
    display: block;
    margin-bottom: 3px;
    font-size: 14px;
}

.load-state p,
.load-error p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.load-error {
    display: block;
    border-color: #f0c8c5;
    background: var(--error-soft);
}

.load-error a {
    display: inline-flex;
    margin-top: 12px;
    color: var(--error);
    font-size: 12px;
    font-weight: 800;
}

.selection-step {
    min-width: 0;
    margin: 0;
    padding: 32px 0 34px;
    border: 0;
    border-bottom: 1px solid var(--soft-line);
}

.selection-step:disabled {
    opacity: 0.62;
}

.selection-step legend,
.details-step__heading {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
}

.step-number {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid #d7d7cf;
    border-radius: 50%;
    color: #5f5f59;
    background: #fff;
    font-size: 12px;
    font-weight: 850;
}

.selection-step legend > span:last-child,
.details-step__heading > span:last-child {
    display: grid;
    gap: 3px;
}

.selection-step legend small,
.details-step__heading small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.selection-step legend strong,
.details-step__heading strong {
    font-size: 19px;
    font-weight: 820;
    letter-spacing: -0.025em;
}

.option-grid {
    display: grid;
    gap: 10px;
}

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

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

.spec-option,
.color-option {
    position: relative;
    cursor: pointer;
}

.spec-option input,
.color-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.spec-option {
    display: flex;
    gap: 10px;
    min-height: 86px;
    padding: 17px 16px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d7d7d0;
    border-radius: 14px;
    background: #fff;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.spec-option:hover {
    border-color: #9d9d95;
    transform: translateY(-1px);
}

.spec-option:has(input:focus-visible),
.color-option:has(input:focus-visible) {
    outline: 3px solid var(--focus-ring-strong);
    outline-offset: 2px;
}

.spec-option:has(input:checked) {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 10px 24px var(--accent-shadow-soft);
}

.spec-option:has(input:checked)::after,
.color-option:has(input:checked)::after {
    position: absolute;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--accent);
    content: "✓";
    font-size: 11px;
    font-weight: 900;
}

.spec-option:has(input:checked)::after {
    top: -7px;
    right: -7px;
}

.spec-option__copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.spec-option__copy strong {
    font-size: 16px;
    font-weight: 820;
}

.spec-option__copy small,
.spec-option > b {
    color: var(--muted);
    font-size: 11px;
    font-weight: 650;
}

.spec-option > b {
    color: #3c3c37;
    text-align: right;
}

.color-option {
    display: flex;
    gap: 9px;
    min-height: 54px;
    padding: 11px 13px;
    align-items: center;
    border: 1px solid #d7d7d0;
    border-radius: 13px;
    background: #fff;
    font-size: 13px;
    font-weight: 750;
    transition: border-color 0.16s ease, opacity 0.16s ease;
}

.color-option:hover {
    border-color: #9d9d95;
}

.color-option:has(input:checked) {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.color-option:has(input:checked)::after {
    top: -7px;
    right: -7px;
}

.color-option i {
    width: 23px;
    height: 23px;
    flex: 0 0 auto;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--swatch);
    box-shadow: 0 0 0 1px rgba(23, 23, 20, 0.2);
}

.color-option.is-unavailable {
    cursor: not-allowed;
    opacity: 0.34;
}

.field-help {
    margin: 12px 0 0 44px;
    color: #85857e;
    font-size: 11px;
    line-height: 1.55;
}

.variant-result {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 24px 0 2px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--soft-surface);
}

.variant-result__icon {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: #686862;
    background: #ecece6;
}

.variant-result__icon svg {
    width: 17px;
    height: 17px;
}

.variant-result strong {
    display: block;
    margin: 1px 0 4px;
    font-size: 13px;
    font-weight: 820;
}

.variant-result p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.variant-result[data-tone="success"] {
    border-color: #c9e2d3;
    background: var(--success-soft);
}

.variant-result[data-tone="success"] .variant-result__icon {
    color: var(--success);
    background: #d8eee1;
}

.variant-result[data-tone="warning"] {
    border-color: #ead5af;
    background: var(--warning-soft);
}

.variant-result[data-tone="warning"] .variant-result__icon {
    color: var(--warning);
    background: #f6e7c9;
}

.variant-result[data-tone="error"] {
    border-color: #edc6c2;
    background: var(--error-soft);
}

.variant-result[data-tone="error"] .variant-result__icon {
    color: var(--error);
    background: #f6d9d6;
}

.member-gate {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding: 16px;
    border: 1px solid #ead5af;
    border-radius: 15px;
    background: var(--warning-soft);
}

.member-gate[hidden] {
    display: none;
}

.member-gate__copy {
    min-width: 0;
}

.member-gate__copy small {
    display: block;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.member-gate__copy strong {
    display: block;
    font-size: 13px;
    font-weight: 850;
}

.member-gate__copy p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

.member-gate button {
    min-height: 40px;
    flex: 0 0 auto;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: #06c755;
    font: inherit;
    font-size: 11px;
    font-weight: 850;
    cursor: pointer;
}

.member-gate button:disabled {
    color: #8b8b84;
    background: #dfdfd8;
    cursor: not-allowed;
}

.member-gate[data-tone="success"] {
    border-color: #c9e2d3;
    background: var(--success-soft);
}

.member-gate[data-tone="error"] {
    border-color: #edc6c2;
    background: var(--error-soft);
}

.details-step {
    padding: 34px 0;
    border-bottom: 1px solid var(--soft-line);
}

.accessory-addons {
    margin-top: 30px;
    padding: 25px;
    border: 1px solid #e6e2da;
    border-radius: 20px;
    background:
        radial-gradient(circle at 92% 3%, var(--accent-decoration), transparent 31%),
        linear-gradient(145deg, #fffdfa, #f8f7f2);
}

.accessory-addons__header {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 21px;
}

.accessory-addons__eyebrow {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.15em;
}

.accessory-addons__header h3 {
    margin: 0;
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.25;
    letter-spacing: -0.035em;
}

.accessory-addons__header > div > p:last-child {
    max-width: 500px;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
}

.accessory-addons__preview-badge {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid var(--accent-border-soft);
    border-radius: 999px;
    color: var(--accent-dark);
    background: var(--accent-soft);
    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
}

.accessory-product-catalog {
    display: grid;
    gap: 14px;
}

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

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

.accessory-card {
    position: relative;
    display: block;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e2e1da;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 28px rgba(32, 32, 27, 0.06);
    cursor: pointer;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.accessory-card:hover {
    border-color: var(--accent-border-soft);
    transform: translateY(-1px);
}

.accessory-card:focus-within {
    outline: 3px solid var(--focus-ring-accessory);
    outline-offset: 2px;
}

.accessory-card.is-selected {
    border-color: var(--accent);
    box-shadow: 0 12px 30px var(--accent-shadow);
}

.accessory-card__input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.accessory-card__check {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 1px solid rgba(117, 117, 108, 0.24);
    border-radius: 50%;
    color: transparent;
    background: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 900;
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.accessory-card.is-selected .accessory-card__check {
    border-color: var(--accent);
    color: #fff;
    background: var(--accent);
}

.accessory-card__visual {
    display: grid;
    height: 112px;
    place-items: center;
    border-bottom: 1px solid rgba(222, 222, 215, 0.72);
    color: #62757f;
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.95), transparent 47%),
        #edf3f5;
}

.accessory-card__visual--protector {
    background:
        var(--screen-protector-image) center / cover no-repeat,
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.95), transparent 47%),
        #edf3f5;
}

.accessory-card__visual--protector svg {
    opacity: var(--screen-protector-icon-opacity);
}

.accessory-card__visual--case {
    color: #8b654e;
    background:
        var(--rugged-case-image) center / cover no-repeat,
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.92), transparent 47%),
        #f3eee7;
}

.accessory-card__visual--case svg {
    opacity: var(--rugged-case-icon-opacity);
}

.accessory-card__visual--lens {
    color: #76627e;
    background:
        var(--lens-protector-image) center / cover no-repeat,
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.93), transparent 47%),
        #f1edf4;
}

.accessory-card__visual--lens svg {
    opacity: var(--lens-protector-icon-opacity);
}

.accessory-card__visual--charger {
    color: #5c7662;
    background:
        var(--charging-cable-image) center / cover no-repeat,
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.92), transparent 47%),
        #edf3eb;
}

.accessory-card__visual--charger svg {
    opacity: var(--charging-cable-icon-opacity);
}

.accessory-card__visual svg {
    width: 92px;
    height: 75px;
    stroke-width: 2;
}

.accessory-card__body {
    display: block;
    padding: 14px;
}

.accessory-card__body > small {
    color: var(--accent);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.accessory-card__name {
    display: block;
    margin: 5px 0 7px;
    font-size: 13px;
    line-height: 1.35;
    letter-spacing: -0.015em;
}

.accessory-card__description {
    display: block;
    min-height: 31px;
    margin: 0;
    color: #898981;
    font-size: 9px;
    line-height: 1.55;
}

.accessory-card__footer {
    display: grid;
    gap: 10px;
    margin-top: 13px;
}

.accessory-card__footer strong {
    color: #5e5e57;
    font-size: 10px;
    font-weight: 780;
}

.accessory-card__action {
    display: grid;
    width: 100%;
    min-height: 34px;
    place-items: center;
    border-radius: 10px;
    color: #66665f;
    background: #ebebe6;
    font-size: 10px;
    font-weight: 800;
    transition: color 160ms ease, background 160ms ease;
}

.accessory-card.is-selected .accessory-card__action {
    color: var(--accent-choice-foreground);
    background: var(--accent-choice-surface);
}

.accessory-addons__summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3px 14px;
    align-items: center;
    padding: 14px 15px;
    border: 1px solid var(--accent-border-soft);
    border-radius: 14px;
    background: var(--accent-soft);
}

.accessory-addons__summary > span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
}

.accessory-addons__summary > strong {
    justify-self: end;
    color: var(--accent-dark);
    font-size: 15px;
    font-weight: 880;
}

.accessory-addons__summary > small {
    grid-column: 1 / -1;
    color: #77776f;
    font-size: 9px;
    line-height: 1.55;
}

.accessory-service-options {
    min-width: 0;
    margin: 18px 0 0;
    padding: 17px;
    border: 1px solid #ddd8ce;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.78);
}

.accessory-service-options legend {
    padding: 0 7px;
    color: #272722;
    font-size: 13px;
    font-weight: 850;
}

.accessory-service-options__hint {
    margin: 0 0 13px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.55;
}

.accessory-service-options__checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.accessory-service-option {
    position: relative;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    min-width: 0;
    padding: 13px 12px;
    border: 1px solid #deded8;
    border-radius: 13px;
    background: #fff;
    cursor: pointer;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.accessory-service-option:hover {
    border-color: #c9c8c1;
}

.accessory-service-option:has(input:checked) {
    border-color: var(--accent-border);
    background: var(--accent-selection-surface);
    box-shadow: 0 5px 15px var(--accent-selection-shadow);
}

.accessory-service-option:has(input:focus-visible),
.accessory-telecom-options__choices label:has(input:focus-visible) {
    outline: 3px solid var(--focus-ring-accessory);
    outline-offset: 2px;
}

.accessory-service-option input,
.accessory-telecom-options__choices input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.accessory-service-option__mark {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    border: 1.5px solid #c9c8c1;
    border-radius: 5px;
    background: #fff;
}

.accessory-service-option input:checked + .accessory-service-option__mark {
    border-color: var(--accent);
    background: var(--accent);
}

.accessory-service-option input:checked + .accessory-service-option__mark::after {
    position: absolute;
    top: 3px;
    left: 5px;
    width: 5px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    content: '';
    transform: rotate(45deg);
}

.accessory-service-option strong {
    display: block;
    color: #30302b;
    font-size: 11px;
    line-height: 1.35;
}

.accessory-service-option small {
    display: block;
    margin-top: 4px;
    color: #8a8a82;
    font-size: 9px;
    line-height: 1.45;
}

.accessory-telecom-options {
    display: grid;
    grid-template-columns: minmax(108px, 0.6fr) minmax(230px, 1.4fr);
    gap: 12px;
    align-items: center;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid #ece8df;
}

.accessory-telecom-options__heading strong {
    display: block;
    color: #30302b;
    font-size: 11px;
}

.accessory-telecom-options__heading small {
    display: block;
    margin-top: 3px;
    color: #97978f;
    font-size: 9px;
}

.accessory-telecom-options__choices {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
}

.accessory-telecom-options__choices label {
    position: relative;
    min-width: 0;
    cursor: pointer;
}

.accessory-telecom-options__choices span {
    display: grid;
    min-height: 34px;
    place-items: center;
    padding: 7px 5px;
    border: 1px solid #deded8;
    border-radius: 10px;
    color: #66665f;
    background: #fff;
    font-size: 10px;
    font-weight: 800;
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.accessory-telecom-options__choices input:checked + span {
    border-color: var(--accent);
    color: var(--accent-choice-foreground);
    background: var(--accent-choice-surface);
}

.accessory-addons__notice {
    margin: 17px 0 0;
    padding-top: 14px;
    border-top: 1px dashed #ddd8ce;
    color: #8a8a82;
    font-size: 9px;
    line-height: 1.6;
}

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

.field {
    display: grid;
    gap: 8px;
    min-width: 0;
}

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

.field > span {
    color: #4d4d48;
    font-size: 12px;
    font-weight: 780;
}

.field em {
    margin-left: 5px;
    color: var(--accent);
    font-size: 10px;
    font-style: normal;
}

.field em.is-optional {
    color: #8a8a82;
}

.field > span small {
    margin-left: 5px;
    color: #97978f;
    font-weight: 650;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #d7d7d0;
    border-radius: 12px;
    outline: none;
    background: #fff;
    font-size: 14px;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.field input,
.field select {
    height: 52px;
    padding: 0 14px;
}

.field select {
    padding-right: 40px;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #777770 50%),
        linear-gradient(135deg, #777770 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 22px,
        calc(100% - 13px) 22px;
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
}

.field textarea {
    min-height: 112px;
    padding: 13px 14px;
    resize: vertical;
    line-height: 1.6;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #adada5;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: #aaa9a1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--focus-ring);
}

.field select:disabled {
    cursor: wait;
    color: #999990;
    background-color: #f3f3ef;
}

.field-meta {
    min-height: 17px;
    color: #8a8a82;
    font-size: 10px;
    line-height: 1.5;
}

.field-meta[data-mode="notify"] {
    color: #8b5d18;
    font-weight: 750;
}

.character-count {
    justify-self: end;
    margin-top: -27px;
    margin-right: 11px;
    padding: 3px 7px;
    border-radius: 6px;
    color: #8d8d85;
    background: rgba(255, 255, 255, 0.9);
    font-size: 9px;
}

.character-count b {
    font-weight: 750;
}

.post-accessory-remark {
    margin-top: 22px;
    padding: 18px;
    border: 1px solid var(--soft-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 9px 24px rgba(29, 31, 27, 0.035);
}

.agreement {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 28px;
    padding: 17px;
    border: 1px solid var(--soft-line);
    border-radius: 14px;
    background: var(--soft-surface);
    cursor: pointer;
}

.agreement input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    flex: 0 0 auto;
    accent-color: var(--accent);
}

.agreement span {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
}

.agreement strong {
    display: block;
    color: #41413c;
    font-size: 12px;
}

.submit-error {
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid #edc6c2;
    border-radius: 12px;
    color: var(--error);
    background: var(--error-soft);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.55;
}

.reservation-review {
    position: sticky;
    z-index: 8;
    bottom: 14px;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding: 15px;
    border: 1px solid rgba(213, 213, 206, 0.92);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 16px 44px rgba(27, 27, 24, 0.13);
    backdrop-filter: blur(16px);
}

.review-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.review-copy > span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.review-copy strong {
    overflow: hidden;
    max-width: 310px;
    font-size: 13px;
    font-weight: 820;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.review-copy small {
    overflow: hidden;
    max-width: 310px;
    color: var(--muted);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.review-action > strong {
    color: var(--accent);
    font-size: 15px;
    white-space: nowrap;
}

.review-action button {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    min-width: 178px;
    height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: var(--accent);
    box-shadow: 0 9px 20px var(--accent-shadow);
    cursor: pointer;
    font-size: 12px;
    font-weight: 820;
    transition: background 0.16s ease, transform 0.16s ease, opacity 0.16s ease;
}

.review-action button svg {
    width: 16px;
    height: 16px;
}

.review-action button:hover:not(:disabled) {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.review-action button:disabled {
    color: #9a9a93;
    background: #e8e8e2;
    box-shadow: none;
    cursor: not-allowed;
}

.review-action button[aria-busy="true"] svg {
    display: none;
}

.pos-contract-note {
    max-width: 510px;
    margin: 13px auto 0;
    color: #92928a;
    font-size: 9px;
    line-height: 1.6;
    text-align: center;
}

.success-dialog {
    width: min(520px, calc(100% - 32px));
    padding: 34px;
    border: 0;
    border-radius: 24px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 30px 100px rgba(18, 18, 16, 0.28);
    text-align: center;
}

.success-dialog::backdrop {
    background: rgba(17, 18, 16, 0.62);
    backdrop-filter: blur(7px);
}

.dialog-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 34px;
    height: 34px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: #66665f;
    background: #fff;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

.success-icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--success);
    box-shadow: 0 14px 30px rgba(36, 123, 74, 0.2);
}

.success-icon svg {
    width: 29px;
    height: 29px;
    stroke-width: 2.3;
}

.success-dialog h2 {
    margin: 0;
    font-size: 29px;
    letter-spacing: -0.04em;
}

.reservation-number-label {
    margin: 24px 0 5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.reservation-number {
    display: block;
    color: var(--accent);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 25px;
    letter-spacing: 0.04em;
}

.success-summary {
    display: grid;
    gap: 0;
    margin-top: 24px;
    padding: 2px 18px;
    border: 1px solid var(--soft-line);
    border-radius: 15px;
    background: var(--soft-surface);
    text-align: left;
}

.success-summary > div {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid var(--soft-line);
}

.success-summary > div:last-child {
    border-bottom: 0;
}

.success-summary span {
    color: var(--muted);
    font-size: 11px;
}

.success-summary strong {
    max-width: 290px;
    font-size: 12px;
    text-align: right;
}

.success-note {
    margin: 18px 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.dialog-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    border-radius: 12px;
    color: var(--strong-foreground);
    background: var(--strong-surface);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 1120px) {
    .purchase-layout {
        grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    }

    .product-stage__sticky {
        padding-right: 30px;
        padding-left: 30px;
    }

    .configuration-panel {
        padding-right: 34px;
        padding-left: 34px;
    }

    .product-media {
        min-height: 380px;
    }

    .product-media > img {
        height: 350px;
    }

    .service-strip {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .service-strip > div {
        align-items: center;
    }

    .service-strip span {
        display: block;
    }

    .service-strip strong {
        margin-right: 5px;
    }

    .reservation-review {
        align-items: stretch;
        flex-direction: column;
    }

    .review-copy strong,
    .review-copy small {
        max-width: 100%;
    }

    .review-action {
        justify-content: space-between;
    }
}

@media (max-width: 840px) {
    .site-header {
        height: 62px;
    }

    .site-header__inner,
    .purchase-page {
        width: min(100% - 28px, 720px);
    }

    .purchase-page {
        padding-top: 10px;
    }

    .breadcrumbs {
        margin-bottom: 10px;
    }

    .purchase-layout {
        display: block;
        overflow: visible;
        border-radius: 22px;
    }

    .product-stage {
        border-radius: 21px 21px 0 0;
    }

    .product-stage__sticky {
        position: relative;
        top: auto;
        min-height: 0;
        padding: 22px 24px 25px;
    }

    .product-media {
        min-height: 360px;
    }

    .product-media > img {
        width: min(86%, 480px);
        height: 330px;
    }

    .device-placeholder {
        width: 168px;
        height: 324px;
        border-width: 7px;
        border-radius: 35px;
    }

    .configuration-panel {
        padding: 36px 24px 30px;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .configuration-header h2 {
        font-size: 36px;
    }

    .reservation-review {
        bottom: 8px;
    }
}

@media (max-width: 840px) and (orientation: portrait) {
    .mobile-product-float {
        position: fixed;
        z-index: 80;
        top: 74px;
        right: 14px;
        display: flex;
        width: min(196px, calc(100vw - 28px));
        min-height: 92px;
        gap: 11px;
        align-items: center;
        padding: 9px 12px 9px 9px;
        border: 1px solid rgba(23, 23, 20, 0.12);
        border-radius: 20px;
        opacity: 0;
        visibility: hidden;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 18px 45px rgba(30, 31, 28, 0.18);
        pointer-events: none;
        transform: translateY(-12px) scale(0.96);
        transform-origin: top right;
        transition:
            opacity 0.18s ease,
            transform 0.18s ease,
            visibility 0.18s ease;
        backdrop-filter: blur(18px);
    }

    .mobile-product-float.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .mobile-product-float__media {
        position: relative;
        display: grid;
        width: 62px;
        height: 74px;
        flex: 0 0 62px;
        overflow: hidden;
        place-items: center;
        border-radius: 14px;
        background:
            radial-gradient(circle at 50% 44%, #fff 0 18%, rgba(255, 255, 255, 0) 64%),
            #eef0ec;
    }

    .mobile-product-float__media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .mobile-float-placeholder {
        position: relative;
        width: 34px;
        height: 62px;
        border: 3px solid #282b28;
        border-radius: 10px;
        background:
            radial-gradient(circle at 66% 58%, #c17251, transparent 25%),
            linear-gradient(145deg, #71847d, #1a211f 56%);
        box-shadow: 0 8px 15px rgba(31, 34, 31, 0.2);
        transform: rotate(5deg);
    }

    .mobile-float-placeholder::before {
        position: absolute;
        top: 4px;
        left: 50%;
        width: 17px;
        height: 5px;
        border-radius: 999px;
        background: #111411;
        content: "";
        transform: translateX(-50%);
    }

    .mobile-float-placeholder::after {
        position: absolute;
        top: 13px;
        left: 5px;
        width: 8px;
        height: 8px;
        border: 2px solid #1a1d1b;
        border-radius: 50%;
        background: #778983;
        content: "";
    }

    .mobile-product-float__copy {
        display: grid;
        min-width: 0;
        gap: 3px;
    }

    .mobile-product-float__copy small {
        color: var(--accent);
        font-size: 8px;
        font-weight: 850;
        letter-spacing: 0.1em;
    }

    .mobile-product-float__copy strong,
    .mobile-product-float__copy span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-product-float__copy strong {
        font-size: 14px;
        font-weight: 850;
        letter-spacing: -0.02em;
    }

    .mobile-product-float__copy span {
        color: var(--muted);
        font-size: 10px;
        font-weight: 700;
    }
}

@media (max-width: 560px) {
    .site-header__inner,
    .purchase-page {
        width: min(100% - 20px, 520px);
    }

    .brand__copy small {
        display: none;
    }

    .header-back {
        font-size: 11px;
    }

    .purchase-page {
        padding-bottom: 28px;
    }

    .breadcrumbs {
        overflow: hidden;
        white-space: nowrap;
    }

    .breadcrumbs span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .purchase-layout {
        border-radius: 18px;
        box-shadow: 0 14px 42px rgba(29, 29, 24, 0.07);
    }

    .product-stage {
        border-radius: 17px 17px 0 0;
    }

    .product-stage__sticky {
        padding: 18px 18px 22px;
    }

    .product-media {
        min-height: 300px;
    }

    .product-media > img {
        height: 280px;
    }

    .device-placeholder {
        width: 142px;
        height: 275px;
        border-radius: 31px;
    }

    .product-caption h1 {
        font-size: 34px;
    }

    .service-strip {
        margin-top: 17px;
    }

    .configuration-panel {
        padding: 31px 18px 24px;
    }

    .configuration-header {
        padding-bottom: 25px;
    }

    .configuration-header h2 {
        font-size: 31px;
    }

    .selection-step,
    .details-step {
        padding: 28px 0;
    }

    .accessory-addons {
        margin-top: 25px;
        padding: 21px 16px 18px;
        border-radius: 18px;
    }

    .accessory-addons__header {
        display: grid;
        gap: 12px;
        margin-bottom: 17px;
    }

    .accessory-addons__header h3 {
        font-size: 22px;
        max-width: 132px;
    }

    .accessory-addons__preview-badge {
        justify-self: start;
    }

    .accessory-card-list {
        grid-template-columns: none;
        grid-auto-columns: minmax(218px, 82%);
        grid-auto-flow: column;
        gap: 12px;
        overflow-x: auto;
        margin-right: -16px;
        padding: 1px 16px 9px 1px;
        scroll-padding-left: 1px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .accessory-card-list::-webkit-scrollbar {
        display: none;
    }

    .accessory-card {
        scroll-snap-align: start;
    }

    .accessory-card__visual {
        height: 105px;
    }

    .accessory-service-options {
        margin-top: 14px;
        padding: 14px;
    }

    .accessory-service-options__checks {
        grid-template-columns: 1fr;
    }

    .post-accessory-remark {
        margin-top: 18px;
        padding: 16px 14px;
        border-radius: 14px;
    }

    .accessory-telecom-options {
        grid-template-columns: 1fr;
        gap: 9px;
    }

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

    .accessory-telecom-options__choices span {
        min-height: 42px;
    }

    .option-grid--spec,
    .option-grid--color,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .field--wide {
        grid-column: auto;
    }

    .field-help {
        margin-left: 0;
    }

    .color-option {
        min-height: 52px;
    }

    .member-gate {
        align-items: stretch;
        flex-direction: column;
    }

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

    .reservation-review {
        margin-right: -7px;
        margin-left: -7px;
        padding: 13px;
        border-radius: 15px;
    }

    .review-action {
        align-items: stretch;
        flex-direction: column;
    }

    .review-action > strong {
        align-self: flex-end;
    }

    .review-action button {
        width: 100%;
        min-width: 0;
    }

    .success-dialog {
        padding: 31px 20px 24px;
        border-radius: 20px;
    }

    .success-summary strong {
        max-width: 195px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
