.cardet-booking-wrapper,
.cardet-booking-wrapper * {
    box-sizing: border-box;
}

/* Booking lifecycle self-service */
.cardet-manage-widget .cardet-booking-shell{max-width:860px;margin:0 auto;padding:clamp(24px,4vw,48px)}
.cardet-manage-header{margin-bottom:28px}.cardet-manage-header__eyebrow{display:block;color:var(--cardet-brand);font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;margin-bottom:7px}.cardet-manage-header h2{margin:0 0 8px;font-size:clamp(28px,4vw,40px)}.cardet-manage-header p{margin:0;color:#61717d}
.cardet-manage-summary,.cardet-manage-action-card{background:#fff;border:1px solid #dce6ec;border-radius:18px;padding:22px;box-shadow:0 12px 34px rgba(16,35,48,.07);margin-bottom:18px}.cardet-manage-summary__top{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;margin-bottom:18px}.cardet-manage-summary__top span{display:block;color:#6b7a85;font-size:12px}.cardet-manage-summary__top strong{font-size:18px}
.cardet-manage-status{border-radius:999px;padding:7px 11px!important;font-size:12px!important;font-weight:800}.cardet-manage-status.is-confirmed{background:#e7f8ef;color:#14733c}.cardet-manage-status.is-pending{background:#fff5d9;color:#8a5c00}.cardet-manage-status.is-cancelled,.cardet-manage-status.is-no_show{background:#fdeaea;color:#a72a2a}.cardet-manage-status.is-completed{background:#eaf2ff;color:#285ea8}
.cardet-manage-action-card>div{display:flex;gap:13px;align-items:flex-start;margin-bottom:18px}.cardet-manage-action-card .dashicons{color:var(--cardet-brand);font-size:24px;width:24px;height:24px}.cardet-manage-action-card h3{margin:0 0 4px}.cardet-manage-action-card p{margin:0;color:#6b7a85}.cardet-manage-action-card form{display:grid;grid-template-columns:1fr 1fr;gap:14px}.cardet-manage-action-card label{display:grid;gap:6px;font-weight:700}.cardet-manage-action-card input,.cardet-manage-action-card select{width:100%;min-height:46px;border:1px solid #cbd8df;border-radius:10px;padding:8px 11px;background:#fff}.cardet-manage-action-card .cardet-submit-button{grid-column:1/-1}
.cardet-manage-action-card--danger{border-color:#efd3d3}.cardet-manage-action-card--danger .dashicons{color:#b12c2c}.cardet-manage-cancel{border:1px solid #d93d3d;background:#fff;color:#a92222;border-radius:10px;padding:11px 16px;font-weight:800;cursor:pointer}.cardet-manage-cancel:hover{background:#fff3f3}.cardet-manage-notice{border-radius:12px;background:#e9f7ed;color:#17683a;padding:14px 16px;margin:16px 0}.cardet-manage-notice.is-error{background:#fdecec;color:#9f2525}
@media(max-width:620px){.cardet-manage-action-card form{grid-template-columns:1fr}.cardet-manage-summary__top{display:block}.cardet-manage-status{display:inline-block!important;margin-top:12px}}

.cardet-booking-wrapper {
    --cardet-brand: #08a9e1;
    --cardet-brand-dark: #078aba;
    --cardet-brand-soft: #eaf8fd;
    --cardet-ink: #252a2f;
    --cardet-ink-soft: #4f5861;
    --cardet-muted: #6c7680;
    --cardet-surface: #ffffff;
    --cardet-canvas: #f4f6f8;
    --cardet-border: #dce2e7;
    --cardet-border-strong: #c8d0d7;
    --cardet-error: #b42318;
    --cardet-error-soft: #fff2f0;
    --cardet-error-border: #f4b4ae;
    --cardet-success: #17834f;
    --cardet-success-soft: #edf9f2;
    --cardet-success-border: #a9dec0;
    --cardet-shadow: 0 28px 70px rgba(32, 40, 47, 0.12);
    position: relative;
    left: 50%;
    width: calc(100vw - 32px);
    max-width: 1380px;
    margin: 36px 0;
    padding: 0 16px;
    transform: translateX(-50%);
    color: var(--cardet-ink);
    font-family: inherit;
}

.cardet-booking-wrapper .cardet-booking-card {
    position: relative;
    background: var(--cardet-canvas);
    border: 1px solid var(--cardet-border);
    border-radius: 24px;
    box-shadow: var(--cardet-shadow);
}

.cardet-booking-wrapper .cardet-booking-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 230px;
    padding: 50px 58px;
    overflow: hidden;
    border-radius: 23px 23px 0 0;
    background:
        radial-gradient(circle at 88% -20%, rgba(8, 169, 225, 0.48) 0, rgba(8, 169, 225, 0) 39%),
        linear-gradient(132deg, #292e33 0%, #3d444b 56%, #535b63 100%);
    color: #ffffff;
}

.cardet-booking-wrapper .cardet-booking-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 118px;
    height: 5px;
    border-radius: 0 0 8px 0;
    background: var(--cardet-brand);
}

.cardet-booking-wrapper .cardet-booking-header::after {
    content: "";
    position: absolute;
    right: -58px;
    bottom: -98px;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    box-shadow:
        0 0 0 34px rgba(255, 255, 255, 0.025),
        0 0 0 72px rgba(255, 255, 255, 0.018);
    pointer-events: none;
}

.cardet-booking-wrapper .cardet-booking-header__content,
.cardet-booking-wrapper .cardet-booking-header__badge {
    position: relative;
    z-index: 1;
}

.cardet-booking-wrapper .cardet-booking-header__content {
    max-width: 780px;
}

.cardet-booking-wrapper .cardet-booking-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 13px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.3;
    text-transform: uppercase;
}

.cardet-booking-wrapper .cardet-booking-kicker__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cardet-brand);
    box-shadow: 0 0 0 5px rgba(8, 169, 225, 0.15);
}

.cardet-booking-wrapper .cardet-booking-title {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    font-weight: 750;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.cardet-booking-wrapper .cardet-booking-subtitle {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.77);
    font-size: 1.06rem;
    line-height: 1.65;
}

.cardet-booking-wrapper .cardet-booking-header__badge {
    display: flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.83rem;
    font-weight: 650;
    backdrop-filter: blur(8px);
}

.cardet-booking-wrapper .cardet-booking-header__badge svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: var(--cardet-brand);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.cardet-booking-wrapper .cardet-public-message,
.cardet-booking-wrapper .cardet-public-success,
.cardet-booking-wrapper .cardet-public-form {
    position: relative;
    z-index: 1;
}

.cardet-booking-wrapper .cardet-public-message {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 26px 30px 0;
    padding: 14px 16px;
    border: 1px solid var(--cardet-error-border);
    border-radius: 12px;
    background: var(--cardet-error-soft);
    color: var(--cardet-error);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.5;
}

.cardet-booking-wrapper .cardet-public-message::before {
    content: "!";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: currentColor;
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 800;
}

.cardet-booking-wrapper .cardet-public-message:empty,
.cardet-booking-wrapper .cardet-public-success[hidden] {
    display: none;
}

.cardet-booking-wrapper .cardet-summary-card[hidden] {
    display: none;
}

.cardet-booking-wrapper .cardet-public-message[data-state="info"] {
    border-color: #9bdcf2;
    background: var(--cardet-brand-soft);
    color: #087ca4;
}

.cardet-booking-wrapper .cardet-public-message[data-state="info"]::before {
    content: "i";
}

.cardet-booking-wrapper .cardet-public-form {
    padding: 36px;
}

.cardet-booking-wrapper .cardet-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 380px);
    align-items: start;
    gap: 32px;
}

.cardet-booking-wrapper .cardet-form-main {
    display: grid;
    gap: 28px;
    min-width: 0;
}

.cardet-booking-wrapper .cardet-form-section,
.cardet-booking-wrapper .cardet-form-footer {
    background: var(--cardet-surface);
    border: 1px solid var(--cardet-border);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(35, 44, 52, 0.055);
}

.cardet-booking-wrapper .cardet-form-section {
    padding: 34px;
}

.cardet-booking-wrapper .cardet-section-heading-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 29px;
    padding-bottom: 23px;
    border-bottom: 1px solid #edf0f2;
}

.cardet-booking-wrapper .cardet-section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border: 1px solid #bde8f6;
    border-radius: 13px;
    background: var(--cardet-brand-soft);
    color: var(--cardet-brand-dark);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.cardet-booking-wrapper .cardet-section-eyebrow {
    margin: 0 0 3px;
    color: var(--cardet-brand-dark);
    font-size: 0.77rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
}

.cardet-booking-wrapper .cardet-section-title,
.cardet-booking-wrapper .cardet-summary-title {
    margin: 0;
    font-size: 1.38rem;
    font-weight: 720;
    letter-spacing: -0.018em;
    line-height: 1.3;
}

.cardet-booking-wrapper .cardet-choice-block + .cardet-choice-block {
    margin-top: 40px;
    padding-top: 38px;
    border-top: 1px solid #edf0f2;
}

.cardet-booking-wrapper .cardet-choice-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 21px;
}

.cardet-booking-wrapper .cardet-choice-step {
    margin: 0 0 3px;
    color: var(--cardet-brand-dark);
    font-size: 0.74rem;
    font-weight: 760;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
}

.cardet-booking-wrapper .cardet-choice-title {
    margin: 0;
    color: var(--cardet-ink);
    font-size: 1.14rem;
    font-weight: 720;
    letter-spacing: -0.012em;
    line-height: 1.35;
}

.cardet-booking-wrapper .cardet-choice-hint {
    margin: 0;
    color: #87919a;
    font-size: 0.82rem;
    line-height: 1.4;
    text-align: right;
}

.cardet-booking-wrapper .cardet-native-control {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    min-height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    white-space: nowrap !important;
}

.cardet-booking-wrapper .cardet-vehicle-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
    gap: 14px;
}

.cardet-booking-wrapper .cardet-vehicle-option,
.cardet-booking-wrapper .cardet-service-option {
    position: relative;
    appearance: none;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--cardet-border);
    outline: none;
    background: #ffffff;
    color: var(--cardet-ink);
    cursor: pointer;
    font: inherit;
    box-shadow: 0 5px 16px rgba(32, 40, 47, 0.045);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.cardet-booking-wrapper .cardet-vehicle-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
    min-height: 158px;
    padding: 18px 11px 16px;
    border-radius: 16px;
    text-align: center;
}

.cardet-booking-wrapper .cardet-vehicle-option::before,
.cardet-booking-wrapper .cardet-service-option::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--cardet-brand);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cardet-booking-wrapper .cardet-vehicle-option:hover,
.cardet-booking-wrapper .cardet-service-option:hover {
    z-index: 1;
    border-color: #99d9ee;
    transform: translateY(-2px);
    box-shadow: 0 13px 28px rgba(32, 40, 47, 0.10);
}

.cardet-booking-wrapper button.cardet-vehicle-option:hover:not(.is-selected),
.cardet-booking-wrapper button.cardet-service-option:hover:not(.is-selected),
.cardet-booking-wrapper button.cardet-addon-option:hover:not(.is-selected) {
    color: var(--cardet-ink) !important;
    background: #ffffff !important;
    text-decoration: none !important;
}

.cardet-booking-wrapper button.cardet-vehicle-option.is-selected,
.cardet-booking-wrapper button.cardet-vehicle-option.is-selected:hover,
.cardet-booking-wrapper button.cardet-service-option.is-selected,
.cardet-booking-wrapper button.cardet-service-option.is-selected:hover,
.cardet-booking-wrapper button.cardet-addon-option.is-selected,
.cardet-booking-wrapper button.cardet-addon-option.is-selected:hover {
    border-color: var(--cardet-brand) !important;
    color: var(--cardet-ink) !important;
    background: linear-gradient(155deg, #ffffff 38%, #edf9fd 100%) !important;
    text-decoration: none !important;
}

.cardet-booking-wrapper .cardet-vehicle-option.is-selected,
.cardet-booking-wrapper .cardet-service-option.is-selected {
    border-color: var(--cardet-brand);
    background: linear-gradient(155deg, #ffffff 38%, #edf9fd 100%);
    box-shadow: 0 0 0 2px rgba(8, 169, 225, 0.12), 0 14px 30px rgba(8, 169, 225, 0.13);
}

.cardet-booking-wrapper .cardet-vehicle-option.is-selected::before,
.cardet-booking-wrapper .cardet-service-option.is-selected::before {
    opacity: 1;
}

.cardet-booking-wrapper .cardet-option-check {
    position: absolute;
    top: 9px;
    right: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    border: 1px solid #d7dee3;
    border-radius: 50%;
    background: #ffffff;
    color: transparent;
    opacity: 0;
    transform: scale(0.75);
    transition: opacity 0.18s ease, transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.cardet-booking-wrapper .cardet-option-check svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
}

.cardet-booking-wrapper .is-selected > .cardet-option-check {
    background: var(--cardet-brand);
    border-color: var(--cardet-brand);
    color: #ffffff;
    opacity: 1;
    transform: scale(1);
}

.cardet-booking-wrapper .cardet-vehicle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 112px;
    margin: -7px 0 2px;
}

.cardet-booking-wrapper .cardet-vehicle-icon img {
    display: block;
    width: 100%;
    max-width: 195px;
    height: 112px;
    object-fit: contain;
    filter: drop-shadow(0 8px 9px rgba(23, 42, 56, 0.14));
    transform: translateZ(0);
    transition: filter 0.22s ease, transform 0.22s ease;
}

.cardet-booking-wrapper .cardet-vehicle-option:hover .cardet-vehicle-icon img {
    filter: drop-shadow(0 11px 12px rgba(23, 42, 56, 0.2));
    transform: translateY(-3px) scale(1.035);
}

.cardet-booking-wrapper .cardet-vehicle-option.is-selected .cardet-vehicle-icon img {
    filter: drop-shadow(0 11px 13px rgba(8, 169, 225, 0.22));
    transform: translateY(-2px) scale(1.025);
}

.cardet-booking-wrapper .cardet-vehicle-name {
    display: block;
    max-width: 100%;
    overflow: hidden;
    color: var(--cardet-ink);
    font-size: 0.9rem;
    font-weight: 720;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cardet-booking-wrapper .cardet-service-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 20px;
}

.cardet-booking-wrapper .cardet-service-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-column: 1 / -1;
    gap: 12px;
    min-height: 164px;
    padding: 26px;
    border: 1px dashed #cfd8de;
    border-radius: 15px;
    background: linear-gradient(145deg, #f8fafb, #f3f6f8);
    color: #7d8790;
    font-size: 0.86rem;
    line-height: 1.5;
    text-align: center;
}

.cardet-booking-wrapper .cardet-service-state--error {
    border-color: var(--cardet-error-border);
    background: var(--cardet-error-soft);
    color: var(--cardet-error);
}

.cardet-booking-wrapper .cardet-service-state__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #c9e9f4;
    border-radius: 50%;
    background: var(--cardet-brand-soft);
    color: var(--cardet-brand-dark);
}

.cardet-booking-wrapper .cardet-service-state__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.65;
}

.cardet-booking-wrapper .cardet-service-spinner {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(8, 138, 186, 0.22);
    border-top-color: var(--cardet-brand-dark);
    border-radius: 50%;
    animation: cardet-service-spin 0.8s linear infinite;
}

.cardet-booking-wrapper .cardet-service-option {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    min-height: 315px;
    padding: 0;
    border-radius: 17px;
    text-align: left;
}

.cardet-booking-wrapper .cardet-service-option__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-height: 82px;
    padding: 27px 25px 5px;
    text-align: center;
}

.cardet-booking-wrapper .cardet-service-option__title {
    color: var(--cardet-brand-dark);
    font-size: 1.17rem;
    font-weight: 760;
    letter-spacing: -0.015em;
    line-height: 1.28;
}

.cardet-booking-wrapper .cardet-service-option__badge {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 4px 9px;
    border-radius: 999px;
    background: #eef1f3;
    color: #68727b;
    font-size: 0.64rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.cardet-booking-wrapper .cardet-service-option__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    min-height: 64px;
    padding: 2px 22px 10px;
    color: var(--cardet-ink);
    line-height: 1;
}

.cardet-booking-wrapper .cardet-service-option__price strong {
    font-size: clamp(2.55rem, 5vw, 3.2rem);
    font-weight: 760;
    letter-spacing: -0.045em;
}

.cardet-booking-wrapper .cardet-service-option__price sup {
    margin-top: 5px;
    font-size: 1.08rem;
    font-weight: 650;
}

.cardet-booking-wrapper .cardet-service-option__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 52px;
    margin: 0 24px;
    padding: 13px 9px;
    border-top: 1px solid #e8ecef;
    border-bottom: 1px solid #e8ecef;
    color: #66737d;
    font-size: 0.87rem;
    font-weight: 560;
    line-height: 1.3;
}

.cardet-booking-wrapper .cardet-service-option__meta svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--cardet-brand-dark);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.cardet-booking-wrapper .cardet-service-option__features {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 22px 25px 4px;
    list-style: none;
}

.cardet-booking-wrapper .cardet-service-option__features li {
    position: relative;
    margin: 0;
    padding-left: 22px;
    color: #55636d;
    font-size: 0.83rem;
    line-height: 1.48;
}

.cardet-booking-wrapper .cardet-service-option__features li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: #77cc00;
    font-size: 0.9rem;
    font-weight: 850;
}

.cardet-booking-wrapper .cardet-service-option__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: calc(100% - 50px);
    min-height: 43px;
    margin: auto 25px 23px;
    padding: 10px 15px;
    border: 1px solid var(--cardet-brand);
    border-radius: 999px;
    color: var(--cardet-brand-dark);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.cardet-booking-wrapper .cardet-service-option__footer svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.cardet-booking-wrapper .cardet-service-option.is-selected .cardet-service-option__footer {
    background: var(--cardet-brand);
    color: #ffffff;
}

.cardet-booking-wrapper .cardet-service-option.is-selected .cardet-service-option__footer svg {
    display: none;
}

.cardet-booking-wrapper .cardet-choice-block--addons[hidden],
.cardet-booking-wrapper .cardet-choice-block--date[hidden],
.cardet-booking-wrapper .cardet-summary-row[hidden],
.cardet-booking-wrapper .cardet-time-stage[hidden],
.cardet-booking-wrapper .cardet-form-section--contact[hidden] {
    display: none;
}

.cardet-booking-wrapper .cardet-addon-actions,
.cardet-booking-wrapper .cardet-contact-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e6ecef;
}

.cardet-booking-wrapper .cardet-addon-actions > span {
    color: #74828b;
    font-size: .68rem;
    line-height: 1.45;
}

.cardet-booking-wrapper .cardet-addon-actions__buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.cardet-booking-wrapper .cardet-step-skip,
.cardet-booking-wrapper button.cardet-step-skip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 10px 17px;
    border: 1px solid #b9cbd4 !important;
    border-radius: 999px;
    color: #36505d !important;
    background: #ffffff !important;
    cursor: pointer;
    font: inherit;
    font-size: .72rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.cardet-booking-wrapper button.cardet-step-skip:hover,
.cardet-booking-wrapper button.cardet-step-skip:focus-visible {
    border-color: var(--cardet-brand) !important;
    color: var(--cardet-brand-dark) !important;
    background: #eefaff !important;
    text-decoration: none !important;
}

.cardet-booking-wrapper button.cardet-step-skip:disabled {
    color: #92a0a8 !important;
    background: #f5f7f8 !important;
    cursor: wait;
    opacity: .72;
}

.cardet-booking-wrapper .cardet-step-continue,
.cardet-booking-wrapper button.cardet-step-continue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 43px;
    padding: 10px 18px;
    border: 1px solid var(--cardet-brand) !important;
    border-radius: 999px;
    color: #ffffff !important;
    background: linear-gradient(145deg, #14b4e8, #078dbd) !important;
    cursor: pointer;
    font: inherit;
    font-size: .75rem;
    font-weight: 730;
    line-height: 1;
    text-decoration: none !important;
    box-shadow: 0 7px 16px rgba(8, 169, 225, .18);
    transition: transform .18s ease, box-shadow .18s ease;
}

.cardet-booking-wrapper button.cardet-step-continue:hover,
.cardet-booking-wrapper button.cardet-step-continue:focus-visible {
    border-color: var(--cardet-brand-dark) !important;
    color: #ffffff !important;
    background: linear-gradient(145deg, #12aada, #067da8) !important;
    transform: translateY(-1px);
    text-decoration: none !important;
    box-shadow: 0 10px 21px rgba(8, 169, 225, .25);
}

.cardet-booking-wrapper button.cardet-step-continue:disabled {
    border-color: #a8d7e6 !important;
    color: rgba(255, 255, 255, .8) !important;
    background: #80c9e1 !important;
    cursor: wait;
    opacity: .72;
    transform: none;
    box-shadow: none;
}

.cardet-booking-wrapper .cardet-step-continue > span {
    font-size: 1.15rem;
    font-weight: 400;
}

.cardet-booking-wrapper .cardet-addon-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.cardet-booking-wrapper .cardet-addon-option {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    min-height: 112px;
    height: auto;
    margin: 0;
    padding: 17px 18px;
    overflow: visible;
    border: 1px solid var(--cardet-border);
    border-radius: 15px;
    outline: none;
    background: linear-gradient(145deg, #ffffff, #f8fafb);
    color: var(--cardet-ink);
    cursor: pointer;
    font: inherit;
    text-align: left;
    white-space: normal;
    box-shadow: 0 6px 18px rgba(32, 40, 47, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.cardet-booking-wrapper .cardet-addon-option:hover {
    border-color: #99d9ee;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(32, 40, 47, 0.1);
}

.cardet-booking-wrapper .cardet-addon-option.is-selected {
    border-color: var(--cardet-brand);
    background: linear-gradient(145deg, #ffffff, #eaf8fd);
    box-shadow: 0 0 0 2px rgba(8, 169, 225, 0.11), 0 13px 27px rgba(8, 169, 225, 0.12);
}

.cardet-booking-wrapper .cardet-addon-option__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    margin-top: 2px;
    border: 1px solid #cbd4da;
    border-radius: 7px;
    background: #ffffff;
    color: transparent;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.cardet-booking-wrapper .cardet-addon-option__check svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.5;
}

.cardet-booking-wrapper .cardet-addon-option.is-selected .cardet-addon-option__check {
    border-color: var(--cardet-brand);
    background: var(--cardet-brand);
    color: #ffffff;
}

.cardet-booking-wrapper .cardet-addon-option__content {
    display: grid;
    align-content: start;
    gap: 6px;
    min-width: 0;
    white-space: normal;
}

.cardet-booking-wrapper .cardet-addon-option__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 9px;
    min-width: 0;
}

.cardet-booking-wrapper .cardet-addon-option__title {
    min-width: 0;
    padding-right: 0;
    color: var(--cardet-ink);
    font-size: 0.94rem;
    font-weight: 740;
    line-height: 1.35;
    overflow-wrap: anywhere;
    white-space: normal;
}

.cardet-booking-wrapper .cardet-addon-option__description {
    display: block;
    min-width: 0;
    overflow: visible;
    color: var(--cardet-muted);
    font-size: 0.78rem;
    line-height: 1.48;
    overflow-wrap: anywhere;
    text-overflow: clip;
    white-space: normal;
}

.cardet-booking-wrapper .cardet-addon-option__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 3px;
}

.cardet-booking-wrapper .cardet-addon-option__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 5px 8px;
    border-radius: 999px;
    background: #eef2f4;
    color: #5e6a73;
    font-size: 0.72rem;
    font-weight: 680;
    line-height: 1;
}

.cardet-booking-wrapper .cardet-addon-option__price {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 5px 8px;
    border-radius: 999px;
    background: var(--cardet-brand-soft);
    color: var(--cardet-brand-dark);
    font-size: 0.79rem;
    font-weight: 780;
    line-height: 1;
    white-space: nowrap;
}

.cardet-booking-wrapper #cardet-summary-addons {
    display: grid;
    gap: 4px;
}

.cardet-booking-wrapper .cardet-summary-addon-name {
    display: block;
}

.cardet-booking-wrapper .cardet-choice-block--date {
    padding-bottom: 2px;
}

.cardet-booking-wrapper .cardet-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.cardet-booking-wrapper .cardet-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-width: 0;
}

.cardet-booking-wrapper .cardet-field--full {
    grid-column: 1 / -1;
}

.cardet-booking-wrapper label {
    color: var(--cardet-ink);
    font-size: 0.94rem;
    font-weight: 650;
    line-height: 1.45;
}

.cardet-booking-wrapper .cardet-required {
    color: var(--cardet-brand-dark);
}

.cardet-booking-wrapper .cardet-label-optional {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    margin-left: 7px;
    padding: 3px 9px;
    border: 1px solid #9edff3;
    border-radius: 999px;
    color: #047ca7;
    background: #eaf9fe;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: .045em;
    line-height: 1;
    text-transform: uppercase;
    vertical-align: 2px;
}

.cardet-booking-wrapper input,
.cardet-booking-wrapper select,
.cardet-booking-wrapper textarea,
.cardet-booking-wrapper button {
    font: inherit;
}

.cardet-booking-wrapper input,
.cardet-booking-wrapper select,
.cardet-booking-wrapper textarea {
    width: 100%;
    min-height: 58px;
    margin: 0;
    border: 1px solid var(--cardet-border-strong);
    border-radius: 11px;
    outline: none;
    background-color: #ffffff;
    color: var(--cardet-ink);
    padding: 15px 17px;
    font-size: 16px;
    line-height: 1.35;
    box-shadow: 0 1px 2px rgba(35, 44, 52, 0.025);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.cardet-booking-wrapper select {
    appearance: none;
    padding-right: 44px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23545e67' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.cardet-booking-wrapper textarea {
    min-height: 125px;
    resize: vertical;
}

.cardet-booking-wrapper input::placeholder,
.cardet-booking-wrapper textarea::placeholder {
    color: #929ba3;
    opacity: 1;
}

.cardet-booking-wrapper select:hover:not(:disabled),
.cardet-booking-wrapper input:hover:not(:disabled),
.cardet-booking-wrapper textarea:hover:not(:disabled) {
    border-color: #aeb8c0;
}

.cardet-booking-wrapper select:focus,
.cardet-booking-wrapper input:focus,
.cardet-booking-wrapper textarea:focus,
.cardet-booking-wrapper button:focus-visible,
.cardet-booking-wrapper input[type="checkbox"]:focus-visible {
    border-color: var(--cardet-brand);
    box-shadow: 0 0 0 4px rgba(8, 169, 225, 0.14);
}

.cardet-booking-wrapper select:disabled,
.cardet-booking-wrapper input:disabled,
.cardet-booking-wrapper textarea:disabled {
    border-color: #e0e5e9;
    background-color: #f2f4f5;
    color: #8a939b;
    cursor: not-allowed;
}

.cardet-booking-wrapper .cardet-form-sidebar {
    min-width: 0;
}

.cardet-booking-wrapper .cardet-sidebar-sticky {
    position: sticky;
    top: 24px;
    display: grid;
    gap: 22px;
}

.cardet-booking-wrapper .cardet-summary-card {
    position: relative;
    overflow: hidden;
    padding: 31px;
    border: 1px solid #4f5961;
    border-radius: 18px;
    background:
        radial-gradient(circle at 110% -10%, rgba(8, 169, 225, 0.28), transparent 38%),
        linear-gradient(145deg, #2c3136 0%, #3c434a 100%);
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(32, 40, 47, 0.18);
}

.cardet-booking-wrapper .cardet-summary-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 31px;
    width: 80px;
    height: 3px;
    border-radius: 0 0 5px 5px;
    background: var(--cardet-brand);
}

.cardet-booking-wrapper .cardet-summary-header {
    position: relative;
    margin-bottom: 26px;
    padding-bottom: 21px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.cardet-booking-wrapper .cardet-summary-card .cardet-section-eyebrow {
    color: var(--cardet-brand);
}

.cardet-booking-wrapper .cardet-summary-title {
    color: #ffffff;
    font-size: 1.5rem;
}

.cardet-booking-wrapper .cardet-summary-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    min-height: 174px;
    margin: 0;
    padding: 27px 20px;
    border: 1px dashed rgba(255, 255, 255, 0.17);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
    line-height: 1.55;
    text-align: center;
}

.cardet-booking-wrapper .cardet-summary-empty[hidden] {
    display: none;
}

.cardet-booking-wrapper .cardet-summary-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(8, 169, 225, 0.32);
    border-radius: 50%;
    background: rgba(8, 169, 225, 0.09);
}

.cardet-booking-wrapper .cardet-summary-empty__icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: var(--cardet-brand);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.cardet-booking-wrapper .cardet-summary-list {
    display: grid;
    gap: 0;
    margin: 0;
}

.cardet-booking-wrapper .cardet-summary-list[hidden] {
    display: none;
}

.cardet-booking-wrapper .cardet-summary-row {
    display: grid;
    grid-template-columns: minmax(82px, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.cardet-booking-wrapper .cardet-summary-row:first-child {
    padding-top: 0;
}

.cardet-booking-wrapper .cardet-summary-row:last-child {
    border-bottom: 0;
}

.cardet-booking-wrapper .cardet-summary-row dt {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    font-weight: 550;
    line-height: 1.45;
}

.cardet-booking-wrapper .cardet-summary-row dd {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
    color: #ffffff;
    font-size: 0.93rem;
    font-weight: 650;
    line-height: 1.45;
    text-align: right;
}

.cardet-booking-wrapper .cardet-summary-row--price {
    margin-top: 5px;
    padding: 17px 0 0;
    border-top: 1px solid rgba(8, 169, 225, 0.32);
}

.cardet-booking-wrapper .cardet-summary-row--price dt {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    font-weight: 650;
}

.cardet-booking-wrapper .cardet-summary-row--price dd {
    color: var(--cardet-brand);
    font-size: 1.18rem;
    font-weight: 780;
}

.cardet-booking-wrapper .cardet-form-footer {
    display: grid;
    gap: 20px;
    padding: 26px;
}

.cardet-booking-wrapper .cardet-checkbox-field {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 11px;
}

.cardet-booking-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-height: 20px;
    margin: 2px 0 0;
    padding: 0;
    border-radius: 5px;
    accent-color: var(--cardet-brand);
}

.cardet-booking-wrapper .cardet-checkbox-field label {
    color: var(--cardet-muted);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.52;
}

.cardet-booking-wrapper .cardet-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.cardet-booking-wrapper .cardet-field--submit,
.cardet-booking-wrapper .cardet-button {
    width: 100%;
}

.cardet-booking-wrapper .cardet-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 61px;
    padding: 16px 22px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cardet-brand) 0%, #0796c9 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 720;
    letter-spacing: 0.005em;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(8, 169, 225, 0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.cardet-booking-wrapper .cardet-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: transform 0.18s ease;
}

.cardet-booking-wrapper .cardet-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.035);
    box-shadow: 0 16px 28px rgba(8, 169, 225, 0.31);
}

.cardet-booking-wrapper .cardet-button:hover svg {
    transform: translateX(2px);
}

.cardet-booking-wrapper .cardet-button:disabled {
    cursor: wait;
    background: #91c7d9;
    box-shadow: none;
    transform: none;
}

.cardet-booking-wrapper .cardet-submit-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: -3px 0 0;
    color: #7b858d;
    font-size: 0.75rem;
    font-weight: 550;
    line-height: 1.4;
    text-align: center;
}

.cardet-booking-wrapper .cardet-submit-note svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--cardet-success);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.cardet-booking-wrapper .cardet-public-success {
    display: block;
    margin: 30px;
}

.cardet-booking-wrapper .cardet-success-card {
    position: relative;
    display: grid;
    gap: 25px;
    max-width: 840px;
    margin: 0 auto;
    padding: 38px;
    overflow: hidden;
    border: 1px solid var(--cardet-success-border);
    border-radius: 19px;
    background:
        radial-gradient(circle at 100% 0, rgba(8, 169, 225, 0.12), transparent 31%),
        linear-gradient(145deg, #ffffff, var(--cardet-success-soft));
    box-shadow: 0 18px 42px rgba(32, 40, 47, 0.09);
}

.cardet-booking-wrapper .cardet-success-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--cardet-success), var(--cardet-brand));
}

.cardet-booking-wrapper .cardet-success-top {
    display: flex;
    align-items: flex-start;
    gap: 17px;
}

.cardet-booking-wrapper .cardet-success-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--cardet-success);
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(23, 131, 79, 0.22);
}

.cardet-booking-wrapper .cardet-success-title {
    margin: 1px 0 7px;
    color: var(--cardet-ink);
    font-size: 1.5rem;
    font-weight: 750;
    letter-spacing: -0.022em;
    line-height: 1.25;
}

.cardet-booking-wrapper .cardet-success-lead {
    margin: 0;
    color: var(--cardet-muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.cardet-booking-wrapper .cardet-required-fields-note {
    margin: 16px 0 0;
    color: var(--cardet-muted);
    font-size: 0.82rem;
}

.cardet-booking-wrapper .cardet-success-contact {
    margin: 18px 0 0;
    padding: 14px 16px;
    border: 1px solid #dce8e2;
    border-radius: 10px;
    color: var(--cardet-ink-soft);
    background: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    white-space: pre-line;
}

.cardet-booking-wrapper .cardet-success-summary {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 22px 24px;
    border: 1px solid #dce4e2;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
}

.cardet-booking-wrapper .cardet-success-summary .cardet-summary-row {
    border-bottom-color: #edf0f0;
}

.cardet-booking-wrapper .cardet-success-summary .cardet-summary-row dt {
    color: var(--cardet-muted);
}

.cardet-booking-wrapper .cardet-success-summary .cardet-summary-row dd {
    color: var(--cardet-ink);
}

.cardet-booking-wrapper .cardet-success-summary .cardet-summary-row--success-price dt,
.cardet-booking-wrapper .cardet-success-summary .cardet-summary-row--success-price dd {
    color: var(--cardet-success);
    font-weight: 750;
}

@media (max-width: 1120px) {
    .cardet-booking-wrapper {
        width: calc(100vw - 24px);
        padding: 0;
    }

    .cardet-booking-wrapper .cardet-booking-header {
        padding: 38px 34px;
    }

    .cardet-booking-wrapper .cardet-booking-header__badge {
        display: none;
    }

    .cardet-booking-wrapper .cardet-form-layout {
        grid-template-columns: 1fr;
    }

    .cardet-booking-wrapper .cardet-sidebar-sticky {
        position: static;
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
        align-items: start;
    }

    .cardet-booking-wrapper .cardet-service-options {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .cardet-booking-wrapper .cardet-booking-header {
        min-height: 190px;
        padding: 34px 26px;
    }

    .cardet-booking-wrapper .cardet-public-form {
        padding: 22px;
    }

    .cardet-booking-wrapper .cardet-form-grid,
    .cardet-booking-wrapper .cardet-sidebar-sticky {
        grid-template-columns: 1fr;
    }

    .cardet-booking-wrapper .cardet-service-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cardet-booking-wrapper .cardet-summary-row,
    .cardet-booking-wrapper .cardet-success-summary .cardet-summary-row {
        grid-template-columns: minmax(78px, 0.7fr) minmax(0, 1.3fr);
    }

    .cardet-booking-wrapper .cardet-public-success {
        margin: 22px;
    }

    .cardet-booking-wrapper .cardet-success-card {
        padding: 30px;
    }
}

@media (max-width: 520px) {
    .cardet-booking-wrapper {
        width: calc(100vw - 16px);
        margin: 22px 0;
        padding: 0;
    }

    .cardet-booking-wrapper .cardet-booking-card {
        border-radius: 18px;
    }

    .cardet-booking-wrapper .cardet-booking-header {
        min-height: 178px;
        padding: 31px 20px;
        border-radius: 17px 17px 0 0;
    }

    .cardet-booking-wrapper .cardet-booking-kicker {
        font-size: 0.7rem;
    }

    .cardet-booking-wrapper .cardet-booking-title {
        font-size: 2rem;
    }

    .cardet-booking-wrapper .cardet-booking-subtitle {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .cardet-booking-wrapper .cardet-public-message {
        margin: 18px 14px 0;
    }

    .cardet-booking-wrapper .cardet-public-form {
        padding: 14px;
    }

    .cardet-booking-wrapper .cardet-form-layout,
    .cardet-booking-wrapper .cardet-form-main {
        gap: 16px;
    }

    .cardet-booking-wrapper .cardet-form-section {
        padding: 20px 17px;
        border-radius: 14px;
    }

    .cardet-booking-wrapper .cardet-section-heading-wrap {
        gap: 11px;
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .cardet-booking-wrapper .cardet-section-number {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        border-radius: 11px;
    }

    .cardet-booking-wrapper .cardet-section-title {
        font-size: 1.12rem;
    }

    .cardet-booking-wrapper .cardet-form-grid {
        gap: 17px;
    }

    .cardet-booking-wrapper .cardet-choice-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .cardet-booking-wrapper .cardet-choice-hint {
        text-align: left;
    }

    .cardet-booking-wrapper .cardet-vehicle-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cardet-booking-wrapper .cardet-service-options {
        grid-template-columns: 1fr;
    }

    .cardet-booking-wrapper .cardet-addon-options {
        grid-template-columns: 1fr;
    }

    .cardet-booking-wrapper .cardet-service-option {
        min-height: 250px;
    }

    .cardet-booking-wrapper .cardet-summary-card {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .cardet-booking-wrapper .cardet-form-footer {
        padding: 19px 17px;
        border-radius: 14px;
    }

    .cardet-booking-wrapper .cardet-summary-row,
    .cardet-booking-wrapper .cardet-success-summary .cardet-summary-row {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .cardet-booking-wrapper .cardet-summary-row dd {
        text-align: left;
    }

    .cardet-booking-wrapper .cardet-public-success {
        margin: 14px;
    }

    .cardet-booking-wrapper .cardet-success-card {
        gap: 21px;
        padding: 24px 18px;
        border-radius: 15px;
    }

    .cardet-booking-wrapper .cardet-success-top {
        flex-direction: column;
    }

    .cardet-booking-wrapper .cardet-success-summary {
        padding: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cardet-booking-wrapper *,
    .cardet-booking-wrapper *::before,
    .cardet-booking-wrapper *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

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

/* Premium automotive configurator UI – v1.4.0. */
.cardet-booking-wrapper {
    --cardet-dark: #07131b;
    --cardet-dark-soft: #152630;
    --cardet-lime: #83d400;
    width: calc(100vw - 28px);
    max-width: 1540px;
    margin: 34px 0 48px;
    padding: 0;
}

.cardet-booking-wrapper .cardet-booking-card {
    overflow: visible;
    border-color: #cfd9df;
    border-radius: 20px;
    background: #eef3f6;
    box-shadow: 0 28px 75px rgba(18, 33, 43, .16);
}

.cardet-booking-wrapper .cardet-booking-header {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    align-items: center;
    gap: 28px;
    min-height: 172px;
    padding: 27px 42px;
    border-radius: 19px 19px 0 0;
    background:
        radial-gradient(circle at 82% 15%, rgba(8, 169, 225, .18) 0 2px, transparent 3px),
        radial-gradient(circle at 76% 30%, rgba(255, 255, 255, .16) 0 3px, transparent 4px),
        radial-gradient(circle at 94% 20%, transparent 0 90px, rgba(8, 169, 225, .12) 91px 92px, transparent 93px 130px, rgba(255, 255, 255, .07) 131px 132px, transparent 133px),
        linear-gradient(112deg, #06121a 0%, #091720 58%, #123340 100%);
}

.cardet-booking-wrapper .cardet-booking-header::before {
    top: auto;
    right: -40px;
    bottom: -170px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    background: transparent;
    opacity: 1;
    transform: none;
}

.cardet-booking-wrapper .cardet-booking-header::after {
    top: -40px;
    right: 100px;
    width: 1px;
    height: 260px;
    background: linear-gradient(transparent, rgba(8, 169, 225, .35), transparent);
    opacity: .65;
    transform: rotate(38deg);
}

.cardet-booking-wrapper .cardet-brand-lockup {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    align-content: center;
    min-width: 0;
    padding-right: 22px;
    border-right: 1px solid rgba(255, 255, 255, .26);
    color: #fff;
}

.cardet-booking-wrapper .cardet-brand-lockup img {
    display: block;
    width: 184px;
    max-width: 100%;
    height: auto;
}

.cardet-booking-wrapper .cardet-brand-car {
    width: 128px;
    height: 41px;
    margin-bottom: -7px;
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.cardet-booking-wrapper .cardet-brand-car__accent {
    stroke: var(--cardet-brand);
    stroke-width: 2.5;
}

.cardet-booking-wrapper .cardet-brand-lockup strong {
    color: #fff;
    font-size: 1.38rem;
    font-style: italic;
    font-weight: 850;
    letter-spacing: -.04em;
    line-height: 1;
}

.cardet-booking-wrapper .cardet-brand-lockup strong span {
    color: var(--cardet-brand);
}

.cardet-booking-wrapper .cardet-brand-lockup small {
    margin-top: 5px;
    color: #fff;
    font-size: .67rem;
    font-style: italic;
    font-weight: 750;
    letter-spacing: .26em;
}

.cardet-booking-wrapper .cardet-booking-header__content {
    max-width: 790px;
}

.cardet-booking-wrapper .cardet-booking-kicker {
    margin-bottom: 8px;
    color: var(--cardet-brand);
    font-size: .69rem;
    letter-spacing: .15em;
}

.cardet-booking-wrapper .cardet-booking-kicker__dot {
    display: none;
}

.cardet-booking-wrapper .cardet-booking-title {
    max-width: none;
    margin: 0 0 8px;
    font-size: clamp(2rem, 2.7vw, 2.5rem);
    font-weight: 780;
    letter-spacing: -.035em;
    line-height: 1.07;
}

.cardet-booking-wrapper .cardet-booking-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: .94rem;
}

.cardet-booking-wrapper .cardet-booking-header__badge {
    min-width: 210px;
    padding: 12px 18px;
    border-color: rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .055);
    backdrop-filter: blur(8px);
}

.cardet-booking-wrapper .cardet-booking-progress {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(160px, 1fr) 32px minmax(160px, 1fr) 32px minmax(160px, 1fr) 32px minmax(170px, 1fr) minmax(350px, .82fr);
    align-items: stretch;
    min-height: 80px;
    padding-left: 48px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    background: linear-gradient(100deg, #12242e, #1d303a 70%, #10212b);
    color: #fff;
}

.cardet-booking-wrapper .cardet-booking-progress::after {
    content: "";
    grid-column: 8;
    grid-row: 1;
    background: rgba(0, 0, 0, .12);
}

.cardet-booking-wrapper .cardet-progress-step {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    padding: 14px 8px;
    color: rgba(255, 255, 255, .58);
    transition: color .2s ease;
}

.cardet-booking-wrapper .cardet-progress-step::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--cardet-brand);
    content: "";
    opacity: 0;
}

.cardet-booking-wrapper .cardet-progress-step.is-active,
.cardet-booking-wrapper .cardet-progress-step.is-complete {
    color: #fff;
}

.cardet-booking-wrapper .cardet-progress-step.is-active::after {
    opacity: 1;
}

.cardet-booking-wrapper .cardet-progress-number,
.cardet-booking-wrapper .cardet-progress-icon {
    display: inline-grid;
    flex: 0 0 42px;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: .85rem;
    font-weight: 780;
}

.cardet-booking-wrapper .cardet-progress-icon {
    display: none;
}

.cardet-booking-wrapper .cardet-progress-step.is-active .cardet-progress-number {
    background: linear-gradient(145deg, #18b8ec, #078dbd);
    box-shadow: 0 7px 20px rgba(8, 169, 225, .35);
}

.cardet-booking-wrapper .cardet-progress-step.is-complete .cardet-progress-number {
    color: #fff;
    background: #247a98;
}

.cardet-booking-wrapper .cardet-progress-step strong,
.cardet-booking-wrapper .cardet-progress-step small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cardet-booking-wrapper .cardet-progress-step strong {
    margin-bottom: 3px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.cardet-booking-wrapper .cardet-progress-step small {
    color: rgba(255, 255, 255, .65);
    font-size: .7rem;
}

.cardet-booking-wrapper .cardet-progress-arrow {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .78);
    font-size: 2rem;
    font-weight: 200;
}

.cardet-booking-wrapper .cardet-public-form {
    padding: 0;
}

.cardet-booking-wrapper .cardet-form-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 450px);
    gap: 0;
}

.cardet-booking-wrapper .cardet-form-main {
    gap: 0;
    padding: 10px 26px 34px 48px;
    background: #fff;
}

.cardet-booking-wrapper .cardet-form-section {
    padding: 24px 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.cardet-booking-wrapper .cardet-form-section--appointment > .cardet-section-heading-wrap {
    display: none;
}

.cardet-booking-wrapper .cardet-choice-block + .cardet-choice-block {
    margin-top: 16px;
    padding-top: 16px;
    border-top-color: #e5ebef;
}

.cardet-booking-wrapper .cardet-choice-block--service,
.cardet-booking-wrapper .cardet-choice-block--addons,
.cardet-booking-wrapper .cardet-choice-block--date,
.cardet-booking-wrapper .cardet-form-section--contact,
.cardet-booking-wrapper .cardet-time-stage,
.cardet-booking-wrapper .cardet-time-options,
.cardet-booking-wrapper .cardet-summary-card {
    scroll-margin-top: 96px;
}

.cardet-booking-wrapper .cardet-choice-heading {
    align-items: center;
    margin-bottom: 15px;
}

.cardet-booking-wrapper .cardet-choice-heading__main {
    display: flex;
    align-items: center;
    gap: 13px;
}

.cardet-booking-wrapper .cardet-choice-number {
    display: inline-grid;
    flex: 0 0 34px;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 7px;
    color: #fff;
    background: linear-gradient(145deg, #16b4e8, #078fbd);
    font-size: .72rem;
    font-weight: 800;
    box-shadow: 0 5px 12px rgba(8, 169, 225, .18);
}

.cardet-booking-wrapper .cardet-choice-number--plus {
    font-size: 1.05rem;
}

.cardet-booking-wrapper .cardet-choice-title {
    font-size: 1.05rem;
    font-weight: 760;
}

.cardet-booking-wrapper .cardet-choice-description {
    margin: 2px 0 0;
    color: #7a8992;
    font-size: .72rem;
    line-height: 1.4;
}

.cardet-booking-wrapper .cardet-vehicle-options {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.cardet-booking-wrapper .cardet-vehicle-option {
    min-height: 165px;
    gap: 3px;
    padding: 12px 8px 11px;
    border-radius: 9px;
    box-shadow: 0 3px 10px rgba(32, 40, 47, .035);
}

.cardet-booking-wrapper .cardet-vehicle-icon {
    height: 92px;
    margin: -3px 0 0;
}

.cardet-booking-wrapper .cardet-vehicle-icon img {
    max-width: 180px;
    height: 92px;
}

.cardet-booking-wrapper .cardet-vehicle-name {
    font-size: .78rem;
}

.cardet-booking-wrapper .cardet-vehicle-example {
    display: block;
    max-width: 100%;
    margin-top: 2px;
    overflow: hidden;
    color: #8a969e;
    font-size: .58rem;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cardet-booking-wrapper .cardet-service-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.cardet-booking-wrapper .cardet-service-option {
    min-height: 360px;
    padding: 0;
    border-radius: 17px;
    text-align: left;
}

.cardet-booking-wrapper .cardet-service-option__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-height: 82px;
    padding: 27px 25px 5px;
    text-align: center;
}

.cardet-booking-wrapper .cardet-service-option__icon {
    display: inline-grid;
    flex: 0 0 34px;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #078fbd;
    background: #e8f8fd;
}

.cardet-booking-wrapper .cardet-service-option__icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.cardet-booking-wrapper .cardet-service-option__title {
    color: var(--cardet-brand-dark);
    font-size: 1.17rem;
    font-weight: 760;
    letter-spacing: -.015em;
    line-height: 1.28;
    text-transform: none;
}

.cardet-booking-wrapper .cardet-service-option__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    min-height: 64px;
    margin: 0;
    padding: 2px 22px 10px;
    color: var(--cardet-ink);
    line-height: 1;
}

.cardet-booking-wrapper .cardet-service-option__price strong {
    font-size: clamp(2.55rem, 5vw, 3.2rem);
    font-weight: 760;
    letter-spacing: -.045em;
}

.cardet-booking-wrapper .cardet-service-option__price sup {
    margin-top: 5px;
    font-size: 1.08rem;
    font-weight: 650;
}

.cardet-booking-wrapper .cardet-service-option__meta {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 52px;
    margin: 0 24px;
    padding: 13px 9px;
    border-top: 1px solid #e8ecef;
    border-bottom: 1px solid #e8ecef;
    color: #66737d;
    font-size: .87rem;
    font-weight: 560;
    line-height: 1.3;
}

.cardet-booking-wrapper .cardet-service-option__meta svg {
    width: 18px;
    height: 18px;
}

.cardet-booking-wrapper .cardet-service-option__features {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 22px 25px 16px;
    border-top: 0;
}

.cardet-booking-wrapper .cardet-service-option__features li {
    padding-left: 22px;
    color: #55636d;
    font-size: .83rem;
    line-height: 1.48;
}

.cardet-booking-wrapper .cardet-service-option__features li::before {
    top: 0;
    width: auto;
    height: auto;
    color: #77cc00;
    background: transparent;
    content: "✓";
    font-size: .9rem;
    font-weight: 850;
}

.cardet-booking-wrapper .cardet-service-option__features li.is-excluded::before {
    color: #e00016;
    content: "−";
    font-size: 1.05rem;
}

.cardet-booking-wrapper .cardet-service-option__features li.is-excluded {
    color: #5e6870;
}

.cardet-booking-wrapper .cardet-service-option__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: calc(100% - 50px);
    min-height: 43px;
    margin: auto 25px 23px;
    padding: 10px 15px;
    border: 1px solid var(--cardet-brand);
    border-radius: 999px;
    color: var(--cardet-brand-dark);
    font-size: .8rem;
    font-weight: 700;
    line-height: 1;
}

.cardet-booking-wrapper .cardet-package-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 0;
    padding: 8px 11px;
    border: 1px solid #e5ebef;
    border-radius: 7px;
    color: #73818a;
    background: #f7f9fa;
    font-size: .63rem;
}

.cardet-booking-wrapper .cardet-package-note > span {
    display: inline-grid;
    flex: 0 0 17px;
    place-items: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    color: #fff;
    background: var(--cardet-brand);
    font-size: .65rem;
    font-style: normal;
    font-weight: 800;
}

.cardet-booking-wrapper .cardet-addon-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.cardet-booking-wrapper .cardet-addon-option {
    min-height: 112px;
    padding: 13px;
    border-radius: 9px;
}

.cardet-booking-wrapper .cardet-date-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #078fbd;
    font-size: .71rem;
    font-weight: 700;
}

.cardet-booking-wrapper .cardet-date-navigation button {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #078fbd;
    background: transparent;
    cursor: pointer;
    font-size: 1.35rem;
}

.cardet-booking-wrapper .cardet-date-navigation button:hover:not(:disabled) {
    background: #eaf8fd;
}

.cardet-booking-wrapper .cardet-date-navigation button:disabled {
    color: #b8c1c7;
    cursor: default;
}

.cardet-booking-wrapper .cardet-calendar-shell {
    overflow: hidden;
    border: 1px solid #dce4e8;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 5px 18px rgba(31, 44, 52, .045);
}

.cardet-booking-wrapper .cardet-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    padding: 11px 10px 8px;
    border-bottom: 1px solid #edf1f3;
    color: #73818a;
    background: #f8fafb;
    font-size: .62rem;
    font-weight: 760;
    letter-spacing: .04em;
    text-align: center;
    text-transform: uppercase;
}

.cardet-booking-wrapper .cardet-calendar-weekdays span:last-child {
    color: #aeb7bd;
}

.cardet-booking-wrapper .cardet-date-options {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
    padding: 9px;
}

.cardet-booking-wrapper .cardet-date-option {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 2px;
    min-width: 0;
    min-height: 53px;
    padding: 6px 3px;
    border: 1px solid transparent;
    border-radius: 9px;
    color: #273741;
    background: transparent;
    cursor: pointer;
    box-shadow: none;
    font: inherit;
    text-decoration: none;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.cardet-booking-wrapper .cardet-date-option:hover:not(:disabled) {
    border-color: #b8e6f5 !important;
    color: #16313f !important;
    background: #eefaff !important;
    text-decoration: none !important;
}

.cardet-booking-wrapper .cardet-date-option.is-selected,
.cardet-booking-wrapper .cardet-date-option.is-selected:hover {
    border-color: var(--cardet-brand) !important;
    color: #ffffff !important;
    background: linear-gradient(145deg, #14b4e8, #078dbd) !important;
    box-shadow: 0 0 0 2px rgba(8, 169, 225, .1), 0 8px 16px rgba(8, 169, 225, .1);
}

.cardet-booking-wrapper .cardet-date-option.is-outside-month:not(:disabled):not(.is-selected) {
    border-color: #e2edf2;
    color: #24424f;
    background: #f3fafd;
}

.cardet-booking-wrapper .cardet-date-option.is-outside-month:not(:disabled):not(.is-selected) small {
    color: #078fbd;
}

.cardet-booking-wrapper .cardet-date-option.is-today:not(.is-selected) {
    border-color: #96dcef;
    color: #087fa9;
    background: #f3fbfe;
}

.cardet-booking-wrapper .cardet-date-option:disabled {
    color: #b7c0c6 !important;
    background: transparent !important;
    opacity: .52;
    cursor: not-allowed;
}

.cardet-booking-wrapper .cardet-date-option.is-sunday:disabled {
    border-color: #eef1f3 !important;
    color: #b5bdc2 !important;
    background: #f3f5f6 !important;
    opacity: .78;
}

.cardet-booking-wrapper .cardet-date-option strong {
    font-size: .9rem;
    font-weight: 720;
    line-height: 1.05;
}

.cardet-booking-wrapper .cardet-date-option small {
    min-height: 10px;
    color: currentColor;
    font-size: .48rem;
    font-weight: 650;
    line-height: 1;
}

.cardet-booking-wrapper .cardet-time-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 13px;
}

.cardet-booking-wrapper .cardet-time-stage {
    margin-top: 17px;
    padding-top: 17px;
    border-top: 1px solid #e4eaed;
}

.cardet-booking-wrapper .cardet-time-stage__heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cardet-booking-wrapper .cardet-time-stage__heading h5,
.cardet-booking-wrapper .cardet-time-stage__heading p {
    margin: 0;
}

.cardet-booking-wrapper .cardet-time-stage__heading h5 {
    color: var(--cardet-ink);
    font-size: .92rem;
    font-weight: 760;
    line-height: 1.3;
}

.cardet-booking-wrapper .cardet-time-stage__heading p {
    margin-top: 2px;
    color: #7a8992;
    font-size: .66rem;
    line-height: 1.4;
}

.cardet-booking-wrapper .cardet-choice-number--time svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.cardet-booking-wrapper .cardet-time-option {
    min-width: 76px;
    min-height: 35px;
    padding: 7px 12px;
    border: 1px solid #dce4e8;
    border-radius: 7px;
    color: #40515b;
    background: #fff;
    cursor: pointer;
    font-size: .68rem;
    font-weight: 650;
    transition: all .18s ease;
}

.cardet-booking-wrapper .cardet-time-option:hover,
.cardet-booking-wrapper .cardet-time-option.is-selected {
    border-color: var(--cardet-brand);
    color: #fff;
    background: linear-gradient(145deg, #14b4e8, #078dbd);
    box-shadow: 0 6px 15px rgba(8, 169, 225, .22);
}

.cardet-booking-wrapper .cardet-time-state {
    width: 100%;
    margin: 0;
    padding: 10px 12px;
    border: 1px dashed #d5dfe4;
    border-radius: 7px;
    color: #87939a;
    background: #f9fbfc;
    font-size: .67rem;
    text-align: center;
}

.cardet-booking-wrapper .cardet-time-state--loading {
    color: #078fbd;
    border-color: #b7e5f4;
    background: #eefaff;
}

.cardet-booking-wrapper .cardet-time-state--error {
    color: var(--cardet-error);
    border-color: var(--cardet-error-border);
    background: var(--cardet-error-soft);
}

.cardet-booking-wrapper .cardet-form-section--contact {
    margin-top: 0;
    padding-top: 23px;
    border-top: 1px solid #e5ebef;
}

.cardet-booking-wrapper .cardet-form-section--contact .cardet-section-heading-wrap {
    gap: 13px;
    margin-bottom: 20px;
    padding-bottom: 16px;
}

.cardet-booking-wrapper .cardet-form-section--contact .cardet-section-number {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 7px;
    color: #fff;
    background: linear-gradient(145deg, #16b4e8, #078fbd);
    font-size: .72rem;
}

.cardet-booking-wrapper .cardet-contact-actions {
    justify-content: flex-end;
}

.cardet-booking-wrapper .cardet-form-grid {
    gap: 15px 20px;
}

.cardet-booking-wrapper .cardet-field {
    gap: 6px;
}

.cardet-booking-wrapper .cardet-field-hint {
    color: #758796;
    font-size: .72rem;
    line-height: 1.45;
}

.cardet-booking-wrapper label {
    font-size: .78rem;
}

.cardet-booking-wrapper input,
.cardet-booking-wrapper select,
.cardet-booking-wrapper textarea {
    min-height: 52px;
    padding: 13px 15px;
    border-color: #cfd9df;
    border-radius: 8px;
    font-size: .84rem;
}

.cardet-booking-wrapper textarea {
    min-height: 86px;
}

.cardet-booking-wrapper .cardet-form-sidebar {
    position: relative;
    z-index: 4;
    align-self: stretch;
    min-height: 100%;
    padding: 0 22px 34px;
    background: #eef3f6;
}

.cardet-booking-wrapper .cardet-sidebar-sticky {
    position: sticky;
    top: 18px;
    max-height: calc(100vh - 36px);
    margin-top: 18px;
}

.cardet-booking-wrapper .cardet-summary-card {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 36px);
    padding: 27px 27px 22px;
    border-color: #34505e;
    border-radius: 15px;
    background:
        radial-gradient(circle at 100% 0, rgba(8, 169, 225, .16), transparent 35%),
        linear-gradient(145deg, #10232d, #182c36 70%, #122630);
    box-shadow: 0 20px 42px rgba(15, 31, 40, .22);
    transition: box-shadow .24s ease, transform .24s ease;
}

.cardet-booking-wrapper .cardet-summary-card.is-review-ready {
    transform: translateY(-2px);
    box-shadow: 0 0 0 3px rgba(8, 169, 225, .3), 0 24px 50px rgba(15, 31, 40, .3);
}

.cardet-booking-wrapper .cardet-summary-content[hidden] {
    display: none;
}

.cardet-booking-wrapper .cardet-summary-content {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 4px;
    scrollbar-color: rgba(8, 169, 225, .45) transparent;
    scrollbar-width: thin;
}

.cardet-booking-wrapper .cardet-summary-content::-webkit-scrollbar {
    width: 5px;
}

.cardet-booking-wrapper .cardet-summary-content::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(8, 169, 225, .45);
}

.cardet-booking-wrapper .cardet-summary-card--compact {
    padding-top: 22px;
}

.cardet-booking-wrapper .cardet-summary-card--compact .cardet-form-footer {
    margin-top: 0;
}

.cardet-booking-wrapper .cardet-summary-card::before {
    left: 36px;
    width: 98px;
}

.cardet-booking-wrapper .cardet-summary-header {
    margin-bottom: 20px;
    padding-bottom: 17px;
}

.cardet-booking-wrapper .cardet-summary-card .cardet-section-eyebrow {
    display: none;
}

.cardet-booking-wrapper .cardet-summary-title {
    font-size: 1.36rem;
}

.cardet-booking-wrapper .cardet-summary-vehicle-preview {
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.cardet-booking-wrapper .cardet-summary-vehicle-preview[hidden] {
    display: none;
}

.cardet-booking-wrapper .cardet-summary-vehicle-preview > span {
    display: grid;
    place-items: center;
    height: 83px;
    padding: 7px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .07);
}

.cardet-booking-wrapper .cardet-summary-vehicle-preview img {
    width: 100%;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 7px 7px rgba(0, 0, 0, .28));
}

.cardet-booking-wrapper .cardet-summary-vehicle-preview small,
.cardet-booking-wrapper .cardet-summary-vehicle-preview strong,
.cardet-booking-wrapper .cardet-summary-vehicle-preview em {
    display: block;
}

.cardet-booking-wrapper .cardet-summary-vehicle-preview small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .58);
    font-size: .67rem;
}

.cardet-booking-wrapper .cardet-summary-vehicle-preview strong {
    color: #fff;
    font-size: 1rem;
}

.cardet-booking-wrapper .cardet-summary-vehicle-preview em {
    margin-top: 4px;
    overflow: hidden;
    color: rgba(255, 255, 255, .62);
    font-size: .61rem;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cardet-booking-wrapper .cardet-summary-row--vehicle-name {
    display: none;
}

.cardet-booking-wrapper .cardet-summary-row {
    padding: 11px 0;
}

.cardet-booking-wrapper .cardet-summary-row dt,
.cardet-booking-wrapper .cardet-summary-row dd {
    font-size: .76rem;
}

.cardet-booking-wrapper .cardet-summary-row--price {
    margin-top: 5px;
    padding-top: 16px;
}

.cardet-booking-wrapper .cardet-summary-row--price dt {
    color: #fff;
    font-size: .85rem;
}

.cardet-booking-wrapper .cardet-summary-row--price dd {
    color: #fff;
    font-size: 1.65rem;
}

.cardet-booking-wrapper .cardet-summary-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
    padding: 15px 4px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
}

.cardet-booking-wrapper .cardet-summary-trust > span {
    display: grid;
    justify-items: center;
    gap: 6px;
    min-width: 0;
    padding: 0 7px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .82);
    font-size: .58rem;
    line-height: 1.35;
    text-align: center;
}

.cardet-booking-wrapper .cardet-summary-trust > span:last-child {
    border-right: 0;
}

.cardet-booking-wrapper .cardet-summary-trust svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: var(--cardet-brand);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.cardet-booking-wrapper .cardet-form-footer {
    gap: 14px;
    margin-top: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.cardet-booking-wrapper .cardet-checkbox-field {
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .075);
}

.cardet-booking-wrapper .cardet-checkbox-field label {
    color: rgba(255, 255, 255, .83);
    font-size: .68rem;
}

.cardet-booking-wrapper .cardet-checkbox-field a {
    color: var(--cardet-brand);
}

.cardet-booking-wrapper .cardet-button {
    min-height: 56px;
    border-radius: 8px;
    font-size: .88rem;
}

.cardet-booking-wrapper .cardet-submit-note {
    color: rgba(255, 255, 255, .7);
    font-size: .65rem;
}

@media (max-width: 1250px) {
    .cardet-booking-wrapper .cardet-booking-progress {
        grid-template-columns: repeat(7, auto);
        padding: 0 26px;
    }

    .cardet-booking-wrapper .cardet-booking-progress::after {
        display: none;
    }

    .cardet-booking-wrapper .cardet-form-layout {
        grid-template-columns: minmax(0, 1fr) 390px;
    }

    .cardet-booking-wrapper .cardet-form-main {
        padding-left: 28px;
    }

    .cardet-booking-wrapper .cardet-service-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1000px) {
    .cardet-booking-wrapper .cardet-booking-header {
        grid-template-columns: 135px minmax(0, 1fr);
        padding: 27px 30px;
    }

    .cardet-booking-wrapper .cardet-booking-header__badge {
        display: none;
    }

    .cardet-booking-wrapper .cardet-booking-progress {
        grid-template-columns: repeat(7, auto);
        overflow-x: auto;
    }

    .cardet-booking-wrapper .cardet-progress-step {
        min-width: 155px;
    }

    .cardet-booking-wrapper .cardet-form-layout {
        grid-template-columns: 1fr;
    }

    .cardet-booking-wrapper .cardet-form-main {
        padding: 12px 28px 28px;
    }

    .cardet-booking-wrapper .cardet-form-sidebar {
        padding: 25px 28px 34px;
    }

    .cardet-booking-wrapper .cardet-sidebar-sticky {
        position: static;
        grid-template-columns: 1fr;
        max-width: 620px;
        max-height: none;
        margin: 0 auto;
    }

    .cardet-booking-wrapper .cardet-summary-card {
        max-height: none;
    }

    .cardet-booking-wrapper .cardet-summary-content {
        overflow: visible;
        padding-right: 0;
    }

    .cardet-booking-wrapper .cardet-vehicle-options {
        grid-template-columns: repeat(5, minmax(120px, 1fr));
        overflow-x: auto;
        padding-bottom: 5px;
    }
}

@media (max-width: 700px) {
    .cardet-booking-wrapper {
        width: calc(100vw - 14px);
        margin: 18px 0 32px;
    }

    .cardet-booking-wrapper .cardet-booking-card {
        border-radius: 14px;
    }

    .cardet-booking-wrapper .cardet-booking-header {
        grid-template-columns: 1fr;
        min-height: 190px;
        gap: 18px;
        padding: 25px 20px;
    }

    .cardet-booking-wrapper .cardet-brand-lockup {
        display: none;
    }

    .cardet-booking-wrapper .cardet-booking-title {
        font-size: 2rem;
    }

    .cardet-booking-wrapper .cardet-booking-progress {
        min-height: 68px;
        padding: 0 12px;
    }

    .cardet-booking-wrapper .cardet-progress-step {
        min-width: 58px;
        justify-content: center;
        padding: 9px 4px;
    }

    .cardet-booking-wrapper .cardet-progress-step > span:last-child,
    .cardet-booking-wrapper .cardet-progress-arrow {
        display: none;
    }

    .cardet-booking-wrapper .cardet-progress-number {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

    .cardet-booking-wrapper .cardet-form-main,
    .cardet-booking-wrapper .cardet-form-sidebar {
        padding-right: 15px;
        padding-left: 15px;
    }

    .cardet-booking-wrapper .cardet-choice-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .cardet-booking-wrapper .cardet-date-navigation {
        align-self: flex-end;
    }

    .cardet-booking-wrapper .cardet-vehicle-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
    }

    .cardet-booking-wrapper .cardet-service-options,
    .cardet-booking-wrapper .cardet-addon-options {
        grid-template-columns: 1fr;
    }

    .cardet-booking-wrapper .cardet-addon-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cardet-booking-wrapper .cardet-addon-actions__buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .cardet-booking-wrapper .cardet-addon-actions .cardet-step-continue,
    .cardet-booking-wrapper .cardet-addon-actions .cardet-step-skip,
    .cardet-booking-wrapper .cardet-contact-actions .cardet-step-continue {
        width: 100%;
    }

    .cardet-booking-wrapper .cardet-date-options {
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 3px;
        padding: 7px;
    }

    .cardet-booking-wrapper .cardet-form-grid {
        grid-template-columns: 1fr;
    }

    .cardet-booking-wrapper .cardet-field--full {
        grid-column: auto;
    }
}

@media (max-width: 430px) {
    .cardet-booking-wrapper .cardet-vehicle-option {
        min-height: 145px;
    }

    .cardet-booking-wrapper .cardet-vehicle-icon,
    .cardet-booking-wrapper .cardet-vehicle-icon img {
        height: 78px;
    }

    .cardet-booking-wrapper .cardet-date-options {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }

    .cardet-booking-wrapper .cardet-date-option {
        min-height: 46px;
        padding: 5px 1px;
        border-radius: 7px;
    }

    .cardet-booking-wrapper .cardet-time-option {
        flex: 1 1 calc(33.333% - 8px);
        min-width: 68px;
    }

    .cardet-booking-wrapper .cardet-summary-card {
        padding: 23px 18px 20px;
    }

    .cardet-booking-wrapper .cardet-summary-vehicle-preview {
        grid-template-columns: 105px minmax(0, 1fr);
    }

    .cardet-booking-wrapper .cardet-summary-trust > span {
        padding: 0 4px;
        font-size: .52rem;
    }
}
