:root {
    --font-main: "Kanit", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-soft: #f8fafd;
    --text-main: #1f2e3b;
    --text-muted: #5f6e7d;
    --line: #d7dee6;
    --brand: #e30018;
    --brand-strong: #b20012;
    --header-dark: #434549;
    --header-dark-soft: #4a4d52;
    --shadow-soft: 0 12px 32px rgba(22, 39, 59, 0.08);
    --shadow-hover: 0 14px 28px rgba(22, 39, 59, 0.14);
    --ring: rgba(227, 0, 24, 0.22);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    font-family: var(--font-main);
}

button,
input,
optgroup,
select,
textarea,
option {
    font-family: var(--font-main);
    font-weight: inherit;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text-main);
    font-family: var(--font-main);
    display: flex;
    flex-direction: column;
}

body.is-loading {
    cursor: progress;
}

body.is-loading .menu-card {
    pointer-events: none;
}

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

.container {
    width: min(100%, 1220px);
    padding-inline: clamp(14px, 2.8vw, 42px);
    margin: 0 auto;
}

.site-header {
    position: relative;
    z-index: 10;
}

.top-strip {
    background: #ffffff;
    border-bottom: 5px solid var(--brand);
}

.top-strip-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
}

.honda-brand {
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.honda-logo-image {
    display: block;
    width: clamp(80px, 7vw, 80px);
    height: auto;
    object-fit: contain;
}

.honda-wordmark {
    font-family: var(--font-main);
    font-size: clamp(1.8rem, 3.4vw, 2.35rem);
    line-height: 0.95;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: var(--brand);
}

.honda-tagline {
    margin-top: 0.2rem;
    font-size: 0.78rem;
    line-height: 1.1;
    color: #1a1a1a;
    letter-spacing: 0.01em;
}

.title-strip {
    background: linear-gradient(180deg, var(--header-dark-soft), var(--header-dark));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.title-strip-inner {
    min-height: clamp(66px, 8.2vw, 84px);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.9rem;
    padding-block: clamp(0.55rem, 1vw, 0.7rem) clamp(0.62rem, 1.2vw, 0.9rem);
}

.title-strip-text {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.05rem, 2.05vw, 1.65rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.1;
}

.title-strip-accent {
    width: clamp(62px, 10vw, 118px);
    height: 5px;
    border-radius: 999px;
    background: var(--brand);
    flex: 0 0 auto;
    margin-bottom: 0.2rem;
}

.support-strip {
    background: #f3122e;
}

.support-strip-inner {
    display: flex;
    justify-content: center;
}

.support-contact {
    width: min(100%, 920px);
    color: #ffffff;
    text-align: center;
    padding: 0.72rem 0.9rem 0.82rem;
}

.support-contact::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.52);
    margin-bottom: 0.56rem;
}

.support-label {
    color: #ffffff;
    font-size: clamp(0.84rem, 1.05vw, 1.12rem);
    line-height: 1.18;
    font-weight: 500;
}

.support-phone {
    margin-top: 0.2rem;
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(0.98rem, 1.65vw, 1.42rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 0.24rem;
}

.support-phone:hover,
.support-phone:focus-visible {
    opacity: 0.88;
    outline: none;
}

.support-phone-icon {
    font-size: 0.76em;
    line-height: 1;
}

.support-phone-icon-image {
    width: 0.86em;
    height: 0.86em;
    object-fit: contain;
    display: block;
}

.page-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-width: 320px;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid #d9e2eb;
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(22, 39, 59, 0.16);
    z-index: 9999;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.page-loading.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.page-loading-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(227, 0, 24, 0.2);
    border-top-color: var(--brand);
    border-radius: 999px;
    animation: page-loading-spin 0.68s linear infinite;
}

.page-loading-text {
    margin: 0;
    color: #2f3943;
    font-size: 1.02rem;
    font-weight: 600;
}

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

.page-shell {
    flex: 1;
    display: block;
    padding-block: clamp(18px, 2.5vw, 34px) clamp(24px, 3vw, 40px);
}

.panel {
    width: 100%;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: clamp(8px, 1vw, 14px) 0;
    box-shadow: none;
}

.panel-menu {
    min-height: auto;
}

.panel-intro {
    max-width: 760px;
    margin-bottom: clamp(14px, 2vw, 22px);
}

.panel-kicker {
    margin: 0 0 0.45rem;
    font-size: 0.82rem;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

h1 {
    margin: 0;
    line-height: 1.2;
    font-size: clamp(1.4rem, 2.3vw, 2rem);
}

p {
    margin: 0;
    line-height: 1.6;
}

.muted {
    margin-top: 0.55rem;
    color: var(--text-muted);
}

.badge {
    margin: 0 0 0.6rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.05em;
}

.menu-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 1.7vw, 18px);
    align-content: start;
}

.menu-card {
    border: 1px solid #cfd8e2;
    border-radius: 10px;
    background: transparent;
    padding: 0.9rem 1rem;
    text-align: left;
    cursor: pointer;
    transition: transform 0.16s ease, color 0.16s ease, border-color 0.16s ease;
    min-height: clamp(108px, 15vh, 146px);
    width: 100%;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0.86rem;
    align-items: center;
}

.menu-card:hover {
    transform: translateY(-2px);
    border-color: #b8c3d0;
    color: #111111;
}

.menu-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 0 0 3px var(--ring);
    outline: none;
}

.menu-card.active {
    transform: translateY(-2px);
    border-color: #ca4a57;
    box-shadow: none;
}

.menu-title {
    display: block;
    font-size: 1.06rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-main);
}

.menu-desc {
    display: block;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.menu-card-media {
    width: 68px;
    height: 68px;
    border-radius: 0;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8px;
}

.menu-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-card-content {
    min-width: 0;
}

.menu-card.no-image {
    grid-template-columns: 1fr;
}

.menu-fallback {
    margin-top: 0.45rem;
    display: grid;
    gap: 0.55rem;
    max-width: 460px;
}

.menu-fallback label {
    font-weight: 600;
    color: var(--text-main);
}

select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.7rem 0.78rem;
    font-size: 0.95rem;
    background: #fff;
    color: var(--text-main);
}

select:focus-visible {
    border-color: #ca4a57;
    box-shadow: 0 0 0 3px var(--ring);
    outline: none;
}

.btn {
    display: inline-block;
    border: 0;
    border-radius: 10px;
    background: var(--brand);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    padding: 0.7rem 1.05rem;
    transition: background 0.15s ease;
    width: fit-content;
}

.btn:hover,
.btn:focus-visible {
    background: var(--brand-strong);
    outline: none;
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-main);
    border: 1px solid var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: #f8fafc;
}

.js .menu-fallback {
    display: none;
}

.panel-appointment {
    display: grid;
    gap: 0.9rem;
}

.panel-status-track {
    display: grid;
    gap: 0.82rem;
}

.status-track-form {
    border: 1px solid #d7dee6;
    border-radius: 12px;
    background: #ffffff;
    padding: 0.76rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.62rem;
}

.status-track-field {
    display: grid;
    gap: 0.28rem;
}

.status-track-field span {
    font-size: 0.9rem;
    font-weight: 600;
}

.status-track-field input {
    border: 1px solid #cfd8e2;
    border-radius: 10px;
    background: #ffffff;
    color: var(--text-main);
    padding: 0.6rem 0.68rem;
    font-size: 0.94rem;
}

.status-track-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.status-track-inline-alert {
    border-radius: 10px;
    padding: 0.62rem 0.75rem;
    background: #fff1f2;
    border: 1px solid #f0b8be;
    color: #8d1e2b;
    font-size: 0.92rem;
}

.status-track-meta {
    border: 1px solid #d7dee6;
    border-radius: 12px;
    background: #f8fafc;
    padding: 0.62rem 0.72rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.status-track-live-note {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2e3b;
}

.status-track-empty {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.status-track-results {
    border: 1px solid #d7dee6;
    border-radius: 12px;
    background: #ffffff;
    padding: 0.72rem;
}

.status-track-table-wrap {
    overflow-x: auto;
}

.status-track-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1020px;
}

.status-track-table th,
.status-track-table td {
    border-bottom: 1px solid #e4eaf1;
    padding: 0.52rem 0.5rem;
    text-align: left;
    vertical-align: top;
    font-size: 0.9rem;
}

.status-track-table th {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #4b5b6b;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #d7dee6;
    padding: 0.22rem 0.56rem;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.status-pill-pending {
    background: #fff7e7;
    border-color: #f2dbac;
    color: #8f6112;
}

.status-pill-confirmed {
    background: #edf8ff;
    border-color: #b9daef;
    color: #12507b;
}

.status-pill-in_progress {
    background: #f2f0ff;
    border-color: #cec5ff;
    color: #4c3aa2;
}

.status-pill-completed {
    background: #eaf9ef;
    border-color: #b8e4c5;
    color: #1f6e3a;
}

.status-pill-cancelled {
    background: #feeff1;
    border-color: #f2bec6;
    color: #8c1e2f;
}

.appointment-head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.appointment-head-row .badge {
    margin: 0;
}

.appointment-progress {
    border: 1px solid #d7dee6;
    border-radius: 12px;
    padding: 0.72rem 0.78rem;
    background: #ffffff;
    display: grid;
    gap: 0.4rem;
}

.appointment-progress-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.55rem;
}

.appointment-progress-step {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--text-main);
}

.appointment-progress-percent {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--brand);
}

.appointment-progress-track {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: #eef2f7;
    overflow: hidden;
}

.appointment-progress-fill {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #e30018, #ff3a4d);
    transition: width 0.26s ease;
}

.appointment-progress-labels {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.appointment-progress-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

.appointment-progress-label.is-active {
    color: var(--brand);
}

.appointment-progress-label.is-done {
    color: #3e4d5c;
}

.appointment-step {
    border: 1px solid #d7dee6;
    border-radius: 12px;
    padding: clamp(0.85rem, 1.6vw, 1rem);
    background: #ffffff;
}

.appointment-step + .appointment-step {
    margin-top: 0.2rem;
}

.appointment-step-kicker {
    margin: 0 0 0.25rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 700;
}

.appointment-step-head h2 {
    margin: 0;
    font-size: clamp(1.08rem, 1.8vw, 1.3rem);
    line-height: 1.2;
}

.appointment-step-head .muted {
    margin-top: 0.3rem;
}

.appointment-card-grid {
    margin-top: 0.72rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 1.5vw, 14px);
}

.appointment-choice-card {
    border: 1px solid #cfd8e2;
    border-radius: 10px;
    background: transparent;
    padding: 0.85rem 0.9rem;
    text-align: left;
    cursor: pointer;
    transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
    min-height: clamp(102px, 13.2vh, 134px);
    width: 100%;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0.78rem;
    align-items: center;
}

.appointment-choice-card[hidden] {
    display: none !important;
}

.appointment-choice-card:hover {
    transform: translateY(-2px);
    border-color: #bac7d6;
}

.appointment-choice-card:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(227, 0, 24, 0.2);
}

.appointment-choice-card.is-active {
    border-color: #ca4a57;
    box-shadow: 0 0 0 3px rgba(227, 0, 24, 0.12);
}

.appointment-choice-media {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.appointment-choice-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.appointment-choice-content {
    min-width: 0;
    display: grid;
    gap: 0.15rem;
}

.appointment-choice-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.appointment-choice-code {
    display: block;
    font-size: 0.82rem;
    color: var(--brand);
    font-weight: 700;
    letter-spacing: 0.03em;
}

.appointment-choice-desc {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.appointment-step-actions {
    margin-top: 0.7rem;
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.appointment-step-actions-spread {
    justify-content: space-between;
}

.appointment-next-btn {
    min-width: 132px;
}

.appointment-inline-alert {
    margin-top: 0.65rem;
    border-radius: 10px;
    padding: 0.62rem 0.75rem;
    background: #fff1f2;
    border: 1px solid #f0b8be;
    color: #8d1e2b;
    font-size: 0.92rem;
}

.appointment-empty {
    margin-top: 0.65rem;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.appointment-selection-result {
    margin-top: 0.72rem;
    border: 1px solid #d7dee6;
    border-radius: 10px;
    background: #f8fafc;
    padding: 0.7rem 0.75rem;
}

.appointment-selection-result h3 {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
}

.appointment-selection-result p {
    margin: 0.14rem 0;
    font-size: 0.91rem;
}

.appointment-form {
    margin-top: 0.72rem;
}

.appointment-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
    gap: 0.9rem;
    align-items: start;
}

.appointment-form-main {
    display: grid;
    gap: 0.72rem;
}

.appointment-vehicle-picker {
    border: 1px solid #d3dce7;
    border-radius: 12px;
    background: #f8fbff;
    padding: 0.72rem 0.78rem;
}

.appointment-vehicle-picker h3 {
    margin: 0 0 0.5rem;
    font-size: 0.98rem;
}

.appointment-vehicle-picker-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.58rem 0.7rem;
}

.appointment-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 0.7rem;
}

.appointment-model-preview {
    border: 1px solid #d3dce7;
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    padding: 0.82rem 0.82rem 0.9rem;
}

.appointment-model-preview-kicker {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.appointment-model-preview h3 {
    margin: 0.28rem 0 0;
    font-size: 1rem;
    line-height: 1.35;
}

.appointment-model-preview-hint {
    margin: 0.3rem 0 0;
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.4;
}

.appointment-model-preview-frame {
    margin: 0.7rem 0 0;
    border: 1px solid #d8e0ea;
    border-radius: 12px;
    background: #ffffff;
    min-height: 220px;
    display: grid;
    place-items: center;
    padding: 0.7rem;
}

.appointment-model-preview-frame img {
    display: block;
    width: 100%;
    max-height: 240px;
    object-fit: contain;
}

.appointment-form-field {
    display: grid;
    gap: 0.28rem;
}

.appointment-form-field span {
    font-size: 0.9rem;
    font-weight: 600;
}

.appointment-form-field em {
    color: #c1172a;
    font-style: normal;
}

.appointment-form-field input,
.appointment-form-field select,
.appointment-form-field textarea {
    border: 1px solid #cfd8e2;
    border-radius: 10px;
    background: #ffffff;
    color: var(--text-main);
    padding: 0.6rem 0.68rem;
    font-size: 0.94rem;
}

.appointment-form-field input[readonly] {
    background: #f3f6fa;
    color: #4c5b69;
}

.appointment-form-field small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.appointment-form-field-full {
    grid-column: 1 / -1;
}

.appointment-branch-group[hidden] {
    display: none !important;
}

.appointment-policy-row {
    margin-top: 0.7rem;
}

.appointment-policy-check {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.92rem;
    color: var(--text-main);
}

.appointment-policy-check input {
    margin: 0;
}

.appointment-policy-link {
    border: 0;
    background: transparent;
    color: #b50f21;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

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

.appointment-modal[hidden] {
    display: none;
}

.appointment-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 18, 28, 0.5);
}

.appointment-modal-card {
    position: relative;
    width: min(100%, 660px);
    background: #ffffff;
    border: 1px solid #ced7e2;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(8, 22, 38, 0.22);
    padding: 1rem 1rem 0.95rem;
    z-index: 1;
}

.appointment-modal-card-large {
    width: min(100%, 820px);
}

.appointment-modal-card h2 {
    margin: 0 1.9rem 0.2rem 0;
    font-size: 1.12rem;
}

.appointment-modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: 0;
    background: transparent;
    color: #6a7a89;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.12rem 0.3rem;
}

.appointment-modal-body {
    margin-top: 0.45rem;
    display: grid;
    gap: 0.45rem;
    max-height: min(68vh, 580px);
    overflow: auto;
    padding-right: 3px;
}

.appointment-modal-actions {
    margin-top: 0.78rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.52rem;
    flex-wrap: wrap;
}

.appointment-modal-actions-spread {
    justify-content: space-between;
}

.appointment-modal-note {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.appointment-review-list {
    margin: 0;
    display: grid;
    grid-template-columns: minmax(130px, 180px) minmax(0, 1fr);
    gap: 0.32rem 0.6rem;
}

.appointment-review-list dt {
    font-weight: 700;
    color: #2f3d4a;
}

.appointment-review-list dd {
    margin: 0;
    color: #41505f;
    word-break: break-word;
}

.appointment-success-highlight {
    margin: 0.12rem 0;
    font-size: 1.02rem;
}

#appointment-success-modal .appointment-modal-backdrop {
    background: rgba(8, 18, 28, 0.5);
}

.appointment-success-card {
    width: min(100%, 760px);
    background: linear-gradient(145deg, #ffffff 0%, #f7f9fc 52%, #f1f4f8 100%);
    border: 1px solid #d4dce6;
    box-shadow: 0 20px 44px rgba(8, 22, 38, 0.22);
    padding: 1.3rem 1.2rem 1.08rem;
}

.appointment-success-card h2 {
    margin: 0 2rem 0.08rem;
    text-align: center;
    color: #243444;
    font-size: 1.4rem;
}

.appointment-success-card .appointment-modal-close {
    top: 10px;
    right: 10px;
    color: #5c6c7b;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}

.appointment-success-corner-icon {
    position: static;
    width: 58px;
    height: 58px;
    margin: 0 auto 0.52rem;
    border-radius: 16px;
    border: 1px solid #cfd8e3;
    background: linear-gradient(160deg, #ffffff 0%, #edf2f7 100%);
    box-shadow: 0 10px 18px rgba(19, 47, 72, 0.15);
    display: grid;
    place-items: center;
}

.appointment-success-corner-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.appointment-success-body {
    margin-top: 0.78rem;
    padding-right: 0;
    gap: 0.72rem;
    justify-items: center;
    text-align: center;
}

.appointment-success-summary {
    width: min(100%, 560px);
    border: 1px solid #d5dde7;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.84);
    padding: 0.74rem 0.92rem;
    display: grid;
    gap: 0.3rem;
}

.appointment-success-summary .appointment-success-highlight {
    margin: 0;
}

.appointment-success-summary strong {
    color: #223243;
}

.appointment-success-qr {
    margin-top: 0.44rem;
    display: flex;
    justify-content: center;
}

.appointment-success-qr img {
    width: min(100%, 230px);
    height: auto;
    border: 1px solid #d6dee8;
    border-radius: 14px;
    background: #ffffff;
    padding: 0.45rem;
    box-shadow: 0 10px 18px rgba(19, 47, 72, 0.14);
}

.appointment-success-note {
    margin: 0 auto;
    width: min(100%, 560px);
    color: #4e5e6e;
}

.appointment-success-slip a {
    color: #b20d1f;
    font-weight: 700;
    text-decoration: underline;
}

.appointment-success-actions {
    justify-content: center;
}

.appointment-success-actions .btn {
    min-width: 130px;
}

.appointment-back-btn {
    margin-top: 0.45rem;
}

.appointment-back-btn-top {
    margin-top: 0;
}

@media (max-width: 860px) {
    .title-strip-inner {
        min-height: 90px;
    }

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

    .panel-menu {
        min-height: auto;
    }

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

    .status-track-form {
        grid-template-columns: 1fr;
    }

    .appointment-progress-labels {
        flex-direction: column;
        gap: 0.12rem;
    }

    .appointment-form-layout {
        grid-template-columns: 1fr;
    }

    .appointment-vehicle-picker-grid {
        grid-template-columns: 1fr;
    }

    .appointment-form-grid {
        grid-template-columns: 1fr;
    }

    .appointment-review-list {
        grid-template-columns: 1fr;
        gap: 0.16rem;
    }

    .appointment-modal-card-large {
        width: min(100%, 740px);
    }
}

@media (max-width: 640px) {
    .container {
        padding-inline: 12px;
    }

    .top-strip-inner {
        min-height: 62px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .honda-wordmark {
        font-size: 1.65rem;
    }

    .honda-tagline {
        font-size: 0.68rem;
    }

    .honda-logo-image {
        width: 118px;
    }

    .title-strip-inner {
        min-height: 62px;
        gap: 0.6rem;
    }

    .title-strip-accent {
        width: 56px;
        height: 4px;
        margin-bottom: 0.2rem;
    }

    .support-contact {
        padding: 0.62rem 0.38rem 0.7rem;
    }

    .support-contact::before {
        margin-bottom: 0.45rem;
    }

    .support-label {
        font-size: 0.8rem;
    }

    .support-phone {
        font-size: clamp(0.9rem, 4.7vw, 1.12rem);
        gap: 0.18rem;
    }

    .page-loading {
        min-width: 250px;
        padding: 1rem 1.1rem;
    }

    .page-loading-text {
        font-size: 0.92rem;
    }

    .page-shell {
        padding-block: 14px 24px;
    }

    .panel {
        border-radius: 0;
        padding: 6px 0;
    }

    .menu-card {
        min-height: 94px;
        grid-template-columns: 56px 1fr;
        gap: 0.64rem;
        padding: 0.74rem 0.8rem;
    }

    .menu-card-media {
        width: 56px;
        height: 56px;
        border-radius: 0;
    }

    .menu-title {
        font-size: 0.98rem;
    }

    .menu-desc {
        font-size: 0.86rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .appointment-head-row {
        align-items: center;
    }

    .appointment-head-row .btn {
        width: auto;
    }

    .appointment-step-actions-spread {
        justify-content: stretch;
    }

    .appointment-step-actions-spread .btn {
        flex: 1 1 auto;
    }

    .appointment-modal {
        padding: 10px;
    }

    .appointment-modal-card {
        width: 100%;
        padding: 0.82rem 0.78rem 0.8rem;
    }

    .appointment-modal-card h2 {
        font-size: 1rem;
        margin-right: 1.5rem;
    }

    .appointment-success-card {
        padding: 1rem 0.76rem 0.82rem;
    }

    .appointment-success-card h2 {
        margin: 0 1.7rem 0 1.7rem;
        font-size: 1.16rem;
    }

    .appointment-success-corner-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 0.42rem;
        border-radius: 14px;
    }

    .appointment-success-corner-icon img {
        width: 26px;
        height: 26px;
    }

    .appointment-success-summary {
        padding: 0.66rem 0.7rem;
    }

    .appointment-success-summary .appointment-success-highlight {
        font-size: 0.95rem;
    }

    .appointment-modal-actions .btn {
        width: auto;
    }

    .appointment-choice-card {
        min-height: 92px;
        grid-template-columns: 52px 1fr;
        gap: 0.58rem;
        padding: 0.72rem 0.76rem;
    }

    .appointment-choice-media {
        width: 52px;
        height: 52px;
    }

    .appointment-choice-title {
        font-size: 0.94rem;
    }

    .appointment-choice-desc {
        font-size: 0.84rem;
    }
}
