        :root {
            --claim-nav-height: 58px;
            --claim-right-width: 342px;
            --claim-right-gap: 48px;
            --claim-panel-left-gap: clamp(28px, 2.4vw, 42px);
            --claim-video-panel-gap: clamp(20px, 1.8vw, 36px);
            --claim-home-modal-height: min(545px, calc(100vh - 96px));
            --claim-portrait-stage-height: clamp(300px, 34vh, 360px);
            --claim-scroll-fade-height: 36px;
        }

        html.claim-order-document {
            min-height: 100%;
            overflow-x: hidden;
        }

        body.claim-order-page {
            margin: 0;
            min-height: 100vh;
            background: #ffffff;
            color: #171a20;
            overflow-x: hidden;
        }

        .claim-order-page *,
        .claim-order-page *::before,
        .claim-order-page *::after {
            box-sizing: border-box;
        }

        .claim-order-nav {
            position: fixed;
            inset: 0 0 auto;
            height: var(--claim-nav-height);
            z-index: 3000;
            display: flex;
            align-items: center;
            padding: 0 48px;
            background: #ffffff;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .claim-order-logo {
            font-family: "Tesla", "Inter", sans-serif;
            color: #171a20;
            font-size: 1.20rem;
            font-weight: 400;
            letter-spacing: 0.48em;
            line-height: 1;
            text-decoration: none;
        }

        .claim-order-shell {
            min-height: 100vh;
            height: 100vh;
            display: grid;
            grid-template-columns: minmax(0, 1fr) calc(var(--claim-panel-left-gap) + var(--claim-right-width) + var(--claim-right-gap));
            column-gap: 0;
            padding-top: var(--claim-nav-height);
            transition: column-gap 0.24s ease;
        }

        .claim-model-stage {
            min-height: calc(100vh - var(--claim-nav-height));
            height: calc(100vh - var(--claim-nav-height));
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 0;
            touch-action: pan-y;
        }

        .claim-model-image {
            display: block;
            position: absolute;
            top: 50%;
            left: 50%;
            width: min(130%, 1980px);
            max-width: none;
            height: auto;
            object-fit: contain;
            transform: translate(-50%, -50%);
            opacity: 1;
            transition: opacity 0.22s ease;
        }

        .claim-model-image.is-fading {
            opacity: 0;
        }

        .claim-fsd-video-layer {
            position: absolute;
            inset: 0;
            z-index: 4;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            background: #000000;
            transition: opacity 0.28s ease;
        }

        .claim-model-stage.is-fsd-video-active .claim-fsd-video-layer {
            opacity: 1;
        }

        .claim-fsd-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            display: block;
            object-fit: contain;
            object-position: center;
        }

        .claim-fsd-video-panel {
            position: relative;
            z-index: 2;
            width: min(320px, calc(100% - 32px));
            margin-bottom: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            pointer-events: auto;
        }

        .claim-fsd-video-tabs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            width: 100%;
            min-height: 40px;
            padding: 4px;
            border-radius: 4px;
            background: rgba(23, 26, 32, 0.88);
        }

        .claim-fsd-video-tab {
            border: 0;
            border-radius: 3px;
            background: transparent;
            color: #ffffff;
            font-size: 0.82rem;
            font-weight: 700;
            cursor: pointer;
        }

        .claim-fsd-video-tab.is-active {
            background: rgba(255, 255, 255, 0.18);
        }

        .claim-model-stage.is-fsd-video-active .claim-model-image,
        .claim-model-stage.is-fsd-video-active .claim-carousel-zone {
            opacity: 0;
            pointer-events: none;
        }

        .claim-carousel-zone {
            position: absolute;
            top: 0;
            bottom: 0;
            z-index: 5;
            width: clamp(120px, 9vw, 170px);
            border: 0;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: #171a20;
            cursor: pointer;
            touch-action: pan-y;
        }

        .claim-carousel-zone-prev {
            left: 0;
        }

        .claim-carousel-zone-next {
            right: 0;
        }

        .claim-carousel-arrow {
            width: 34px;
            height: 34px;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(244, 244, 244, 0.92);
            box-shadow: none;
            opacity: 0;
            transition: opacity 0.18s ease, background-color 0.18s ease;
        }

        .claim-model-stage:hover .claim-carousel-arrow,
        .claim-carousel-zone:focus-visible .claim-carousel-arrow {
            opacity: 1;
        }

        .claim-carousel-zone:hover .claim-carousel-arrow,
        .claim-carousel-zone:focus-visible .claim-carousel-arrow {
            background: #eeeeee;
        }

        .claim-carousel-arrow svg {
            width: 18px;
            height: 18px;
            display: block;
        }

        .claim-carousel-zone-prev .claim-carousel-arrow svg {
            transform: rotate(180deg);
        }

        .claim-config-panel {
            min-height: calc(100vh - var(--claim-nav-height));
            height: calc(100vh - var(--claim-nav-height));
            padding: 36px var(--claim-right-gap) 240px var(--claim-panel-left-gap);
            overflow-y: auto;
            overflow-x: hidden;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .claim-config-panel::-webkit-scrollbar {
            display: none;
        }

        .claim-config-inner {
            width: var(--claim-right-width);
            margin-left: auto;
        }

        .claim-title {
            margin: 0 0 18px;
            text-align: center;
            font-size: 2.55rem;
            line-height: 1.05;
            font-weight: 700;
            letter-spacing: -0.04em;
        }

        .claim-specs {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-bottom: 20px;
            text-align: center;
        }

        .claim-spec-value {
            display: block;
            margin-bottom: 4px;
            font-size: 1.15rem;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .claim-spec-value small {
            font-size: 0.68em;
            font-weight: 700;
        }

        .claim-spec-label {
            display: block;
            color: #393c41;
            font-size: 0.82rem;
            font-weight: 500;
            line-height: 1.25;
            white-space: nowrap;
        }

        .claim-summary-card {
            border: 1px solid #dedfe1;
            border-radius: 6px;
            padding: 16px 16px 14px;
        }

        .claim-summary-top {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 12px;
            margin-bottom: 28px;
        }

        .claim-trim {
            margin: 0 0 4px;
            font-size: 0.94rem;
            font-weight: 700;
            line-height: 1.25;
        }

        .claim-demo {
            margin: 0;
            color: #5c5e62;
            font-size: 0.86rem;
            font-weight: 500;
            line-height: 1.25;
        }

        .claim-price {
            display: inline-flex;
            align-items: baseline;
            gap: 7px;
            font-size: 0.94rem;
            font-weight: 700;
            white-space: nowrap;
        }

        .claim-price-old {
            color: #5c5e62;
            text-decoration: line-through;
            text-decoration-thickness: 1.5px;
        }

        .claim-price-current {
            color: #171a20;
            text-decoration: none;
        }

        .claim-feature-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .claim-feature {
            display: grid;
            grid-template-columns: 24px minmax(0, 1fr);
            gap: 10px;
            align-items: center;
            color: #393c41;
            font-size: 0.86rem;
            font-weight: 700;
            line-height: 1.25;
        }

        .claim-feature-media,
        .claim-feature-icon {
            width: 22px;
            height: 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #5c5e62;
        }

        .claim-feature-media img {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: block;
            object-fit: cover;
        }

        .claim-feature-icon svg {
            width: 22px;
            height: 22px;
            display: block;
        }

        .claim-feature-icon.is-blue {
            color: #3e6ae1;
        }

        .claim-included {
            margin: 96px 0 0;
            text-align: center;
            color: #5c5e62;
            font-size: 0.8rem;
            font-weight: 700;
        }

        .claim-section-title {
            margin: 7px 0 18px;
            text-align: center;
            color: #171a20;
            font-size: 1.16rem;
            font-weight: 700;
            line-height: 1.12;
            letter-spacing: -0.02em;
        }

        #claim-warranty-title,
        #claim-condition-title,
        #claim-delivery-title {
            font-size: 1.34rem;
            line-height: 1.15;
        }

        .claim-config-section {
            margin-top: 92px;
            text-align: center;
        }

        .claim-config-section .claim-included {
            margin-top: 0;
        }

        .claim-package-card {
            border: 1px solid #d0d1d2;
            border-radius: 4px;
            padding: 16px 16px 18px;
            text-align: left;
        }

        .claim-package-list {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .claim-package-row {
            display: grid;
            grid-template-columns: 80px minmax(0, 1fr);
            gap: 16px;
            align-items: center;
        }

        .claim-package-image {
            width: 80px;
            height: 80px;
            border-radius: 4px;
            display: block;
            object-fit: cover;
            background: #f4f4f4;
        }

        .claim-package-name {
            margin: 0 0 6px;
            color: #393c41;
            font-size: 0.8rem;
            font-weight: 700;
            line-height: 1.25;
        }

        .claim-package-copy,
        .claim-centered-copy,
        .claim-small-copy,
        .claim-option-note,
        .claim-delivery-copy {
            margin: 0;
            color: #393c41;
            font-size: 0.9rem;
            font-weight: 500;
            line-height: 1.45;
        }

        .claim-package-copy {
            color: #5c5e62;
            font-size: 0.84rem;
            line-height: 1.42;
        }

        .claim-small-copy {
            margin-top: 10px;
            font-size: 0.79rem;
            line-height: 1.42;
        }

        .claim-fsd-section {
            margin-top: 92px;
        }

        .claim-fsd-section .claim-section-title {
            margin-bottom: 14px;
            font-size: 1.12rem;
            line-height: 1.16;
        }

        .claim-fsd-section .claim-centered-copy {
            max-width: 318px;
            margin: 0 auto;
            color: #393c41;
            font-size: 0.82rem;
            line-height: 1.45;
        }

        .claim-fsd-section .claim-small-copy {
            max-width: 328px;
            margin: 12px auto 0;
            color: #5c5e62;
            font-size: 0.72rem;
            line-height: 1.5;
        }

        .claim-fsd-preview-button {
            display: none;
        }

        .claim-link-button,
        .claim-text-link {
            border: 0;
            padding: 0;
            background: transparent;
            color: #171a20;
            font: inherit;
            font-weight: 500;
            text-decoration: underline;
            text-underline-offset: 3px;
            cursor: pointer;
        }

        .claim-terms-link {
            width: max-content;
            margin: 18px auto 0;
            display: flex;
            justify-content: center;
            font-size: 0.84rem;
        }

        .claim-supercharging-line {
            margin-top: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #171a20;
            font-size: 0.9rem;
            font-weight: 700;
            line-height: 1.35;
            flex-wrap: wrap;
        }

        .claim-supercharging-check {
            width: 17px;
            height: 17px;
            color: #12a316;
            flex: 0 0 auto;
        }

        .claim-option-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 20px;
        }

        .claim-select-row {
            width: 100%;
            border: 1px solid #d0d1d2;
            border-radius: 4px;
            display: grid;
            align-items: center;
            gap: 14px;
            background: #ffffff;
            color: #393c41;
            font: inherit;
            font-size: 0.82rem;
            font-weight: 500;
            line-height: 1.3;
            text-align: left;
            cursor: pointer;
            transition: background-color 0.16s ease, border-color 0.16s ease;
        }

        .claim-select-row:hover,
        .claim-select-row:focus-visible,
        .claim-select-row.is-selected {
            border-color: #5c5e62;
            background: #f4f4f4;
        }

        .claim-select-row.is-selected {
            color: #171a20;
            font-weight: 600;
        }

        .claim-checkbox {
            width: 20px;
            height: 20px;
            border: 1px solid #d8d9da;
            border-radius: 2px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #f4f4f4;
            position: relative;
        }

        .claim-select-row.is-selected .claim-checkbox::after {
            content: "";
            width: 8px;
            height: 4px;
            border-left: 1.6px solid #171a20;
            border-bottom: 1.6px solid #171a20;
            transform: translateY(-1px) rotate(-45deg);
        }

        .claim-charger-row {
            grid-template-columns: 20px 86px minmax(0, 1fr);
            padding: 14px 16px;
        }

        .claim-charger-row img {
            width: 86px;
            height: 86px;
            object-fit: contain;
        }

        .claim-option-price,
        .claim-option-title {
            display: block;
            color: #171a20;
            font-size: 0.82rem;
            font-weight: 600;
            line-height: 1.35;
        }

        .claim-option-subcopy {
            display: block;
            color: #5c5e62;
            font-size: 0.78rem;
            font-weight: 500;
            line-height: 1.35;
        }

        .claim-option-note {
            margin-top: 10px;
            font-size: 0.77rem;
            text-align: center;
        }

        .claim-muted-action {
            min-width: 128px;
            min-height: 32px;
            margin-top: 24px;
            border: 0;
            border-radius: 4px;
            background: #f4f4f4;
            color: #171a20;
            font-size: 0.82rem;
            font-weight: 700;
            cursor: pointer;
        }

        .claim-accessory-row {
            grid-template-columns: 20px minmax(0, 1fr) auto;
            min-height: 52px;
            padding: 12px 16px;
        }

        .claim-accessory-price {
            font-size: 0.82rem;
            font-weight: 500;
            white-space: nowrap;
        }

        .claim-select-row.is-selected .claim-accessory-price {
            color: #171a20;
            font-weight: 600;
        }

        .claim-warranty-list {
            margin: 24px 0 0;
            display: flex;
            flex-direction: column;
            gap: 28px;
            text-align: left;
        }

        .claim-warranty-label {
            display: block;
            color: #171a20;
            font-size: 0.88rem;
            font-weight: 700;
            line-height: 1.25;
        }

        .claim-warranty-copy {
            display: block;
            color: #393c41;
            font-size: 0.88rem;
            font-weight: 500;
            line-height: 1.35;
        }

        .claim-condition-list {
            margin: 22px 0 0;
            padding-left: 24px;
            text-align: left;
            color: #171a20;
            font-size: 0.88rem;
            font-weight: 500;
            line-height: 1.45;
        }

        .claim-delivery-form {
            margin-top: 20px;
            text-align: left;
        }

        .claim-config-section.has-delivery-result .claim-delivery-form {
            display: none;
        }

        .claim-config-section.has-delivery-result .claim-delivery-copy {
            display: none;
        }

        .claim-delivery-label {
            display: block;
            margin-bottom: 10px;
            color: #393c41;
            font-size: 0.82rem;
            font-weight: 700;
            line-height: 1.35;
        }

        .claim-delivery-label span {
            display: block;
            color: #5c5e62;
            font-size: 0.76rem;
            font-weight: 500;
        }

        .claim-delivery-input {
            width: 100%;
            min-height: 40px;
            border: 1px solid #d93025;
            border-radius: 3px;
            padding: 8px 10px;
            color: #171a20;
            font: inherit;
        }

        .claim-delivery-form.is-valid .claim-delivery-input {
            border-color: #d0d1d2;
        }

        .claim-required {
            margin: 8px 0 18px;
            color: #d93025;
            font-size: 0.72rem;
            font-weight: 500;
        }

        .claim-required[hidden] {
            display: none;
        }

        .claim-submit-button {
            min-height: 34px;
            border: 0;
            border-radius: 4px;
            background: #9bb2ee;
            color: #ffffff;
            font-size: 0.86rem;
            font-weight: 700;
        }

        .claim-submit-button:not(:disabled) {
            background: #3e6ae1;
            cursor: pointer;
        }

        .claim-submit-button {
            min-width: 100px;
            display: block;
            margin: 20px auto 24px;
        }

        .claim-continue-button {
            width: 100%;
            min-height: 40px;
            margin: 0 0 28px;
            border: 0;
            border-radius: 4px;
            display: block;
            background: #9bb2ee;
            color: #ffffff;
            font: inherit;
            font-size: 0.86rem;
            font-weight: 700;
            cursor: default;
        }

        .claim-continue-button[hidden] {
            display: none;
        }

        .claim-continue-button:not(:disabled) {
            background: #3e6ae1;
            cursor: pointer;
        }

        .claim-continue-button:not(:disabled):hover,
        .claim-continue-button:not(:disabled):focus-visible {
            background: #3457b8;
        }

        .claim-delivery-result {
            margin: 18px 0 26px;
            text-align: center;
        }

        .claim-delivery-result[hidden] {
            display: none;
        }

        .claim-delivery-options {
            margin: 0 0 40px;
            color: #171a20;
            font-size: 0.9rem;
            font-weight: 500;
            line-height: 1.45;
        }

        .claim-delivery-zip-link {
            border: 0;
            padding: 0;
            background: transparent;
            color: #171a20;
            font: inherit;
            text-decoration: underline;
            text-underline-offset: 3px;
            cursor: pointer;
        }

        .claim-delivery-available {
            width: fit-content;
            max-width: min(100%, 440px);
            margin: 0 auto;
            display: flex;
            gap: 10px;
            align-items: start;
            color: #171a20;
            font-size: 0.9rem;
            font-weight: 600;
            line-height: 1.35;
            text-align: left;
        }

        .claim-delivery-success-icon {
            width: 20px;
            height: 20px;
            flex: 0 0 20px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #12a316;
            color: #ffffff;
        }

        .claim-delivery-success-icon svg {
            width: 15px;
            height: 15px;
        }

        .claim-delivery-available > span:last-child {
            min-width: 0;
            flex: 1 1 auto;
        }

        @media (max-width: 1024px), (max-aspect-ratio: 1/1) {
            .claim-delivery-available {
                max-width: 100%;
            }
        }

        .claim-callback-button {
            width: 100%;
            min-height: 72px;
            border: 0;
            border-radius: 4px;
            padding: 16px 18px;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 20px;
            align-items: center;
            gap: 12px;
            background: #f4f4f4;
            color: #393c41;
            font: inherit;
            font-size: 0.86rem;
            font-weight: 700;
            text-align: left;
            cursor: pointer;
        }

        .claim-callback-copy {
            display: block;
            min-width: 0;
        }

        .claim-callback-title,
        .claim-callback-subtitle {
            display: block;
            line-height: 1.18;
        }

        .claim-callback-subtitle {
            color: #5c5e62;
        }

        .claim-callback-button svg {
            width: 18px;
            height: 18px;
            justify-self: end;
        }

        .claim-final-order {
            max-width: 342px;
            margin: 24px auto 0;
            color: #171a20;
            text-align: left;
        }

        .claim-final-order h2 {
            margin: 0 0 12px;
            text-align: center;
            font-size: 1.36rem;
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .claim-pricing-toggle {
            min-height: 28px;
            margin: 0 auto 24px;
            border: 0;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            background: transparent;
            color: #393c41;
            font: inherit;
            font-size: 0.86rem;
            font-weight: 700;
            cursor: pointer;
        }

        .claim-pricing-toggle[hidden],
        .claim-pricing-details[hidden],
        .claim-pricing-row[hidden] {
            display: none;
        }

        .claim-pricing-toggle svg {
            width: 18px;
            height: 18px;
            flex: 0 0 auto;
        }

        .claim-pricing-details {
            margin: 8px 0 26px;
            padding-bottom: 16px;
            border-bottom: 1px solid #d0d1d2;
        }

        .claim-pricing-row {
            min-height: 28px;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 20px;
            align-items: start;
            color: #393c41;
            font-size: 0.86rem;
            font-weight: 500;
            line-height: 1.35;
        }

        .claim-pricing-row + .claim-pricing-row {
            margin-top: 4px;
        }

        .claim-selected-customizations:not([hidden]) {
            margin-top: 4px;
        }

        .claim-selected-customizations:not([hidden]) + .claim-pricing-row {
            margin-top: 4px;
        }

        .claim-pricing-row > span:last-child {
            white-space: nowrap;
            text-align: right;
        }

        .claim-pricing-row-total {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid #d0d1d2;
            color: #393c41;
            font-weight: 700;
        }

        .claim-order-summary {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .claim-order-total-row {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 20px;
            align-items: start;
        }

        .claim-order-total-label,
        .claim-order-total-copy {
            display: block;
        }

        .claim-order-total-label {
            color: #171a20;
            font-size: 1.08rem;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .claim-order-total-copy {
            margin-top: 4px;
            color: #5c5e62;
            font-size: 0.72rem;
            font-weight: 500;
            line-height: 1.35;
        }

        .claim-order-total-row strong {
            color: #171a20;
            font-size: 1.1rem;
            font-weight: 700;
            line-height: 1.2;
            white-space: nowrap;
        }

        .claim-order-agreement {
            margin: 30px 0 16px;
            color: #5c5e62;
            font-size: 0.72rem;
            font-weight: 500;
            line-height: 1.55;
        }

        .claim-order-agreement a,
        .claim-order-text-link {
            border: 0;
            padding: 0;
            background: transparent;
            color: #393c41;
            font: inherit;
            font-weight: 500;
            text-align: left;
            text-decoration: underline;
            text-underline-offset: 3px;
            cursor: pointer;
        }

        .claim-order-info-link {
            font-size: 0.72rem;
            line-height: 1.35;
        }

        .claim-card-order-button {
            width: 100%;
            min-height: 40px;
            margin-top: 34px;
            border: 2px solid #171a20;
            border-radius: 3px;
            background: #ffffff;
            color: #171a20;
            font: inherit;
            font-size: 0.86rem;
            font-weight: 700;
            cursor: pointer;
        }

        .claim-card-order-button:hover,
        .claim-card-order-button:focus-visible {
            background: #171a20;
            color: #ffffff;
            outline: none;
        }

        .claim-payment-form[hidden] {
            display: none;
        }

        .claim-payment-form {
            margin-top: 34px;
            display: flex;
            flex-direction: column;
            gap: 26px;
        }

        .claim-payment-heading {
            margin: 0 0 -8px;
            color: #171a20;
            font-size: 1.1rem;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.02em;
        }

        .claim-payment-card-heading {
            margin-top: 20px;
        }

        .claim-payment-note {
            margin: 6px 0 0;
            color: #393c41;
            font-size: 0.72rem;
            font-weight: 500;
            line-height: 1.35;
        }

        .claim-payment-consent {
            margin: -2px 0 18px;
            color: #393c41;
            font-size: 0.72rem;
            font-weight: 500;
            line-height: 1.55;
        }

        .claim-payment-consent a {
            color: #171a20;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .claim-payment-select {
            appearance: auto;
            cursor: pointer;
        }

        .claim-payment-due {
            margin-top: 8px;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 20px;
            align-items: start;
        }

        .claim-payment-due strong {
            color: #171a20;
            font-size: 1.1rem;
            font-weight: 700;
            line-height: 1.2;
            white-space: nowrap;
        }

        .claim-payment-agreement {
            margin: 10px 0 -10px;
        }

        .claim-place-order-button {
            width: 100%;
            min-height: 40px;
            border: 0;
            border-radius: 4px;
            background: #3e6ae1;
            color: #ffffff;
            font: inherit;
            font-size: 0.86rem;
            font-weight: 700;
            cursor: pointer;
        }

        .claim-place-order-button:disabled {
            background: #9bb2ee;
            cursor: default;
        }

        .claim-place-order-button:not(:disabled):hover,
        .claim-place-order-button:not(:disabled):focus-visible {
            background: #3457b8;
        }

        .claim-payment-card-error[hidden],
        .claim-payment-contact-label[hidden],
        .claim-order-total-copy[hidden],
        .claim-payment-contact-button[hidden] {
            display: none;
        }

        .claim-payment-card-error {
            min-height: 54px;
            border-radius: 3px;
            padding: 15px 18px;
            display: grid;
            grid-template-columns: 20px minmax(0, 1fr);
            align-items: center;
            gap: 10px;
            background: #f4f4f4;
            color: #171a20;
            font-size: 0.84rem;
            font-weight: 500;
            line-height: 1.35;
        }

        .claim-payment-card-error svg {
            width: 20px;
            height: 20px;
            display: block;
        }

        .claim-payment-contact-button {
            width: 100%;
            min-height: 40px;
            border: 2px solid #171a20;
            border-radius: 3px;
            background: #ffffff;
            color: #171a20;
            font: inherit;
            font-size: 0.86rem;
            font-weight: 700;
            cursor: pointer;
        }

        .claim-payment-contact-button:hover,
        .claim-payment-contact-button:focus-visible {
            background: #171a20;
            color: #ffffff;
            outline: none;
        }

        body.claim-modal-open {
            overflow: hidden;
        }

        body.claim-modal-open .claim-order-nav,
        body.claim-modal-open .claim-order-shell,
        body.claim-modal-open .claim-price-bar {
            filter: blur(4px);
        }

        .claim-modal-backdrop[hidden] {
            display: none;
        }

        .claim-modal-backdrop {
            position: fixed;
            inset: 0;
            z-index: 5000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 32px;
            background: rgba(23, 26, 32, 0.36);
            backdrop-filter: blur(6px);
        }

        .claim-modal-shell {
            width: min(100%, 774px);
            max-height: min(82vh, 760px);
            position: relative;
            overflow: auto;
            border-radius: 14px;
            background: #ffffff;
            color: #171a20;
            box-shadow: 0 12px 28px rgba(23, 26, 32, 0.2);
            padding: 38px 48px 42px;
        }

        .claim-modal-close {
            position: absolute;
            top: 28px;
            right: 28px;
            width: 36px;
            height: 36px;
            border: 0;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: #393c41;
            cursor: pointer;
        }

        .claim-modal-close:hover,
        .claim-modal-close:focus-visible {
            background: #f4f4f4;
            outline: none;
        }

        .claim-modal-close svg {
            width: 22px;
            height: 22px;
        }

        .claim-modal-copy h2,
        .claim-home-modal h2 {
            margin: 0 44px 28px 0;
            color: #171a20;
            font-size: 1.35rem;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.03em;
        }

        .claim-modal-copy h3 {
            margin: 20px 0 8px;
            color: #171a20;
            font-size: 0.95rem;
            font-weight: 700;
            line-height: 1.25;
        }

        .claim-modal-copy p {
            margin: 0 0 14px;
            color: #393c41;
            font-size: 0.82rem;
            font-weight: 500;
            line-height: 1.5;
        }

        .claim-modal-copy a {
            color: #393c41;
            font-size: 0.82rem;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .claim-info-modal h2 {
            margin: 0 44px 20px 0;
            color: #171a20;
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .claim-info-modal p,
        .claim-info-modal li {
            color: #393c41;
            font-size: 0.88rem;
            font-weight: 500;
            line-height: 1.45;
        }

        .claim-info-modal p {
            margin: 0 0 14px;
        }

        .claim-info-modal ul {
            margin: 12px 0 14px;
            padding-left: 24px;
        }

        .claim-info-modal li + li {
            margin-top: 10px;
        }

        .claim-info-modal a {
            color: #393c41;
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .claim-additional-info-modal h3 {
            margin: 30px 0 10px;
            color: #171a20;
            font-size: 1.18rem;
            font-weight: 700;
            line-height: 1.18;
            letter-spacing: -0.01em;
        }

        .claim-connectivity-modal h2 {
            margin: 0 44px 24px 0;
            color: #171a20;
            font-size: 1.24rem;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.01em;
        }

        .claim-connectivity-table {
            width: 100%;
            border-collapse: collapse;
            color: #393c41;
            table-layout: fixed;
        }

        .claim-connectivity-table th,
        .claim-connectivity-table td {
            padding: 8px 0;
            font-size: 0.86rem;
            line-height: 1.35;
            vertical-align: middle;
        }

        .claim-connectivity-table thead th {
            color: #171a20;
            font-weight: 700;
            text-align: left;
        }

        .claim-connectivity-table th:first-child,
        .claim-connectivity-table td:first-child {
            width: 62%;
            padding-right: 20px;
        }

        .claim-connectivity-table th:nth-child(2),
        .claim-connectivity-table th:nth-child(3),
        .claim-connectivity-table td:nth-child(2),
        .claim-connectivity-table td:nth-child(3) {
            width: 19%;
            text-align: center;
        }

        .claim-connectivity-section th {
            padding-top: 20px;
            color: #171a20;
            font-weight: 700;
            text-align: left;
        }

        .claim-connectivity-icon {
            min-height: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .claim-connectivity-icon svg {
            width: 22px;
            height: 22px;
            display: block;
        }

        .claim-connectivity-footnotes {
            margin-top: 26px;
            color: #393c41;
        }

        .claim-connectivity-footnotes p {
            margin: 0;
            font-size: 0.82rem;
            font-weight: 500;
            line-height: 1.45;
        }

        .claim-connectivity-footnotes p + p {
            margin-top: 14px;
        }

        .claim-modal-backdrop.is-info .claim-modal-shell,
        .claim-modal-backdrop.is-condition .claim-modal-shell {
            width: min(calc(100vw - 64px), 774px);
            padding: 52px 48px 42px;
        }

        .claim-modal-backdrop.is-accessories {
            padding: 0 0 70px;
            overflow: hidden;
        }

        .claim-modal-backdrop.is-accessories .claim-modal-shell {
            width: min(890px, calc(100vw - 160px));
            height: min(555px, calc(100vh - 190px));
            max-height: none;
            overflow: visible;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
            padding: 0;
        }

        .claim-modal-backdrop.is-accessories .claim-modal-content {
            height: 100%;
        }

        .claim-modal-backdrop.is-accessories .claim-modal-close {
            top: 32px;
            right: 16px;
            z-index: 20;
            width: 40px;
            height: 40px;
            background: #f4f4f4;
        }

        .claim-accessories-modal {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .claim-accessories-heading {
            position: absolute;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0 0 0 0);
            white-space: nowrap;
        }

        .claim-accessories-track {
            position: relative;
            width: 100%;
            height: 100%;
            touch-action: pan-y;
        }

        .claim-accessory-slide {
            position: absolute;
            inset: 0;
            display: grid;
            grid-template-columns: minmax(0, 62.5%) minmax(300px, 37.5%);
            overflow: hidden;
            border-radius: 14px;
            background: #ffffff;
            box-shadow: 0 16px 34px rgba(23, 26, 32, 0.22);
            color: #171a20;
            opacity: 0;
            pointer-events: none;
            transform: scale(0.96);
            transition: transform 0.34s ease, opacity 0.34s ease, filter 0.34s ease;
        }

        .claim-accessory-slide.is-active,
        .claim-accessory-slide.is-prev,
        .claim-accessory-slide.is-next {
            opacity: 1;
            pointer-events: auto;
        }

        .claim-accessory-slide.is-active {
            z-index: 4;
            cursor: default;
            transform: translateX(0) scale(1);
        }

        .claim-accessory-slide.is-prev,
        .claim-accessory-slide.is-next {
            z-index: 2;
            cursor: pointer;
            filter: brightness(0.58);
        }

        .claim-accessory-slide.is-prev {
            transform: translateX(calc(-100% - 48px)) scale(0.98);
        }

        .claim-accessory-slide.is-next {
            transform: translateX(calc(100% + 48px)) scale(0.98);
        }

        .claim-accessory-slide.is-hidden {
            opacity: 0;
            pointer-events: none;
        }

        .claim-accessory-card-media {
            min-width: 0;
            min-height: 0;
            background: #f4f4f4;
        }

        .claim-accessory-card-media img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        .claim-accessory-card-details {
            min-width: 0;
            min-height: 0;
            display: flex;
            flex-direction: column;
            padding: 82px 24px 24px;
            background: #ffffff;
        }

        .claim-accessory-card-details h3 {
            margin: 0 44px 26px 0;
            color: #171a20;
            font-size: 1.35rem;
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .claim-accessory-card-text {
            min-height: 0;
            flex: 1 1 auto;
            overflow-y: auto;
            scrollbar-width: none;
        }

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

        .claim-accessory-card-text p,
        .claim-accessory-card-text li {
            color: #393c41;
            font-size: 0.82rem;
            font-weight: 500;
            line-height: 1.42;
        }

        .claim-accessory-card-text p {
            margin: 0 0 14px;
        }

        .claim-accessory-includes-heading {
            margin-top: 16px;
            color: #171a20 !important;
            font-weight: 700 !important;
        }

        .claim-accessory-card-text ul {
            margin: 0 0 14px;
            padding: 0;
            list-style: none;
        }

        .claim-accessory-note {
            font-style: italic;
        }

        .claim-accessory-card-button {
            width: 100%;
            min-height: 42px;
            margin-top: 18px;
            border: 0;
            border-radius: 4px;
            background: #3e6ae1;
            color: #ffffff;
            font-size: 0.86rem;
            font-weight: 700;
            cursor: pointer;
        }

        .claim-accessory-card-button.is-remove {
            background: #f4f4f4;
            color: #171a20;
        }

        .claim-accessory-side-arrow {
            position: absolute;
            top: 50%;
            z-index: 6;
            width: 64px;
            height: 64px;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(23, 26, 32, 0.64);
            color: #ffffff;
            opacity: 0;
            transform: translateY(-50%);
            transition: opacity 0.18s ease;
        }

        .claim-accessory-side-arrow svg {
            width: 34px;
            height: 34px;
        }

        .claim-accessory-slide.is-prev .claim-accessory-side-arrow {
            right: 28px;
        }

        .claim-accessory-slide.is-prev .claim-accessory-side-arrow svg {
            transform: rotate(180deg);
        }

        .claim-accessory-slide.is-next .claim-accessory-side-arrow {
            left: 28px;
        }

        .claim-accessory-slide.is-prev:hover .claim-accessory-side-arrow,
        .claim-accessory-slide.is-prev:focus-visible .claim-accessory-side-arrow,
        .claim-accessory-slide.is-next:hover .claim-accessory-side-arrow,
        .claim-accessory-slide.is-next:focus-visible .claim-accessory-side-arrow {
            opacity: 1;
        }

        .claim-accessory-slide.is-active .claim-accessory-side-arrow {
            display: none;
        }

        .claim-accessories-dots {
            position: absolute;
            left: 50%;
            bottom: -52px;
            z-index: 8;
            display: flex;
            gap: 6px;
            transform: translateX(-50%);
        }

        .claim-accessory-dot {
            width: 8px;
            height: 8px;
            border: 0;
            border-radius: 999px;
            padding: 0;
            background: rgba(92, 94, 98, 0.8);
            cursor: pointer;
        }

        .claim-accessory-dot.is-active {
            background: #ffffff;
        }

        .claim-condition-tabs {
            min-height: 40px;
            margin: 26px 0 20px;
            padding: 4px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-radius: 4px;
            background: #f4f4f4;
        }

        .claim-condition-tab {
            border: 0;
            border-radius: 3px;
            background: transparent;
            color: #5c5e62;
            font-size: 0.82rem;
            font-weight: 700;
            cursor: pointer;
        }

        .claim-condition-tab.is-active {
            background: #ffffff;
            color: #171a20;
            box-shadow: 0 0 0 1px rgba(23, 26, 32, 0.06);
        }

        .claim-condition-panel[hidden] {
            display: none;
        }

        .claim-condition-table {
            display: flex;
            flex-direction: column;
        }

        .claim-condition-table > div {
            display: grid;
            grid-template-columns: 120px minmax(0, 1fr);
            gap: 30px;
            padding: 10px 0;
            border-bottom: 1px solid #d0d1d2;
        }

        .claim-condition-table h3 {
            margin: 0;
            color: #393c41;
            font-size: 0.82rem;
            font-weight: 700;
            line-height: 1.35;
        }

        .claim-condition-table ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .claim-condition-table li {
            margin: 0;
            color: #393c41;
            font-size: 0.82rem;
            font-weight: 500;
            line-height: 1.5;
        }

        .claim-condition-table li + li {
            margin-top: 6px;
        }

        .claim-condition-note {
            margin: 14px 0 0;
            color: #5c5e62 !important;
            font-size: 0.72rem !important;
            font-weight: 700 !important;
            line-height: 1.45 !important;
        }

        .claim-modal-backdrop.is-callback .claim-modal-shell {
            width: min(calc(100vw - 72px), 774px);
            max-height: calc(100vh - 80px);
            border-radius: 14px;
            padding: 68px 48px 56px;
        }

        .claim-modal-backdrop.is-callback-success .claim-modal-shell {
            width: min(calc(100vw - 72px), 774px);
            min-height: 236px;
            border-radius: 14px;
            padding: 42px 48px 40px;
            overflow: visible;
        }

        .claim-modal-backdrop.is-fsd-video {
            padding: 28px;
        }

        .claim-modal-backdrop.is-fsd-video .claim-modal-shell {
            width: min(calc(100vw - 56px), 774px);
            height: min(810px, calc(100vh - 56px));
            max-height: none;
            overflow: hidden;
            border-radius: 12px;
            background: #000000;
            color: #ffffff;
            padding: 0;
        }

        .claim-modal-backdrop.is-fsd-video .claim-modal-content {
            height: 100%;
        }

        .claim-modal-backdrop.is-fsd-video .claim-modal-close {
            top: 32px;
            right: 32px;
            z-index: 8;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            background: rgba(244, 244, 244, 0.88);
            color: #171a20;
        }

        .claim-fsd-video-modal {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background: #000000;
        }

        .claim-fsd-modal-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center;
        }

        .claim-fsd-modal-scrim {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.06) 42%, rgba(0, 0, 0, 0.62));
            pointer-events: none;
        }

        .claim-fsd-video-modal h2 {
            position: absolute;
            top: 26px;
            left: 48px;
            right: 92px;
            z-index: 2;
            margin: 0;
            color: #ffffff;
            font-size: clamp(1.8rem, 4.2vw, 2.55rem);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
        }

        .claim-fsd-modal-caption {
            position: absolute;
            left: 24px;
            right: 24px;
            bottom: 72px;
            z-index: 2;
            margin: 0;
            color: #ffffff;
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1.2;
            text-align: center;
        }

        .claim-fsd-modal-tabs {
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 16px;
            z-index: 2;
            min-height: 38px;
            padding: 4px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4px;
            border-radius: 4px;
            background: rgba(23, 26, 32, 0.88);
        }

        .claim-fsd-modal-tab {
            border: 0;
            border-radius: 3px;
            background: transparent;
            color: #ffffff;
            font-size: 0.86rem;
            font-weight: 700;
            cursor: pointer;
        }

        .claim-fsd-modal-tab.is-active {
            background: rgba(255, 255, 255, 0.16);
        }

        .claim-callback-modal h2 {
            margin: 0 44px 26px 0;
            color: #171a20;
            font-size: 1.4rem;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.03em;
        }

        .claim-callback-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .claim-callback-field label {
            display: block;
            margin-bottom: 9px;
            color: #5c5e62;
            font-size: 0.82rem;
            font-weight: 700;
            line-height: 1.25;
        }

        .claim-callback-input,
        .claim-phone-field {
            width: 100%;
            min-height: 40px;
            border: 1px solid transparent;
            border-radius: 4px;
            background: #f4f4f4;
            color: #171a20;
            font: inherit;
            font-size: 0.86rem;
            font-weight: 600;
        }

        .claim-callback-input {
            padding: 10px 12px;
        }

        .claim-callback-input:focus,
        .claim-phone-field:focus-within {
            border-color: #171a20;
            outline: none;
        }

        .claim-callback-field.is-invalid .claim-callback-input,
        .claim-callback-field.is-invalid .claim-phone-field {
            border-color: #d93025;
        }

        .claim-callback-error {
            margin: 8px 0 0;
            color: #d93025;
            font-size: 0.72rem;
            font-weight: 700;
            line-height: 1.3;
        }

        .claim-callback-error[hidden] {
            display: none;
        }

        .claim-phone-field {
            position: relative;
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            align-items: center;
        }

        .claim-country-trigger {
            min-height: 38px;
            border: 0;
            border-radius: 4px 0 0 4px;
            padding: 0 6px 0 12px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: transparent;
            color: #171a20;
            font: inherit;
            font-size: 0.82rem;
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
        }

        .claim-country-trigger svg {
            width: 16px;
            height: 16px;
            transition: transform 0.18s ease;
        }

        .claim-country-trigger[aria-expanded="true"] svg {
            transform: rotate(180deg);
        }

        .claim-phone-input {
            min-width: 0;
            min-height: 38px;
            border: 0;
            border-radius: 0 4px 4px 0;
            padding: 10px 12px;
            background: transparent;
            color: #171a20;
            font: inherit;
            font-size: 0.86rem;
            font-weight: 600;
        }

        .claim-phone-input::placeholder {
            color: #9ca0a8;
            opacity: 1;
        }

        .claim-phone-input:focus {
            outline: none;
        }

        .claim-country-menu {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            z-index: 12;
            width: min(335px, 100%);
            max-height: 316px;
            overflow-y: auto;
            border-radius: 4px;
            background: #ffffff;
            box-shadow: 0 8px 24px rgba(23, 26, 32, 0.18);
            padding: 8px 0;
        }

        .claim-country-menu[hidden] {
            display: none;
        }

        .claim-country-option {
            width: 100%;
            min-height: 32px;
            border: 0;
            padding: 0 16px;
            display: grid;
            grid-template-columns: 32px minmax(0, 1fr) 20px;
            gap: 0;
            align-items: center;
            background: transparent;
            color: #171a20;
            font: inherit;
            font-size: 0.86rem;
            font-weight: 500;
            text-align: left;
            cursor: pointer;
        }

        .claim-country-option:hover,
        .claim-country-option:focus-visible,
        .claim-country-option.is-selected {
            background: #f4f4f4;
        }

        .claim-country-option-code {
            font-weight: 500;
        }

        .claim-country-option-name {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .claim-country-option-check {
            width: 16px;
            height: 16px;
            justify-self: end;
            opacity: 0;
        }

        .claim-country-option.is-selected .claim-country-option-check {
            opacity: 1;
        }

        .claim-callback-consent {
            margin: 16px 0 18px;
            color: #393c41;
            font-size: 0.72rem;
            font-weight: 500;
            line-height: 1.55;
        }

        .claim-callback-submit {
            width: 100%;
            min-height: 40px;
            border: 0;
            border-radius: 4px;
            background: #3e6ae1;
            color: #ffffff;
            font-size: 0.86rem;
            font-weight: 700;
            cursor: pointer;
        }

        .claim-callback-submit:hover,
        .claim-callback-submit:focus-visible {
            background: #3457b8;
        }

        .claim-callback-success {
            min-height: 154px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .claim-callback-success-icon {
            width: 52px;
            height: 52px;
            margin-bottom: 42px;
            border: 4px solid #12a316;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #12a316;
        }

        .claim-callback-success-icon svg {
            width: 34px;
            height: 34px;
        }

        .claim-callback-success h2 {
            margin: 0 0 10px;
            color: #171a20;
            font-size: 1.55rem;
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.03em;
        }

        .claim-callback-success p {
            margin: 0;
            color: #171a20;
            font-size: 0.86rem;
            font-weight: 500;
            line-height: 1.45;
        }

        .claim-modal-backdrop.is-home .claim-modal-shell {
            width: min(calc(100vw - 40px), 872px);
            height: var(--claim-home-modal-height);
            max-height: calc(100vh - 64px);
            overflow: hidden;
            border-radius: 12px;
            padding: 0;
        }

        .claim-modal-backdrop.is-home .claim-modal-close {
            top: 32px;
            right: 16px;
            width: 40px;
            height: 40px;
            background: #f4f4f4;
        }

        .claim-home-modal {
            height: var(--claim-home-modal-height);
            min-height: 0;
            max-height: none;
            display: grid;
            grid-template-columns: minmax(0, 62.5%) minmax(280px, 37.5%);
            overflow: hidden;
        }

        .claim-home-modal-visual {
            min-width: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 24px 18px 18px 30px;
        }

        .claim-home-modal-visual img {
            width: min(118%, 555px);
            max-height: calc(100% + 18px);
            display: block;
            object-fit: contain;
        }

        .claim-home-modal-details {
            min-height: 0;
            display: flex;
            flex-direction: column;
            padding: 80px 24px 24px;
        }

        .claim-home-modal-details h2 {
            margin-bottom: 24px;
        }

        .claim-home-modal-text {
            min-height: 0;
            flex: 1 1 auto;
            overflow-y: auto;
            padding-right: 0;
            scrollbar-width: none;
        }

        .claim-home-modal-text::-webkit-scrollbar {
            display: none;
        }

        .claim-home-modal-text p {
            margin: 0 0 16px;
            color: #393c41;
            font-size: 0.82rem;
            font-weight: 400;
            line-height: 1.42;
        }

        .claim-home-modal-text .claim-home-footnote {
            font-style: italic;
        }

        .claim-home-modal-button {
            width: 100%;
            min-height: 42px;
            margin-top: 20px;
            border: 0;
            border-radius: 4px;
            background: #3e6ae1;
            color: #ffffff;
            font-size: 0.86rem;
            font-weight: 700;
            cursor: pointer;
        }

        .claim-home-modal-button.is-remove {
            background: #f4f4f4;
            color: #171a20;
        }

        .claim-price-bar {
            position: fixed;
            right: 24px;
            bottom: 0;
            z-index: 2600;
            width: 390px;
            min-height: 74px;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 126px;
            gap: 18px;
            align-items: center;
            padding: 14px 24px 16px;
            border-radius: 8px 8px 0 0;
            background: #ffffff;
            box-shadow: 0 -2px 18px rgba(23, 26, 32, 0.14);
            transform: translateY(0);
            opacity: 1;
            transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.24s ease;
        }

        .claim-price-total {
            display: flex;
            align-items: baseline;
            gap: 10px;
            color: #171a20;
            font-size: 1.35rem;
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1;
        }

        .claim-price-label {
            margin-top: 4px;
            color: #5c5e62;
            font-size: 0.72rem;
            font-weight: 500;
        }

        .claim-order-button {
            min-height: 40px;
            border: 0;
            border-radius: 4px;
            background: #3e6ae1;
            color: #ffffff;
            font-size: 0.86rem;
            font-weight: 700;
            transition: background-color 0.2s ease, transform 0.2s ease;
        }

        .claim-order-button:hover,
        .claim-order-button:focus-visible {
            background: #3457b8;
            transform: translateY(-1px);
        }

        @media (min-aspect-ratio: 1/1) {
            html.claim-order-document {
                overflow: hidden;
            }

            body.claim-order-page {
                overflow: hidden;
            }

            .claim-config-panel {
                padding-bottom: clamp(300px, 34vh, 380px);
            }

            body.claim-fsd-video-active .claim-order-shell {
                column-gap: var(--claim-video-panel-gap);
            }

            body.claim-price-hidden .claim-price-bar {
                transform: translateY(calc(100% + 28px));
                opacity: 0;
                pointer-events: none;
            }

            body.claim-pc-nav-hidden .claim-order-nav {
                transform: translateY(-100%);
                opacity: 0;
                pointer-events: none;
            }

            body.claim-pc-nav-hidden .claim-order-shell {
                padding-top: 0;
            }

            body.claim-pc-nav-hidden .claim-model-stage,
            body.claim-pc-nav-hidden .claim-config-panel {
                min-height: 100vh;
                height: 100vh;
            }

            .claim-config-inner > .claim-included,
            .claim-config-section {
                margin-top: 150px;
            }

            .claim-title {
                padding-bottom: 16px;
            }
        }

        @media (max-aspect-ratio: 1/1) {
            html.claim-order-document {
                overflow-x: clip;
                overflow-y: visible;
            }

            body.claim-order-page {
                overflow-x: clip;
                overflow-y: visible;
            }

            .claim-order-nav {
                position: static;
                inset: auto;
                padding: 0 24px;
            }

            .claim-order-shell {
                display: block;
                height: auto;
                padding-top: 0;
            }

            .claim-model-stage {
                position: sticky;
                top: 0;
                z-index: 80;
                height: var(--claim-portrait-stage-height);
                min-height: 0;
                padding: 0;
                overflow: hidden;
                background: #ffffff;
            }

            .claim-model-image {
                position: absolute;
                top: 50%;
                left: 50%;
                width: min(calc(100% - 36px), 780px);
                transform: translate(-50%, -50%);
            }

            .claim-fsd-video-panel {
                width: min(284px, calc(100% - 28px));
                margin-bottom: 12px;
            }

            .claim-fsd-video-tabs {
                min-height: 36px;
            }

            .claim-fsd-video-tab {
                font-size: 0.76rem;
            }

            .claim-model-stage.is-fsd-video-active .claim-fsd-video-layer {
                opacity: 0;
                pointer-events: none;
            }

            .claim-model-stage.is-fsd-video-active .claim-model-image,
            .claim-model-stage.is-fsd-video-active .claim-carousel-zone {
                opacity: 1;
                pointer-events: auto;
            }

            .claim-carousel-zone {
                width: 92px;
            }

            .claim-config-panel {
                min-height: auto;
                height: auto;
                position: relative;
                padding: 0 22px 112px;
                overflow: visible;
            }

            .claim-config-panel::before {
                content: "";
                position: sticky;
                top: var(--claim-portrait-stage-height);
                z-index: 0;
                display: block;
                height: var(--claim-scroll-fade-height);
                margin-bottom: calc(var(--claim-scroll-fade-height) * -1);
                pointer-events: none;
                background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
            }

            .claim-config-inner {
                position: relative;
                z-index: 1;
                width: 100%;
                margin: 0 auto;
                padding-top: 60px;
            }

            .claim-title {
                font-size: 2.35rem;
            }

            .claim-fsd-section {
                margin-top: 86px;
            }

            .claim-fsd-section .claim-section-title {
                margin-bottom: 12px;
                font-size: 1.28rem;
            }

            .claim-fsd-section .claim-centered-copy {
                max-width: 720px;
                font-size: 0.95rem;
            }

            .claim-fsd-section .claim-small-copy {
                max-width: 820px;
                margin-top: 36px;
                font-size: 0.78rem;
                line-height: 1.45;
            }

            .claim-fsd-preview-button {
                width: min(100%, 820px);
                min-height: 90px;
                margin: 26px auto 0;
                border: 1px solid #d0d1d2;
                border-radius: 4px;
                padding: 0 18px 0 0;
                display: grid;
                grid-template-columns: 116px minmax(0, 1fr) 24px;
                align-items: center;
                gap: 20px;
                background: #f7f7f7;
                color: #171a20;
                font: inherit;
                text-align: left;
                cursor: pointer;
            }

            .claim-fsd-preview-media {
                position: relative;
                width: 116px;
                height: 88px;
                overflow: hidden;
                border-radius: 3px 0 0 3px;
                background: #d8d9da;
            }

            .claim-fsd-preview-media img {
                width: 100%;
                height: 100%;
                display: block;
                object-fit: cover;
            }

            .claim-fsd-preview-play {
                position: absolute;
                inset: 0;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .claim-fsd-preview-play::before {
                content: "";
                width: 34px;
                height: 34px;
                border-radius: 50%;
                background: rgba(244, 244, 244, 0.82);
                position: absolute;
            }

            .claim-fsd-preview-play svg {
                position: relative;
                z-index: 1;
                width: 19px;
                height: 19px;
                color: #5c5e62;
                transform: translateX(1px);
            }

            .claim-fsd-preview-title,
            .claim-fsd-preview-subtitle {
                display: block;
                min-width: 0;
            }

            .claim-fsd-preview-title {
                color: #393c41;
                font-size: 0.95rem;
                font-weight: 700;
                line-height: 1.25;
            }

            .claim-fsd-preview-title span {
                color: #5c5e62;
                font-size: 0.78rem;
                font-weight: 700;
            }

            .claim-fsd-preview-subtitle {
                margin-top: 4px;
                color: #393c41;
                font-size: 0.78rem;
                font-weight: 500;
                line-height: 1.25;
            }

            .claim-fsd-preview-arrow {
                width: 19px;
                height: 19px;
                justify-self: end;
                color: #393c41;
            }

            .claim-charging-section .claim-centered-copy {
                max-width: 620px;
                color: #171a20;
                font-size: 0.95rem;
            }

            .claim-charging-section .claim-option-list {
                width: 100%;
                margin: 20px auto 0;
            }

            .claim-charging-section .claim-muted-action {
                margin-top: 28px;
            }

            .claim-charger-row {
                min-height: 130px;
                grid-template-columns: 20px minmax(220px, 43%) minmax(0, 1fr);
                gap: 18px;
                padding: 16px;
            }

            .claim-charger-row img {
                width: 116px;
                height: 96px;
                justify-self: center;
            }

            .claim-option-price,
            .claim-option-title {
                font-size: 0.95rem;
                line-height: 1.28;
            }

            .claim-option-subcopy {
                color: #5c5e62;
                font-size: 0.86rem;
                line-height: 1.25;
            }

            .claim-option-note {
                margin-top: 12px;
                color: #5c5e62;
                font-size: 0.8rem;
            }

            .claim-package-card,
            .claim-select-row,
            .claim-callback-button {
                width: 100%;
            }

            .claim-modal-backdrop {
                padding: 18px;
            }

            .claim-modal-shell {
                max-height: calc(100vh - 36px);
            }

            .claim-price-bar {
                right: 0;
                left: 0;
                width: auto;
                grid-template-columns: minmax(0, 1fr) 130px;
                gap: 18px;
                padding: 14px 24px 16px;
                border-radius: 8px 8px 0 0;
            }

            body.claim-price-hidden .claim-price-bar {
                transform: translateY(calc(100% + 28px));
                opacity: 0;
                pointer-events: none;
            }

            .claim-price-total {
                align-items: center;
                gap: 10px;
            }

            .claim-config-section[aria-labelledby="claim-delivery-title"] {
                padding-bottom: 80px;
            }

            .claim-callback-button {
                margin-bottom: 42px;
            }

            .claim-modal-backdrop.is-home {
                align-items: center;
                padding: 24px;
            }

            .claim-modal-backdrop.is-home .claim-modal-shell {
                width: min(calc(100vw - 48px), 560px);
                height: auto;
                max-height: calc(100vh - 48px);
                overflow: auto;
                -ms-overflow-style: none;
                scrollbar-width: none;
                border-radius: 12px;
                padding: 0;
            }

            .claim-modal-backdrop.is-home .claim-modal-shell::-webkit-scrollbar {
                display: none;
            }

            .claim-modal-backdrop.is-home .claim-modal-close {
                top: 28px;
                right: 16px;
                z-index: 4;
                background: #f4f4f4;
            }

            .claim-home-modal {
                height: auto;
                min-height: 0;
                max-height: none;
                display: block;
                overflow: visible;
            }

            .claim-home-modal-visual {
                height: clamp(320px, 44vh, 455px);
                padding: 42px 22px 0;
            }

            .claim-home-modal-visual img {
                width: min(100%, 410px);
                max-height: 100%;
                object-fit: contain;
            }

            .claim-home-modal-details {
                padding: 34px 24px 24px;
            }

            .claim-home-modal-details h2 {
                margin-bottom: 26px;
                font-size: 1.25rem;
            }

            .claim-home-modal-text {
                overflow: visible;
                padding-right: 0;
            }

            .claim-home-modal-text p {
                font-size: 0.88rem;
                line-height: 1.45;
            }
        }

        @media (max-aspect-ratio: 1/1) and (max-width: 640px) {
            :root {
                --claim-portrait-stage-height: clamp(190px, 26vh, 240px);
            }

            .claim-model-stage {
                height: var(--claim-portrait-stage-height);
            }

            .claim-title {
                font-size: 1.6rem;
            }

            .claim-specs {
                gap: 10px;
            }

            .claim-spec-value {
                font-size: 1rem;
            }

            .claim-spec-label {
                font-size: 0.76rem;
                white-space: normal;
            }

            .claim-included {
                margin-top: 76px;
            }

            .claim-config-section {
                margin-top: 76px;
            }

            .claim-fsd-preview-button {
                min-height: 88px;
                grid-template-columns: 116px minmax(0, 1fr) 20px;
                gap: 14px;
                padding-right: 14px;
            }

            .claim-package-card {
                padding: 14px;
            }

            .claim-package-row {
                grid-template-columns: 72px minmax(0, 1fr);
                gap: 14px;
            }

            .claim-package-image {
                width: 72px;
                height: 72px;
            }

            .claim-charger-row {
                min-height: 130px;
                grid-template-columns: 20px 108px minmax(0, 1fr);
                gap: 12px;
                padding: 14px;
            }

            .claim-charger-row img {
                width: 108px;
                height: 96px;
            }

            .claim-accessory-row {
                grid-template-columns: 20px minmax(0, 1fr) auto;
                gap: 10px;
                padding: 12px 14px;
            }

            .claim-modal-backdrop {
                align-items: flex-start;
                padding: 16px;
            }

            .claim-modal-shell {
                max-height: calc(100vh - 32px);
                border-radius: 4px;
                padding: 38px 24px 32px;
            }

            .claim-modal-backdrop.is-fsd-video {
                align-items: center;
                padding: 8px;
            }

            .claim-modal-backdrop.is-fsd-video .claim-modal-shell {
                width: calc(100vw - 16px);
                height: calc(100vh - 16px);
                border-radius: 6px;
            }

            .claim-modal-backdrop.is-fsd-video .claim-modal-close {
                top: 32px;
                right: 18px;
            }

            .claim-fsd-video-modal h2 {
                top: 28px;
                left: 28px;
                right: 74px;
                font-size: 1.6rem;
                line-height: 1.15;
            }

            .claim-fsd-modal-caption {
                bottom: 70px;
                font-size: 1.16rem;
            }

            .claim-fsd-modal-tabs {
                left: 18px;
                right: 18px;
                bottom: 16px;
            }

            .claim-modal-close {
                top: 28px;
                right: 20px;
            }

            .claim-price-bar {
                grid-template-columns: minmax(0, 1fr) minmax(128px, 35%);
                gap: 16px;
            }

            .claim-order-button {
                width: 100%;
            }
        }

        @media (max-width: 760px), (max-aspect-ratio: 1/1) {
            .claim-modal-backdrop.is-accessories {
                align-items: flex-start;
                padding: 16px 16px 48px;
                overflow: auto;
            }

            .claim-modal-backdrop.is-accessories .claim-modal-shell {
                width: 100%;
                height: auto;
                max-height: none;
                overflow: visible;
            }

            .claim-modal-backdrop.is-accessories .claim-modal-content {
                height: auto;
            }

            .claim-modal-backdrop.is-accessories .claim-modal-close {
                top: 16px;
                right: 16px;
            }

            .claim-accessories-modal,
            .claim-accessories-track {
                height: auto;
            }

            .claim-accessory-slide {
                position: relative;
                inset: auto;
                display: none;
                grid-template-columns: 1fr;
                min-height: 0;
                transform: none !important;
                filter: none !important;
                opacity: 1;
                pointer-events: none;
            }

            .claim-accessory-slide.is-active {
                display: grid;
                pointer-events: auto;
            }

            .claim-accessory-card-media {
                min-height: 260px;
            }

            .claim-accessory-card-details {
                padding: 32px 24px 24px;
            }

            .claim-accessory-side-arrow {
                display: none;
            }

            .claim-accessories-dots {
                position: fixed;
                left: 50%;
                bottom: 18px;
                z-index: 12;
                justify-content: center;
                margin-top: 0;
                transform: translateX(-50%);
            }

            .claim-accessory-dot {
                background: rgba(92, 94, 98, 0.62);
            }

            .claim-accessory-dot.is-active {
                background: #171a20;
            }

            .claim-modal-backdrop.is-home .claim-modal-shell {
                height: auto;
                max-height: calc(100vh - 48px);
                overflow: auto;
            }

            .claim-home-modal {
                height: auto;
                min-height: 0;
                max-height: none;
                display: block;
                overflow: visible;
            }

            .claim-home-modal-visual {
                height: clamp(320px, 44vh, 455px);
                padding: 42px 22px 0;
            }

            .claim-home-modal-visual img {
                width: min(100%, 410px);
                max-height: 100%;
            }

            .claim-home-modal-details {
                padding: 34px 24px 24px;
            }

            .claim-home-modal-text {
                overflow: visible;
                padding-right: 0;
            }
        }
