/* Creek Motors — Multi-step Booking Page (/book) */

.creek-book-area {
    padding: 20px 0 60px;
    background: #F6F7FB;
    min-height: 70vh;
}

/* ── Stepper ── */
.creek-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
}
.creek-step {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 2px 2px;
}
.creek-step .step-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    background: #E4E7F0;
    color: #7B8194;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.creek-step .step-label {
    font-size: 13px;
    font-weight: 600;
    color: #7B8194;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.creek-step.active .step-dot {
    background: var(--color-primary, #FF3600);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 54, 0, 0.35);
}
.creek-step.active .step-label { color: #050B20; }
.creek-step.done .step-dot {
    background: #050B20;
    color: #fff;
}
.creek-step.done .step-label { color: #050B20; }
.creek-step:hover .step-dot {
    transform: scale(1.08);
    box-shadow: 0 2px 10px rgba(5, 11, 32, 0.12);
}
.creek-step:hover .step-label { color: #050B20; }
.creek-step-line {
    width: 40px;
    height: 2px;
    background: #E4E7F0;
    margin: 0 6px;
    flex-shrink: 0;
}
.creek-step-line.done { background: #050B20; }

/* ── Panels ── */
.creek-step-panel { display: none; }
.creek-step-panel.active {
    display: block;
    animation: creekPanelIn 0.35s ease;
}
@keyframes creekPanelIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
.creek-book-heading {
    font-size: 28px;
    font-weight: 700;
    color: #050B20;
    margin-bottom: 24px;
}
.creek-book-subnote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E6F7EC;
    color: #1B7B3D;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
}

/* ── Step 1: car select grid ── */
.creek-car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.creek-car-card {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    position: relative;
}
.creek-car-card:hover {
    box-shadow: 0 10px 30px rgba(5, 11, 32, 0.08);
    transform: translateY(-3px);
}
.creek-car-card.selected {
    border-color: var(--color-primary, #FF3600);
    box-shadow: 0 10px 30px rgba(255, 54, 0, 0.12);
}
.creek-car-card .selected-badge {
    display: none;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-primary, #FF3600);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    z-index: 2;
}
.creek-car-card.selected .selected-badge { display: flex; }
.creek-car-card .car-img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.creek-car-card .car-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.creek-car-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #050B20;
    margin: 0 0 6px;
}
.creek-car-card .car-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 12px;
    color: #7B8194;
    margin-bottom: 12px;
}
.creek-car-card .car-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.creek-car-card .car-rate {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary, #FF3600);
}
.creek-car-card .car-rate span {
    font-size: 12px;
    font-weight: 500;
    color: #7B8194;
}

/* ── Rental details (dates/location) ── */
.creek-rental-details {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    margin-top: 32px;
}
.creek-rental-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: #050B20;
    margin-bottom: 20px;
}
.creek-field-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.creek-field-row-2 {
    grid-template-columns: repeat(2, 1fr);
}
.creek-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444B5E;
    margin-bottom: 8px;
}
.creek-field select,
.creek-field input,
.creek-field textarea {
    width: 100%;
    height: 52px;
    border: 1px solid #E0E4EE;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 14px;
    color: #050B20;
    background: #fff;
    transition: border-color 0.2s ease;
}
.creek-field textarea {
    height: 110px;
    padding: 14px 16px;
    resize: vertical;
}
.creek-field select:focus,
.creek-field input:focus,
.creek-field textarea:focus {
    outline: none;
    border-color: var(--color-primary, #FF3600);
}

/* ── Step 2: protection cards ── */

/* Split layout: car image left with frosted overlay, content right on large screens */
.creek-protect-layout {
    display: flex;
    gap: 0;
    align-items: stretch;
}
.creek-protect-car-side {
    flex-shrink: 0;
    width: 320px;
    position: relative;
    overflow: hidden;
    border-radius: 16px 0 0 16px;
    background: #fff;
}
.creek-protect-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}
.creek-protect-overlay {
    position: relative;
    z-index: 1;
    padding: 32px 28px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.82) 0%,
        rgba(255, 255, 255, 0.72) 30%,
        rgba(255, 255, 255, 0.55) 55%,
        rgba(255, 255, 255, 0.28) 70%,
        rgba(255, 255, 255, 0.10) 82%,
        rgba(255, 255, 255, 0) 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.creek-protect-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 50%, rgba(0,0,0,0.3) 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 50%, rgba(0,0,0,0.3) 70%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}
.creek-protect-welcome {
    font-size: 15px;
    font-weight: 600;
    color: #FF5A1F;
    margin: 0 0 8px;
    font-family: 'Outfit', sans-serif;
}
.creek-protect-headline {
    font-size: 26px;
    font-weight: 800;
    line-height: 0.95;
    color: #061B3C;
    margin: 0 0 10px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.creek-protect-headline .you {
    color: #FF5A1F;
}
.creek-protect-subhead {
    font-size: 13px;
    color: #6D7280;
    line-height: 1.5;
    margin-bottom: 22px;
    font-family: 'Inter', sans-serif;
}

/* Car info inside overlay */
.creek-protect-car-info {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 20px;
}
.creek-protect-car-img {
    width: 64px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.creek-protect-car-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.creek-protect-car-name {
    font-size: 15px;
    font-weight: 700;
    color: #050B20;
    margin-bottom: 2px;
}
.creek-protect-car-specs {
    font-size: 11px;
    color: #7B8194;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
}
.creek-protect-car-specs .creek-spec-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.creek-protect-car-specs .creek-spec-item i {
    font-size: 10px;
    color: #9AA0B0;
}

/* Trip details inside overlay */
.creek-protect-trip-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}
.creek-protect-trip-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 4px 0;
}
.creek-protect-trip-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    color: #050B20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
}
.creek-protect-trip-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
    gap: 1px;
}
.creek-protect-trip-label {
    font-size: 11px;
    font-weight: 700;
    color: #050B20;
    font-family: 'Outfit', sans-serif;
}
.creek-protect-trip-value {
    font-size: 12px;
    font-weight: 500;
    color: #061B3C;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Inter', sans-serif;
}
.creek-protect-trip-datetime {
    font-size: 11px;
    color: #6D7280;
    font-family: 'Inter', sans-serif;
}

/* Feature icons inside overlay */
.creek-protect-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.creek-protect-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px) saturate(1.2);
    -webkit-backdrop-filter: blur(8px) saturate(1.2);
    width: fit-content;
    max-width: 100%;
}
.creek-protect-feature-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #FF5A1F;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}
.creek-protect-feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.creek-protect-feature-title {
    font-size: 14px;
    font-weight: 600;
    color: #061B3C;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}
.creek-protect-feature-desc {
    font-size: 12px;
    font-weight: 400;
    color: #6D7280;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
}

.creek-protect-content-side {
    flex: 1;
    min-width: 0;
    background: #fff;
    border-radius: 0 16px 16px 0;
    padding: 24px 28px;
}
.creek-protect-content-side .creek-book-heading {
    margin-bottom: 10px;
    font-size: 24px;
}
.creek-protect-content-side .creek-book-subnote {
    margin-bottom: 14px;
}
.creek-protect-subnote {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #1B7B3D;
    font-size: 13px;
    font-weight: 600;
}
.creek-protect-subnote i {
    color: #1B7B3D;
    font-size: 14px;
}
.creek-protect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.creek-protect-card {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}
.creek-protect-card:hover {
    box-shadow: 0 10px 30px rgba(5, 11, 32, 0.08);
    transform: translateY(-3px);
}
.creek-protect-card.selected {
    border-color: var(--color-primary, #FF3600);
    box-shadow: 0 10px 30px rgba(255, 54, 0, 0.12);
}
.creek-protect-card .protect-top {
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary, #FF3600), #FF7A50);
}
.creek-protect-card .protect-body {
    padding: 16px 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.creek-protect-card .protect-badges {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
    flex-wrap: wrap;
    min-height: 24px;
}
.creek-protect-card .protect-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.protect-badge.recommended { background: #050B20; color: #fff; }
.protect-badge.discount { background: #FFF0EB; color: var(--color-primary, #FF3600); }
.creek-protect-card .protect-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #FFF0EB;
    color: var(--color-primary, #FF3600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 8px;
}
.creek-protect-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #050B20;
    margin: 0 0 2px;
}
.creek-protect-card .protect-sub {
    font-size: 12px;
    color: #7B8194;
    margin-bottom: 10px;
}
.creek-protect-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    flex-grow: 1;
}
.creek-protect-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    color: #444B5E;
    padding: 3px 0;
    line-height: 1.35;
}
.creek-protect-card ul li i.yes { color: #1B7B3D; margin-top: 2px; }
.creek-protect-card ul li i.no { color: #C0392B; margin-top: 2px; }
.creek-protect-card .protect-price {
    font-size: 18px;
    font-weight: 800;
    color: #050B20;
    margin-bottom: 10px;
}
.creek-protect-card .protect-price span {
    font-size: 13px;
    font-weight: 500;
    color: #7B8194;
}
.creek-protect-card .protect-add-btn {
    width: 100%;
    height: 38px;
    border: 1px solid #050B20;
    border-radius: 30px;
    background: #fff;
    color: #050B20;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.creek-protect-card .protect-add-btn:hover {
    border-color: var(--color-primary, #FF3600);
    color: var(--color-primary, #FF3600);
}
.creek-protect-card.selected .protect-add-btn {
    background: var(--color-primary, #FF3600);
    color: #fff;
    border-color: var(--color-primary, #FF3600);
}
.creek-protect-card.selected .protect-add-btn i {
    color: #fff;
}

/* Decline protection row */
.creek-decline-protect {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding: 12px 16px;
    border: 1px solid #E0E4EE;
    border-radius: 10px;
    background: #fff;
}
.creek-decline-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #FFF0EB;
    color: var(--color-primary, #FF3600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.creek-decline-text {
    flex: 1;
    min-width: 0;
}
.creek-decline-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}
.creek-decline-title {
    font-size: 14px;
    font-weight: 700;
    color: #050B20;
}
.creek-decline-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    background: #FDE5E1;
    color: #C0392B;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.creek-decline-desc {
    font-size: 12px;
    color: #7B8194;
    line-height: 1.4;
}
.creek-decline-protect .np-accept-btn {
    width: auto !important;
    height: 38px;
    padding: 0 22px;
    border: 1.5px solid #050B20;
    border-radius: 30px;
    background: transparent;
    color: #050B20;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
    white-space: nowrap;
}
.creek-decline-protect .np-accept-btn:hover {
    border-color: var(--color-primary, #FF3600);
    color: var(--color-primary, #FF3600);
}
.creek-decline-protect.selected {
    border-color: var(--color-primary, #FF3600);
}
.creek-decline-protect.selected .np-accept-btn {
    background: var(--color-primary, #FF3600);
    border-color: var(--color-primary, #FF3600);
    color: #fff;
}

/* Why choose protection strip */
.creek-protect-why {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    background: #F8F9FC;
    border: 1px solid #EEF0F5;
    border-radius: 10px;
    padding: 10px 18px;
    margin-top: 14px;
    font-size: 12px;
    color: #2B4C7E;
}
.creek-protect-why strong { color: #050B20; }
.creek-protect-why .why-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.creek-protect-why .why-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2B6CB0;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Step 3: extras (checkboxes + fuel packages) ── */
.creek-amenity-section {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E0E4EE;
    overflow: hidden;
}
.creek-amenity-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    border-bottom: 1px solid #EEF0F5;
    font-size: 16px;
    font-weight: 700;
    color: #050B20;
}
.creek-amenity-header i {
    color: var(--color-primary, #FF3600);
    font-size: 20px;
}
#creek-amenity-grid {
    padding: 24px;
}

/* Extras checkbox list */
.creek-extras-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.creek-extra-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1.5px solid #E0E4EE;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fff;
}
.creek-extra-item:hover {
    border-color: #C5CCE0;
    box-shadow: 0 2px 12px rgba(5, 11, 32, 0.04);
}
.creek-extra-item.checked {
    border-color: var(--color-primary, #FF3600);
    background: #FFF6F3;
}
.creek-extra-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.creek-extra-check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid #C5CCE0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.creek-extra-check i {
    font-size: 12px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.creek-extra-item.checked .creek-extra-check {
    background: var(--color-primary, #FF3600);
    border-color: var(--color-primary, #FF3600);
}
.creek-extra-item.checked .creek-extra-check i {
    opacity: 1;
}
.creek-extra-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: #FFF0EB;
    color: var(--color-primary, #FF3600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.creek-extra-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.creek-extra-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
}
.creek-extra-name {
    font-size: 15px;
    font-weight: 700;
    color: #050B20;
}
.creek-extra-desc {
    font-size: 13px;
    color: #7B8194;
    line-height: 1.4;
}
.creek-extra-max {
    color: #9BA3B5;
    font-style: italic;
}
.creek-extra-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary, #FF3600);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Fuel package section */
.creek-fuel-section {
    border-top: 1px solid #EEF0F5;
    padding-top: 24px;
}
.creek-fuel-header {
    font-size: 16px;
    font-weight: 700;
    color: #050B20;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}
.creek-fuel-header i {
    color: var(--color-primary, #FF3600);
    font-size: 20px;
}
.creek-fuel-optional {
    font-size: 13px;
    font-weight: 400;
    color: #9BA3B5;
}
.creek-fuel-note {
    font-size: 13px;
    color: #7B8194;
    margin-bottom: 16px;
    line-height: 1.4;
}
.creek-fuel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.creek-fuel-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1.5px solid #E0E4EE;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fff;
}
.creek-fuel-card:hover {
    border-color: #C5CCE0;
    box-shadow: 0 2px 12px rgba(5, 11, 32, 0.04);
}
.creek-fuel-card.selected {
    border-color: var(--color-primary, #FF3600);
    background: #FFF6F3;
    box-shadow: 0 4px 16px rgba(255, 54, 0, 0.08);
}
.creek-fuel-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.creek-fuel-radio {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #C5CCE0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    position: relative;
}
.creek-fuel-card.selected .creek-fuel-radio {
    border-color: var(--color-primary, #FF3600);
}
.creek-fuel-card.selected .creek-fuel-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary, #FF3600);
}
.creek-fuel-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-grow: 1;
}
.creek-fuel-name {
    font-size: 15px;
    font-weight: 700;
    color: #050B20;
}
.creek-fuel-desc {
    font-size: 12.5px;
    color: #7B8194;
    line-height: 1.4;
}
.creek-fuel-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary, #FF3600);
    white-space: nowrap;
    flex-shrink: 0;
}
.creek-fuel-none .creek-fuel-price {
    color: #9BA3B5;
}

/* ── Step 4: driver details ── */

/* Two-column layout: vehicle/trip/price sidebar (left) + driver form (right) */
.creek-driver-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 24px;
    align-items: stretch;
}
.creek-driver-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
    align-self: start;
}
.creek-driver-main { min-width: 0; }

/* Vehicle + trip + price summary card */
.creek-driver-summary-card {
    background: #fff;
    border: 1px solid #EEF1F6;
    border-radius: 16px;
    padding: 16px;
}
.creek-driver-car-img {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.creek-driver-car-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.creek-driver-car-name {
    font-size: 15px;
    font-weight: 700;
    color: #050B20;
    margin-bottom: 6px;
}
.creek-driver-car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.creek-driver-car-specs .spec-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #F3F5FA;
    color: #444B5E;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 20px;
}
.creek-driver-car-specs .spec-chip i {
    font-size: 10px;
    color: #7B8194;
}

/* Trip section */
.creek-driver-trip-section {
    border-top: 1px solid #EEF1F6;
    padding-top: 12px;
    margin-bottom: 12px;
}
.creek-driver-trip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    color: #050B20;
    margin-bottom: 8px;
}
.creek-driver-trip-edit {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary, #FF3600);
    text-decoration: none;
}
.creek-driver-trip-edit:hover { text-decoration: underline; }
.creek-driver-trip-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    padding-bottom: 8px;
}
.creek-driver-trip-item:last-child { padding-bottom: 0; }
.creek-driver-trip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #C5CCE0;
    margin-top: 4px;
    flex-shrink: 0;
    position: relative;
}
.creek-driver-trip-item:not(:last-child) .creek-driver-trip-dot::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 3px;
    width: 1px;
    height: calc(100% + 8px);
    border-left: 1px dashed #D5D9E4;
}
.creek-driver-trip-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 1px;
}
.creek-driver-trip-label {
    font-size: 10px;
    font-weight: 700;
    color: #050B20;
}
.creek-driver-trip-value {
    font-size: 11.5px;
    font-weight: 500;
    color: #444B5E;
}
.creek-driver-trip-datetime {
    font-size: 10.5px;
    color: #9AA0B0;
}

/* Price breakdown */
.creek-driver-price-breakdown {
    border-top: 1px solid #EEF1F6;
    padding-top: 10px;
}
.sidebar-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #7B8194;
    padding: 3px 0;
}
.sidebar-price-row span:last-child {
    color: #050B20;
    font-weight: 600;
}
.sidebar-price-row.sidebar-price-total {
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid #EEF1F6;
    font-size: 14px;
    font-weight: 700;
    color: #050B20;
}
.sidebar-price-row.sidebar-price-total span:last-child {
    color: var(--color-primary, #FF3600);
    font-size: 16px;
}

/* Free cancellation note */
.creek-driver-cancel-note {
    display: none;
    align-items: flex-start;
    gap: 6px;
    background: #E6F7EC;
    color: #1B7B3D;
    font-size: 11px;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 8px;
    margin-top: 10px;
    line-height: 1.3;
}
.creek-driver-cancel-note i { margin-top: 1px; flex-shrink: 0; }

/* Safe & secure box — top-right badge in driver main */
.creek-driver-secure-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 12px;
    padding: 10px 14px;
    float: right;
    margin-bottom: 12px;
}
.creek-driver-secure-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #DCFCE7;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.creek-driver-secure-title {
    font-size: 13px;
    font-weight: 700;
    color: #065F46;
    margin-bottom: 1px;
}
.creek-driver-secure-desc {
    font-size: 11px;
    color: #047857;
    line-height: 1.3;
}

.creek-driver-form {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid #EEF1F6;
}
.creek-driver-subtitle {
    font-size: 15px;
    color: #7B8194;
    margin-bottom: 28px;
    line-height: 1.5;
}
.creek-driver-form .req {
    color: var(--color-primary, #FF3600);
    font-weight: 700;
}
/* Icon-wrapped input */
.creek-field-input {
    position: relative;
    display: flex;
    align-items: center;
    height: 52px;
    border: 1px solid #E0E4EE;
    border-radius: 12px;
    background: #fff;
    padding: 0 16px;
    transition: border-color 0.2s ease;
}
.creek-field-input:focus-within {
    border-color: var(--color-primary, #FF3600);
}
.creek-field-input > i {
    color: #050B20;
    font-size: 15px;
    margin-right: 12px;
    flex-shrink: 0;
}
.creek-field-input input,
.creek-field-input select {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #050B20;
    outline: none;
    height: 100%;
    padding: 0;
    font-family: inherit;
}
.creek-field-input input::placeholder {
    color: #B4B9C7;
}
/* Override the generic .creek-field input styles when inside .creek-field-input */
.creek-field-input input,
.creek-field-input textarea {
    width: 100%;
    height: 100% !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

/* ── Secondary Driver Toggle Card ── */
.creek-addl-toggle-card {
    border: 1px solid #EEF1F6;
    border-radius: 16px;
    margin-top: 28px;
    overflow: hidden;
    background: #fff;
}
.creek-addl-toggle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
}
.creek-addl-toggle-left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.creek-addl-toggle-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: #FFF0EB;
    color: var(--color-primary, #FF3600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.creek-addl-toggle-title {
    font-size: 16px;
    font-weight: 700;
    color: #050B20;
}
.creek-addl-toggle-optional {
    font-size: 13px;
    font-weight: 400;
    color: #9AA0B0;
}
.creek-addl-toggle-sub {
    font-size: 13px;
    color: #7B8194;
    margin-top: 2px;
}
.creek-addl-toggle-switch {
    width: 46px;
    height: 26px;
    min-width: 46px !important;
    border-radius: 13px;
    border: none;
    background: #D5D9E4;
    position: relative;
    cursor: pointer;
    transition: background 0.25s ease;
    padding: 0 !important;
    flex-shrink: 0;
}
.creek-addl-toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.25s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.creek-addl-toggle-switch.active {
    background: var(--color-primary, #FF3600);
}
.creek-addl-toggle-switch.active::after {
    transform: translateX(20px);
}
.creek-addl-toggle-body {
    display: none;
    padding: 0 24px 24px;
}
.creek-addl-toggle-card.expanded .creek-addl-toggle-body {
    display: block;
}
.creek-addl-toggle-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #7B8194;
    background: #F8F9FC;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}
.creek-addl-toggle-note i {
    color: #9AA0B0;
    margin-top: 2px;
    flex-shrink: 0;
}
/* Additional driver groups inside toggle body */
.creek-addl-driver-group {
    position: relative;
    border-top: 1px solid #EEF1F6;
    padding: 20px 0 0;
    margin-top: 20px;
}
.creek-addl-driver-group:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}
.creek-addl-driver-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.creek-addl-driver-label {
    font-size: 14px;
    font-weight: 700;
    color: #050B20;
}
.creek-addl-remove-inline {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border: 1px solid #E0E4EE;
    border-radius: 50%;
    background: #fff;
    color: #C0392B;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0 !important;
    flex-shrink: 0;
}
.creek-addl-remove-inline:hover {
    border-color: #C0392B;
    background: #FFF5F5;
    transform: scale(1.05);
}
/* 3-column row for secondary driver first row */
.creek-field-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
/* Add another driver button */
.creek-addl-add-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #E0E4EE;
    border-radius: 10px;
    padding: 10px 20px !important;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary, #FF3600);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 20px;
    width: auto !important;
}
.creek-addl-add-more:hover {
    border-color: var(--color-primary, #FF3600);
    background: #FFF6F3;
}
.creek-addl-add-more:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ── Step 4: review ── */
.creek-review-wrap {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    align-items: stretch;
}
.creek-review-form {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
}
.creek-review-form h4 {
    font-size: 18px;
    font-weight: 700;
    color: #050B20;
    margin-bottom: 20px;
}
.creek-review-summary {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    color: #1F2937;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #F3F4F6;
    display: flex;
    flex-direction: column;
}
.creek-review-summary h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
}
.creek-review-summary .sum-car {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    margin-bottom: 0;
}
.creek-review-summary .sum-car img {
    width: 110px;
    height: auto;
    max-height: 70px;
    object-fit: contain;
    flex-shrink: 0;
}
.creek-review-summary .sum-car-info {
    flex: 1;
}
.creek-review-summary .sum-car-name {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 2px;
}
.creek-review-summary .sum-car-trim {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 8px;
}
.creek-review-summary .sum-car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.creek-review-summary .sum-car-specs span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #6B7280;
    font-weight: 500;
}
.creek-review-summary .sum-car-specs i {
    font-size: 13px;
    color: #6B7280;
}
.creek-review-summary .sum-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 14px;
    padding: 6px 0;
    color: #6B7280;
}
.creek-review-summary .sum-row span:first-child { font-weight: 500; }
.creek-review-summary .sum-row span:last-child { color: #1F2937; font-weight: 600; }
.creek-review-summary .sum-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
}
.creek-review-summary .sum-total-price {
    font-size: 32px;
    font-weight: 800;
    color: #FF5A1F;
}

/* Summary body fills available space, trust panel sits at bottom */
#creek-summary-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.creek-review-summary .ts-divider {
    height: 1px;
    background: #F3F4F6;
    margin: 16px 0;
}
.creek-review-summary .ts-period-row {
    align-items: center;
}
.creek-review-summary .ts-period-val {
    text-align: right;
}
.creek-review-summary .ts-period-dates {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
}
.creek-review-summary .ts-period-days {
    font-size: 12px;
    color: #6B7280;
    margin-top: 2px;
}
.creek-review-summary .ts-addons-label {
    font-size: 13px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 4px;
}
.creek-review-summary .ts-taxes-info {
    color: #9CA3AF;
    font-size: 11px;
    cursor: help;
}
.creek-review-summary .ts-currency {
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
    margin-left: 4px;
}
.creek-review-summary .ts-secure-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6B7280;
    margin-top: 12px;
}
.creek-review-summary .ts-secure-note i {
    color: #FF5A1F;
    font-size: 13px;
}
.creek-review-summary .ts-trust-box {
    margin-top: auto;
}
.creek-book-error,
#creek-book-error-6 {
    display: none;
    background: #FDE5E1;
    color: #B02A10;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

/* ── Nav buttons ── */
.creek-book-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    gap: 16px;
}
.creek-nav-btn {
    height: 44px;
    padding: 0 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.creek-nav-btn.back {
    background: #fff;
    border: 1px solid #E0E4EE;
    color: #444B5E;
}
.creek-nav-btn.back:hover { border-color: #050B20; color: #050B20; }
.creek-nav-btn.next {
    background: var(--color-primary, #FF3600);
    color: #fff;
    margin-left: auto;
}
.creek-nav-btn.next:hover { background: #E02F00; }
.creek-nav-btn.next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ── Responsive ── */
@media (min-width: 1200px) {
    .creek-protect-car-side {
        width: 360px;
    }
    .creek-protect-content-side {
        padding: 36px 40px;
    }
    .creek-protect-overlay {
        padding: 36px 32px;
    }
    .creek-protect-headline {
        font-size: 28px;
    }
}
@media (max-width: 991px) {
    .creek-protect-layout {
        flex-direction: column;
    }
    .creek-protect-car-side {
        display: none;
    }
    .creek-protect-content-side {
        border-radius: 16px;
        padding: 24px 20px;
    }
    .creek-car-grid,
    .creek-protect-grid,
    .creek-fuel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .creek-field-row,
    .creek-field-row-2,
    .creek-field-row-3 { grid-template-columns: 1fr; }
    .creek-review-wrap { grid-template-columns: 1fr; align-items: start; }
    .creek-review-summary { position: static; }
    .creek-driver-layout { grid-template-columns: 1fr; }
    .creek-driver-sidebar { position: static; align-self: auto; }
    .creek-driver-secure-box { float: none; display: flex; margin-bottom: 16px; }
    .creek-step .step-label { display: none; }
    .creek-step.active .step-label { display: inline; }
    .creek-step-line { width: 28px; }
    .creek-pay-time-options { flex-direction: column; }
    .creek-pay-options { flex-direction: column; }
    /* Decline protection: stack vertically on tablets */
    .creek-decline-protect {
        flex-wrap: wrap;
        gap: 10px;
        padding: 14px;
    }
    .creek-decline-text {
        flex: 1 1 100%;
    }
    .creek-decline-protect .np-accept-btn {
        width: 100% !important;
        height: 42px;
        font-size: 14px;
    }
    /* Extras qty items: wrap on tablets */
    .creek-extra-item--qty {
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .creek-extra-item--qty .creek-extra-body {
        flex: 1 1 calc(100% - 130px);
        min-width: 0;
    }
    .creek-extra-item--qty .creek-extra-price {
        flex-shrink: 0;
    }
    .creek-extra-item--qty .creek-extra-qty {
        margin-left: auto;
    }
}
@media (max-width: 575px) {
    .creek-book-area { padding: 40px 0 70px; }
    .creek-car-grid,
    .creek-protect-grid,
    .creek-fuel-grid {
        grid-template-columns: 1fr;
    }
    .creek-book-heading { font-size: 22px; }
    .creek-rental-details,
    .creek-review-form,
    .creek-driver-form { padding: 20px; }
    .creek-driver-summary-card,
    .creek-driver-secure-box { padding: 16px; }
    .creek-nav-btn { padding: 0 24px; height: 48px; }
    .creek-pay-time-option { padding: 12px; }
    .pay-time-amount { font-size: 16px; }
    /* Decline protection: compact on small phones */
    .creek-decline-protect {
        padding: 12px 10px;
        gap: 8px;
    }
    .creek-decline-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .creek-decline-title {
        font-size: 13px;
    }
    .creek-decline-badge {
        font-size: 9px;
        padding: 2px 6px;
    }
    .creek-decline-desc {
        font-size: 11px;
    }
    .creek-decline-protect .np-accept-btn {
        height: 40px;
        font-size: 13px;
        padding: 0 16px;
    }
    /* Why protection strip: stack on small phones */
    .creek-protect-why {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 14px;
    }
    /* Extras qty items: stack vertically on small phones */
    .creek-extra-item--qty {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px 12px;
    }
    .creek-extra-item--qty .creek-extra-toggle {
        align-self: flex-start;
    }
    .creek-extra-item--qty .creek-extra-icon {
        align-self: flex-start;
    }
    .creek-extra-item--qty .creek-extra-body {
        flex: 1 1 100%;
        width: 100%;
    }
    .creek-extra-item--qty .creek-extra-price {
        align-self: flex-start;
    }
    .creek-extra-item--qty .creek-extra-qty {
        margin-left: 0;
        align-self: flex-start;
        justify-content: flex-start;
    }
    /* Boolean extras: stack on small phones */
    .creek-extra-item:not(.creek-extra-item--qty) {
        flex-wrap: wrap;
        gap: 10px;
        padding: 14px 12px;
    }
    .creek-extra-item:not(.creek-extra-item--qty) .creek-extra-body {
        flex: 1 1 calc(100% - 90px);
        min-width: 0;
    }
    /* Fuel cards: stack price on small phones */
    .creek-fuel-card {
        flex-wrap: wrap;
        gap: 8px;
        padding: 14px 12px;
    }
    .creek-fuel-card .creek-fuel-body {
        flex: 1 1 calc(100% - 40px);
        min-width: 0;
    }
    .creek-fuel-card .creek-fuel-price {
        font-size: 16px;
    }
    /* Review addon qty: make buttons bigger for touch */
    .creek-qty-btn {
        width: 32px;
        height: 32px;
    }
    .creek-qty-val {
        font-size: 16px;
        min-width: 24px;
    }
}

/* ── Select dropdown styling for country field ── */
.creek-field-input--black-icon select {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #050B20;
    outline: none;
    height: 100%;
    padding: 0;
    font-family: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.creek-field-input--black-icon select::-ms-expand {
    display: none;
}

/* niceSelect replacement for country dropdown inside black-icon field */
.creek-field-input--black-icon .nice-select {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #050B20;
    outline: none;
    height: 100%;
    padding: 0;
    font-family: inherit;
    cursor: pointer;
}
.creek-field-input--black-icon .nice-select .current {
    color: #050B20;
    font-size: 14px;
}

/* ── Step 5: Redesigned Trip Summary card (white theme) ── */

/* Header with title + edit link */
.creek-summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E7EB;
}
.creek-summary-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
}
.creek-summary-edit {
    font-size: 13px;
    font-weight: 600;
    color: #FF5A1F;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.2s ease;
}
.creek-summary-edit:hover { opacity: 0.8; text-decoration: underline; }
.creek-summary-edit i { font-size: 11px; }

/* Divider lines within the card */
.creek-review-summary .ts-divider {
    height: 1px;
    background: #E5E7EB;
    margin: 20px 0;
}

/* Rental period row — two-line value on the right */
.creek-review-summary .ts-period-row {
    align-items: flex-start;
}
.creek-review-summary .ts-period-val {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.creek-review-summary .ts-period-dates {
    color: #1F2937;
    font-weight: 700;
    font-size: 15px;
}
.creek-review-summary .ts-period-days {
    color: #6B7280;
    font-size: 13px;
    font-weight: 500;
}

/* Taxes info icon */
.ts-taxes-info {
    font-size: 12px;
    color: #9CA3AF;
    margin-left: 4px;
    cursor: help;
}

/* Add-ons section label */
.creek-review-summary .ts-addons-label {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

/* Discount row */
.creek-review-summary .sum-discount span:last-child { color: #059669 !important; }

/* Pay later fee */
.creek-review-summary .sum-fee { color: #FF5A1F !important; }
.creek-review-summary .sum-fee span:last-child { color: #FF5A1F !important; }

/* Total Due row */
.creek-review-summary .sum-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.creek-review-summary .sum-total span:first-child {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
}
.creek-review-summary .ts-currency {
    font-size: 12px;
    font-weight: 700;
    color: #FF5A1F;
    text-transform: uppercase;
    margin-left: 4px;
}

/* Secure checkout note */
.creek-review-summary .ts-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #6B7280;
    margin-top: 20px;
    font-weight: 500;
}
.creek-review-summary .ts-secure-note i {
    font-size: 14px;
    color: #FF5A1F;
}

/* Collapsible promo toggle */
.creek-review-summary .ts-promo-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #6B7280;
    cursor: pointer;
    padding: 14px 0;
    transition: color 0.2s ease;
    user-select: none;
    border-top: 1px solid #E5E7EB;
    margin-top: 20px;
}
.creek-review-summary .ts-promo-toggle:hover { color: #1F2937; }
.creek-review-summary .ts-promo-toggle i {
    font-size: 14px;
    color: #FF5A1F;
}
.creek-review-summary .ts-promo-body {
    margin-bottom: 4px;
}
.creek-review-summary .ts-promo-body .creek-promo-section {
    margin: 0;
    padding-top: 0;
    border-top: none;
}
.creek-review-summary .creek-promo-row {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}
.creek-review-summary .creek-promo-row input {
    flex: 1;
    height: 42px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 14px;
    color: #1F2937;
    outline: none;
    font-family: inherit;
}
.creek-review-summary .creek-promo-row input:focus { border-color: #FF5A1F; }
.creek-review-summary .creek-promo-row button {
    height: 42px;
    padding: 0 20px;
    border: none;
    border-radius: 8px;
    background: #FF5A1F;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    width: auto !important;
    transition: background 0.2s ease;
}
.creek-review-summary .creek-promo-row button:hover { background: #E04E1A; }
.creek-review-summary .creek-promo-success {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #059669;
    font-weight: 600;
    margin-top: 8px;
}
.creek-review-summary .creek-promo-error {
    font-size: 13px;
    color: #DC2626;
    margin-top: 6px;
}

/* Payment time & method sections */
.creek-review-summary .creek-pay-section {
    margin-top: 20px;
    border-top: 1px solid #E5E7EB;
    padding-top: 20px;
}
.creek-review-summary .creek-pay-section > label,
.creek-review-summary .creek-pay-method-section > label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}
.creek-review-summary .creek-pay-time-options {
    display: flex;
    gap: 12px;
}
.creek-review-summary .creek-pay-time-option {
    flex: 1;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff;
}
.creek-review-summary .creek-pay-time-option:hover { border-color: #FFD0BF; }
.creek-review-summary .creek-pay-time-option.selected {
    border-color: #FF5A1F;
    background: #FFF8F5;
}
.creek-review-summary .pay-time-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #D1D5DB;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.25s ease;
}
.creek-review-summary .pay-time-radio.checked {
    border-color: #FF5A1F;
    background: #FF5A1F;
    box-shadow: inset 0 0 0 3px #fff;
}
.creek-review-summary .pay-time-content { flex-grow: 1; }
.creek-review-summary .pay-time-title {
    font-size: 14px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.creek-review-summary .pay-save-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    background: #DCFCE7;
    color: #059669;
}
.creek-review-summary .pay-time-amount {
    font-size: 16px;
    font-weight: 800;
    color: #FF5A1F;
}
.creek-review-summary .pay-time-note {
    font-size: 11px;
    color: #6B7280;
    margin-top: 2px;
}
.creek-review-summary .creek-pay-method-section { margin-top: 14px; }
.creek-review-summary .creek-pay-options {
    display: flex;
    gap: 12px;
}
.creek-review-summary .creek-pay-option {
    flex: 1;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #6B7280;
    background: #fff;
}
.creek-review-summary .creek-pay-option:hover { border-color: #FFD0BF; }
.creek-review-summary .creek-pay-option.selected {
    border-color: #050B20;
    background: #FFF8F5;
    color: #1F2937;
}
.creek-review-summary .creek-pay-option i { font-size: 22px; }

/* Trust panel box */
.creek-review-summary .ts-trust-box {
    margin-top: auto;
    padding: 16px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.creek-review-summary .ts-trust-title {
    font-size: 15px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 2px;
}
.creek-review-summary .ts-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.creek-review-summary .ts-trust-item i {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    border: 1.5px solid #FF5A1F;
    color: #FF5A1F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    background: #FFF8F5;
}
.creek-review-summary .ts-trust-item b {
    font-size: 13px;
    font-weight: 600;
    color: #1F2937;
    display: block;
    margin-bottom: 1px;
}
.creek-review-summary .ts-trust-item p {
    font-size: 12px;
    color: #6B7280;
    line-height: 1.3;
    margin: 0;
}

/* ── Responsive tweaks for the summary card ── */
@media (max-width: 991px) {
    .creek-review-summary .ts-period-val { text-align: right; }
    .creek-review-summary .creek-pay-time-options { flex-direction: column; }
}
@media (max-width: 575px) {
    .creek-review-summary .sum-car img { width: 100px; }
    .creek-review-summary .sum-car-name { font-size: 16px; }
    .creek-review-summary .sum-total-price { font-size: 26px; }
    .creek-review-summary .ts-trust-item p { font-size: 12px; }
    .creek-review-summary .creek-pay-options { flex-direction: column; }
}

/* ══ Step 5 redesign: left panel ══ */

/* Section headers */
.creek-review-sec-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}
.creek-review-sec-head--gap { margin-top: 36px; }
.creek-review-sec-title {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.creek-review-sec-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: #FFF1EC;
    color: #FF5A1F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.creek-review-sec-title h4 {
    font-size: 20px;
    font-weight: 800;
    color: #1F2937;
    margin: 0 0 2px;
    line-height: 1.2;
}
.creek-review-sec-title p {
    font-size: 13px;
    color: #6B7280;
    margin: 0;
}
.creek-review-login-link {
    font-size: 13px;
    color: #FF5A1F;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    margin-top: 4px;
}
.creek-review-login-link:hover { text-decoration: underline; }

/* Edit button */
.creek-review-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #FF5A1F;
    color: #FF5A1F;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: auto !important;
    height: auto !important;
    max-width: none !important;
    white-space: nowrap;
}
.creek-review-edit-btn:hover,
.creek-review-edit-btn.open {
    background: #FF5A1F;
    color: #fff;
}
.creek-review-edit-btn i { font-size: 11px; }

/* ── Renter Details form ── */
.creek-renter-form { margin-bottom: 4px; }
.creek-renter-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.creek-renter-row--3 .creek-renter-field { flex: 1; }
.creek-renter-field--60 { flex: 0 0 60%; }
.creek-renter-field--40 { flex: 0 0 calc(40% - 16px); }
.creek-renter-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 6px;
}
.creek-renter-input {
    position: relative;
    display: flex;
    align-items: center;
}
.creek-renter-input input {
    width: 100%;
    height: 52px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    background: #fff;
    padding: 0 16px;
    font-size: 14px;
    color: #1F2937;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: inherit;
}
.creek-renter-input input::placeholder { color: #9CA3AF; }
.creek-renter-input input:focus { border-color: #FF5A1F; }
.creek-renter-input--icon i {
    position: absolute;
    left: 16px;
    font-size: 15px;
    color: #6B7280;
    pointer-events: none;
}
.creek-renter-input--icon input { padding-left: 42px; }

/* ── Pickup & Return strip ── */
.creek-pr-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.creek-pr-strip .pr-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.creek-pr-strip .pr-item i {
    color: #FF5A1F;
    font-size: 16px;
    margin-top: 2px;
}
.creek-pr-strip .pr-item span {
    display: block;
    font-size: 11px;
    color: #9CA3AF;
    font-weight: 600;
    margin-bottom: 3px;
}
.creek-pr-strip .pr-item b {
    font-size: 14px;
    font-weight: 700;
    color: #1F2937;
    line-height: 1.4;
}
.creek-pr-strip .pr-item b em {
    display: block;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    color: #6B7280;
    margin-top: 1px;
}

/* Editable fields hidden behind the Edit button */
.creek-pr-edit { margin-top: 14px; }

/* ── Add-ons & Extras cards ── */
.creek-review-addons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.creek-review-addons .addon-card {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 18px;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    min-height: 190px;
}
.creek-review-addons .addon-card:hover { border-color: #FFD0BF; }
.creek-review-addons .addon-card.selected {
    border-color: #FF5A1F;
    background: #FFF8F5;
}
.creek-review-addons .addon-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.creek-review-addons .addon-card-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 5px;
    border: 1.5px solid #D1D5DB;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #fff;
    transition: all 0.2s ease;
}
.creek-review-addons .addon-card-check.checked {
    background: #FF5A1F;
    border-color: #FF5A1F;
}
.creek-review-addons .addon-card-info {
    color: #C7CBD1;
    font-size: 14px;
}
.creek-review-addons .addon-card-img {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.creek-review-addons .addon-card-img img {
    max-height: 56px;
    max-width: 100%;
    object-fit: contain;
}
.creek-review-addons .addon-card-img--fa i {
    font-size: 32px;
    color: #FF5A1F;
}
.creek-review-addons .addon-card-name {
    font-size: 14px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 3px;
}
.creek-review-addons .addon-card-price {
    font-size: 13px;
    font-weight: 700;
    color: #FF5A1F;
    margin-bottom: 5px;
}
.creek-review-addons .addon-card-desc {
    font-size: 12px;
    color: #6B7280;
    line-height: 1.4;
}

/* ── Step 5 nav buttons ── */
.creek-book-nav--step5 {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #F3F4F6;
}
.creek-book-nav--step5 .creek-nav-btn {
    height: 52px;
    padding: 0 30px;
    border-radius: 12px;
    font-size: 15px;
}
.creek-book-nav--step5 .creek-nav-btn.back {
    background: #fff;
    border: 1px solid #E5E7EB;
    color: #1F2937;
}
.creek-book-nav--step5 .creek-nav-btn.back:hover {
    border-color: #1F2937;
    color: #1F2937;
}
.creek-book-nav--step5 .creek-nav-btn.next {
    background: #FF5A1F;
    color: #fff;
}
.creek-book-nav--step5 .creek-nav-btn.next:hover { background: #E04E1A; }

/* ══ Step 5 redesign: responsive ══ */
@media (max-width: 1199px) {
    .creek-review-addons { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .creek-pr-strip { grid-template-columns: repeat(2, 1fr); }
    .creek-renter-row--3 { flex-wrap: wrap; }
    .creek-renter-row--3 .creek-renter-field { flex: 1 1 45%; }
}
@media (max-width: 575px) {
    .creek-review-addons { grid-template-columns: 1fr; }
    .creek-pr-strip { grid-template-columns: 1fr; padding: 16px; }
    .creek-review-sec-head { flex-wrap: wrap; }
    .creek-renter-row { flex-direction: column; gap: 12px; }
    .creek-renter-field--60,
    .creek-renter-field--40 { flex: 1; }
}

/* ══ Step 6: Payment page ══ */

.creek-payment-wrap {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 28px;
    align-items: start;
}

/* Payment main column */
.creek-payment-main {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
}

/* Header */
.creek-payment-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}
.creek-payment-header-left {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.creek-payment-header-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: #FFF1EC;
    color: #FF5A1F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.creek-payment-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
}
.creek-payment-header p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}
.creek-payment-secure {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
    white-space: nowrap;
}
.creek-payment-secure i { color: #FF5A1F; font-size: 15px; }

/* ══ Combined Payment Card (compact) ══ */
.creek-payment-options {
    margin-bottom: 24px;
}

/* Main card container */
.creek-pay-combined-card {
    border: 3px solid #050B20;
    border-radius: 24px;
    background: #fff;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Each option row */
.creek-pay-opt {
    border-radius: 18px;
    padding: 16px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}
.creek-pay-opt:hover {
    background: #FFF8F5;
}
.creek-pay-opt.selected {
    border-color: #050B20;
    background: #FFFBF8;
}

/* Option header row */
.creek-pay-opt-header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.creek-pay-opt-radio {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    border: 2.5px solid #D1D5DB;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.creek-pay-opt-radio.checked {
    border-color: #FF5A1F;
}
.creek-pay-opt-radio.checked::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FF5A1F;
}
.creek-pay-opt-info {
    flex: 1;
    min-width: 0;
}
.creek-pay-opt-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.creek-pay-opt-title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
}
.creek-pay-opt-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    background: #FFF1EB;
    color: #FF5A1F;
}
.creek-pay-opt-badge i {
    font-size: 10px;
    color: #FBBF24;
}
.creek-pay-opt-badge--static {
    opacity: 0.7;
}
.creek-pay-opt-desc {
    font-size: 13px;
    color: #6B7280;
    margin-top: 2px;
}

/* Price on the right */
.creek-pay-opt-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
}
.creek-pay-opt-price-main {
    font-size: 22px;
    font-weight: 800;
    color: #FF5A1F;
    line-height: 1;
}
.creek-pay-opt-price-main--gray {
    color: #9CA3AF;
}
.creek-pay-opt-price-save {
    font-size: 11px;
    font-weight: 600;
    color: #118C3D;
}

/* Expanded details section */
.creek-pay-opt-details {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #FDE5D8;
}

/* Pricing comparison inside details */
.creek-pay-opt-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.creek-pay-price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.creek-pay-price-block span {
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
}
.creek-pay-price-now {
    font-size: 36px;
    font-weight: 800;
    color: #FF5A1F;
    line-height: 1;
}
.creek-pay-price-now-sm {
    font-size: 22px;
    font-weight: 700;
    color: #FF5A1F;
}
.creek-pay-price-later {
    font-size: 22px;
    font-weight: 600;
    color: #9CA3AF;
    text-decoration: line-through;
    line-height: 1;
}
.creek-pay-price-later-big {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    line-height: 1;
}
.creek-pay-price-divider {
    width: 1px;
    height: 40px;
    background: #E5E7EB;
    margin: 0 18px;
    flex-shrink: 0;
}
.creek-pay-savings {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    background: linear-gradient(135deg, #DDF9DD, #CFF4D1);
    border-radius: 10px;
    padding: 8px 16px;
}
.creek-pay-savings span {
    font-size: 11px;
    font-weight: 600;
    color: #118C3D;
}
.creek-pay-savings b {
    font-size: 20px;
    font-weight: 800;
    color: #118C3D;
    line-height: 1.1;
}
.creek-pay-savings em {
    font-size: 10px;
    font-weight: 700;
    color: #118C3D;
    font-style: normal;
}

/* Foot note */
.creek-pay-opt-foot {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 12px;
}
.creek-pay-opt-foot i {
    font-size: 14px;
    color: #6B7280;
}

/* Divider inside details */
.creek-pay-opt-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF5A1F 10%, #FF5A1F 90%, transparent);
    margin: 0 0 14px;
    border: none;
    border-radius: 1px;
}

/* Payment methods inside details */
.creek-pay-opt-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.creek-pay-opt-methods p {
    font-size: 15px;
    font-weight: 500;
    color: #6B7280;
    margin: 0;
    text-align: center;
}
.creek-pay-opt-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.creek-pay-opt-logos .pay-card-logo {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 4px 6px;
    background: #fff;
    border: 1px solid #F3F4F6;
}
.creek-pay-opt-logos .pay-card-logo img {
    width: 40px;
    height: 28px;
    display: block;
    border-radius: 3px;
    object-fit: contain;
}

/* Security banner */
.creek-pay-opt-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFF1EB, #FFE8DE);
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #FF5A1F;
    text-align: center;
}
.creek-pay-opt-security i {
    font-size: 14px;
    color: #FF5A1F;
    flex-shrink: 0;
}

/* ══ Responsive: Payment Card ══ */
@media (max-width: 991px) {
    .creek-pay-combined-card {
        padding: 6px;
        border-radius: 20px;
    }
    .creek-pay-opt {
        padding: 14px 14px;
    }
    .creek-pay-opt-title {
        font-size: 16px;
    }
    .creek-pay-opt-desc {
        font-size: 12px;
    }
    .creek-pay-opt-price-main {
        font-size: 20px;
    }
    .creek-pay-price-now {
        font-size: 30px;
    }
    .creek-pay-price-later-big {
        font-size: 28px;
    }
    .creek-pay-price-divider {
        height: 36px;
        margin: 0 14px;
    }
    .creek-pay-opt-methods p {
        font-size: 14px;
    }
    .creek-pay-opt-security {
        font-size: 13px;
        padding: 10px 14px;
    }
}

@media (max-width: 575px) {
    .creek-pay-combined-card {
        border-radius: 16px;
        border-width: 2px;
        padding: 5px;
        gap: 5px;
    }
    .creek-pay-opt {
        padding: 12px 12px;
        border-radius: 14px;
    }
    .creek-pay-opt-header {
        gap: 10px;
    }
    .creek-pay-opt-radio {
        width: 20px;
        height: 20px;
        min-width: 20px;
        border-width: 2px;
    }
    .creek-pay-opt-radio.checked::after {
        width: 8px;
        height: 8px;
    }
    .creek-pay-opt-title {
        font-size: 15px;
    }
    .creek-pay-opt-badge {
        font-size: 10px;
        padding: 2px 8px;
    }
    .creek-pay-opt-desc {
        font-size: 12px;
    }
    .creek-pay-opt-price-main {
        font-size: 18px;
    }
    .creek-pay-opt-price-save {
        font-size: 10px;
    }
    /* Stack pricing vertically */
    .creek-pay-opt-pricing {
        flex-direction: column;
        gap: 14px;
    }
    .creek-pay-price-divider {
        width: 70%;
        height: 1px;
        margin: 0;
    }
    .creek-pay-price-now {
        font-size: 28px;
    }
    .creek-pay-price-later {
        font-size: 18px;
    }
    .creek-pay-price-later-big {
        font-size: 24px;
    }
    .creek-pay-price-block span {
        font-size: 12px;
    }
    .creek-pay-savings {
        padding: 8px 14px;
    }
    .creek-pay-savings b {
        font-size: 18px;
    }
    .creek-pay-opt-details {
        margin-top: 12px;
        padding-top: 12px;
    }
    .creek-pay-opt-methods {
        gap: 10px;
        margin-bottom: 12px;
    }
    .creek-pay-opt-methods p {
        font-size: 13px;
    }
    .creek-pay-opt-logos {
        gap: 6px;
    }
    .creek-pay-opt-logos .pay-card-logo img {
        width: 34px;
        height: 24px;
    }
    .creek-pay-opt-security {
        font-size: 12px;
        padding: 10px 12px;
        border-radius: 10px;
        gap: 6px;
    }
    .creek-pay-opt-security i {
        font-size: 12px;
    }
    .creek-pay-opt-foot {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .creek-pay-combined-card {
        padding: 4px;
    }
    .creek-pay-opt {
        padding: 10px 10px;
    }
    .creek-pay-opt-title {
        font-size: 14px;
    }
    .creek-pay-opt-price-main {
        font-size: 16px;
    }
    .creek-pay-price-now {
        font-size: 24px;
    }
    .creek-pay-opt-logos .pay-card-logo img {
        width: 30px;
        height: 20px;
    }
    .creek-pay-opt-logos {
        gap: 4px;
    }
}

/* Security note */
.creek-payment-security-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6B7280;
    font-weight: 500;
    margin-bottom: 24px;
}
.creek-payment-security-note i { font-size: 13px; color: #9CA3AF; }

/* Step 6 nav buttons */
.creek-book-nav--step6 {
    margin-top: 8px;
    padding-top: 0;
    border-top: none;
}
.creek-book-nav--step6 .creek-nav-btn {
    height: 52px;
    padding: 0 30px;
    border-radius: 12px;
    font-size: 15px;
}
.creek-book-nav--step6 .creek-nav-btn.back {
    background: #fff;
    border: 1px solid #E5E7EB;
    color: #1F2937;
}
.creek-book-nav--step6 .creek-nav-btn.back:hover {
    border-color: #1F2937;
}
.creek-confirm-btn {
    background: #FF5A1F !important;
    color: #fff !important;
    font-weight: 700 !important;
}
.creek-confirm-btn:hover { background: #E04E1A !important; }
.creek-confirm-btn:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    background: #FF5A1F !important;
}

/* Payment sidebar */
.creek-payment-sidebar {
    position: sticky;
    top: 100px;
}

/* ── Step 6 responsive ── */

@media (max-width: 991px) {
    .creek-payment-wrap {
        grid-template-columns: 1fr;
    }
    .creek-payment-sidebar {
        position: static;
    }
    .creek-payment-methods {
        grid-template-columns: 1fr;
    }
    .pay-card-pricing {
        flex-wrap: wrap;
        gap: 12px;
    }
    .pay-price-divider { display: none; }
}
@media (max-width: 575px) {
    .creek-payment-header {
        flex-direction: column;
        gap: 12px;
    }
    .creek-payment-main { padding: 20px; }
    .pay-card { padding: 16px; min-height: auto; }
    .pay-price-now, .pay-price-later-big { font-size: 22px; }
    .pay-card-pricing { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ── Quantity selector for qty-enabled extras (child seat, booster seat) ── */
.creek-extra-item--qty {
    cursor: default;
}
.creek-extra-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.creek-extra-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: 4px;
}
.creek-extra-qty.hidden {
    display: none;
}
.creek-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1.5px solid #D5DAE5;
    background: #fff;
    color: #050B20;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}
.creek-qty-btn:hover {
    border-color: var(--color-primary, #FF3600);
    color: var(--color-primary, #FF3600);
    background: #FFF6F3;
}
.creek-qty-btn:active {
    transform: scale(0.92);
}
.creek-qty-val {
    font-size: 15px;
    font-weight: 700;
    color: #050B20;
    min-width: 20px;
    text-align: center;
}

/* Step 5 review: qty stepper inside addon cards */
.addon-card-qty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #EEF0F5;
}

/* ── Stripe Payment Element (embedded) ── */
.creek-stripe-element-wrap {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 28px;
    margin: 20px 0;
    max-width: 100%;
    overflow: hidden;
}
.creek-stripe-element-header {
    margin-bottom: 20px;
}
.creek-stripe-element-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #050B20;
    margin: 0 0 6px;
}
.creek-stripe-element-header p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}
/* Payment Element container — scrollable on mobile (accordion), auto height on desktop (tabs) */
#creek-stripe-payment-element {
    margin-bottom: 20px;
    min-height: 180px;
    max-height: 560px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-right: 4px;
}
@media (min-width: 576px) {
    #creek-stripe-payment-element {
        max-height: none;
        overflow-y: visible;
        overflow-x: visible;
        -webkit-overflow-scrolling: auto;
        padding-right: 0;
    }
}
/* Custom scrollbar for payment element area */
#creek-stripe-payment-element::-webkit-scrollbar {
    width: 6px;
}
#creek-stripe-payment-element::-webkit-scrollbar-track {
    background: #F9FAFB;
    border-radius: 3px;
}
#creek-stripe-payment-element::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 3px;
}
#creek-stripe-payment-element::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}
.creek-stripe-pay-btn {
    width: 100% !important;
    background: #FF5A1F !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 14px 24px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}
.creek-stripe-pay-btn:hover:not(:disabled) {
    background: #E04E1A !important;
}
.creek-stripe-pay-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
}
.creek-stripe-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #DC2626;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    margin-top: 16px;
}

/* ── Responsive: Stripe Payment Element ── */
@media (max-width: 991px) {
    .creek-stripe-element-wrap {
        padding: 22px 20px;
        border-radius: 14px;
    }
    .creek-stripe-element-header h3 {
        font-size: 18px;
    }
    .creek-stripe-element-header p {
        font-size: 13px;
    }
    #creek-stripe-payment-element {
        max-height: 480px;
    }
    .creek-stripe-pay-btn {
        font-size: 15px !important;
        padding: 12px 20px !important;
    }
}

@media (max-width: 575px) {
    .creek-stripe-element-wrap {
        padding: 16px 14px;
        border-radius: 12px;
        margin: 12px 0;
    }
    .creek-stripe-element-header {
        margin-bottom: 14px;
    }
    .creek-stripe-element-header h3 {
        font-size: 17px;
    }
    .creek-stripe-element-header p {
        font-size: 12px;
    }
    #creek-stripe-payment-element {
        max-height: 420px;
        padding-right: 2px;
        margin-bottom: 14px;
    }
    .creek-stripe-pay-btn {
        font-size: 15px !important;
        padding: 12px 16px !important;
        border-radius: 8px !important;
    }
    .creek-stripe-error {
        font-size: 13px;
        padding: 10px 12px;
    }
}

@media (max-width: 380px) {
    .creek-stripe-element-wrap {
        padding: 12px 10px;
    }
    .creek-stripe-element-header h3 {
        font-size: 16px;
    }
    #creek-stripe-payment-element {
        max-height: 380px;
    }
    .creek-stripe-pay-btn {
        font-size: 14px !important;
        padding: 10px 12px !important;
    }
}
