/* ==============================
   FOGLALAS1 — FOGLALÁSI WIZARD
   ============================== */

.foglalas1-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 30px 15px 60px;
    font-family: 'Montserrat', sans-serif;
}

/* ── STEP PROGRESS BAR ────────────────────────── */
.foglalas1-progress-wrap {
    margin-bottom: 36px;
}

.foglalas1-progress {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.foglalas1-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 70px;
}

.foglalas1-step-line {
    flex: 1;
    height: 2px;
    background: #d9d9d9;
    margin-top: 19px;
    transition: background 0.3s;
}
.foglalas1-step-line.is-done {
    background: #005f9d;
}

.foglalas1-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
    border: 2px solid #005f9d;
    background: #fff;
    color: #005f9d;
    cursor: default;
}
.foglalas1-step-circle.is-active {
    background: #005f9d;
    color: #fff;
}
button.foglalas1-step-circle.is-done {
    background: #27ae60;
    border-color: #27ae60;
    color: #fff;
    cursor: pointer;
    transition: opacity 0.2s;
}
button.foglalas1-step-circle.is-done:hover {
    opacity: 0.85;
}

.foglalas1-step-label {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.foglalas1-step-item.is-active .foglalas1-step-label {
    color: #005f9d;
}
.foglalas1-step-item.is-done .foglalas1-step-label {
    color: #27ae60;
}

/* ── MAIN LAYOUT ──────────────────────────────── */
.foglalas1-main {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    align-items: start;
}

/* ── LEFT: STEP CONTENT ───────────────────────── */
.foglalas1-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.foglalas1-step-header {
    margin-bottom: 6px;
}
.foglalas1-step-num {
    font-size: 14px;
    font-weight: 700;
    color: #005f9d;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}
.foglalas1-step-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.2;
}
.foglalas1-step-desc {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin: 8px 0 0;
}

/* ── CARDS ────────────────────────────────────── */
.foglalas1-card {
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
    padding: 24px 24px 28px;
}

/* ── AUTO CARD ────────────────────────────────── */
.foglalas1-auto-card {
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
    padding: 20px 22px 24px;
    position: relative;
}

.foglalas1-auto-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    cursor: pointer;
    user-select: none;
    padding-bottom: 16px;
}
.foglalas1-auto-card.is-open .foglalas1-auto-card-header {
    margin-bottom: 0;
    border-bottom: 1px solid #eff1f3;
    padding-bottom: 14px;
    margin-bottom: 4px;
}
.foglalas1-auto-num {
    font-size: 15px;
    font-weight: 700;
    color: #005f9d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.foglalas1-auto-num-plate {
    font-weight: 500;
    color: #676767;
    font-size: 13px;
    letter-spacing: 0.5px;
}
.foglalas1-auto-card-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.foglalas1-accordion-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #005f9d;
    transition: transform 0.25s ease;
}
.foglalas1-auto-card.is-open .foglalas1-accordion-arrow {
    transform: rotate(180deg);
}
.foglalas1-delete-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    flex-shrink: 0;
}
.foglalas1-delete-btn:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    background: #fff5f5;
}

.foglalas1-auto-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ── ADD AUTO BUTTON ──────────────────────────── */
.foglalas1-add-auto-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px dashed #005f9d;

    color: #005f9d;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 24px;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.foglalas1-add-auto-btn:hover {
    background: rgba(0, 95, 157, 0.05);
}

/* ── FORM ELEMENTS ────────────────────────────── */
.foglalas1-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}
.foglalas1-form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}
.foglalas1-form-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
    display: block;
}
.foglalas1-form-input,
.foglalas1-form-select {
    background: #f3f3f3;
    border: 1px solid #a2a2a2;

    padding: 12px 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #333;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}
.foglalas1-form-input::placeholder { color: #a2a2a2; }
.foglalas1-form-input:focus,
.foglalas1-form-select:focus { border-color: #005f9d; }
.foglalas1-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

/* ── LOGIN CARD (step 0) ──────────────────────── */
.foglalas1-login-card {
    background: linear-gradient(65.4deg, #005f9d 20.979%, #009aff 127.15%);

    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.foglalas1-login-title {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}
.foglalas1-login-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #005f9d;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 22px;

    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
    letter-spacing: 0.4px;
    flex-shrink: 0;
}
.foglalas1-login-btn:hover { opacity: 0.88; }

/* ── KEDVEZMÉNY CARD INNER ────────────────────── */
.foglalas1-card-inner-title {
    font-size: 16px;
    font-weight: 800;
    color: #005f9d;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 12px;
}
.foglalas1-kedvezmeny-question {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin: 0 0 18px;
    line-height: 1.5;
}

/* ── RADIO GROUP (step 0) ─────────────────────── */
.foglalas1-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.foglalas1-radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    user-select: none;
}
.foglalas1-radio-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #a2a2a2;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
    position: relative;
}
.foglalas1-radio-dot::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #005f9d;
    opacity: 0;
    transition: opacity 0.2s;
}
.foglalas1-radio-dot.is-active {
    border-color: #005f9d;
}
.foglalas1-radio-dot.is-active::after {
    opacity: 1;
}
.foglalas1-radio-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* ── WIDE NEXT BUTTON (step 0) ────────────────── */
.foglalas1-btn-next--wide {
    width: 100%;
    justify-content: center;
    margin-left: 0;
}

/* ── KEDVEZMÉNY ───────────────────────────────── */
.foglalas1-code-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.foglalas1-code-row .foglalas1-form-input {
    flex: 1;
    margin-bottom: 0;
}
.foglalas1-apply-btn {
    background: #005f9d;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    border: none;

    padding: 0 20px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.foglalas1-apply-btn:hover { opacity: 0.88; }
.foglalas1-code-ok {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #27ae60;
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
}

/* ── SERVICES INSIDE AUTO CARD (step 1) ──────── */
.foglalas1-services-section {
    margin-top: 4px;
}
.foglalas1-services-divider {
    height: 1px;
    background: #e8e8e8;
    margin: 16px 0 14px;
}
.foglalas1-services-title {
    font-size: 13px;
    font-weight: 700;
    color: #005f9d;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0 0 10px;
}
.foglalas1-service-row.is-checked {
    background: rgba(0, 95, 157, 0.04);

    padding-left: 6px;
    padding-right: 6px;
    margin-left: -6px;
    margin-right: -6px;
}
.foglalas1-service-row.is-checked .foglalas1-service-name {
    color: #005f9d;
    font-weight: 600;
}

/* ── SERVICES (step 2) ────────────────────────── */
.foglalas1-service-type-label {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 14px 0 6px;
}
.foglalas1-service-type-label:first-child { margin-top: 0; }
.foglalas1-service-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.foglalas1-service-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}
.foglalas1-service-row:last-child { border-bottom: none; }
.foglalas1-service-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}
.foglalas1-service-price {
    font-size: 14px;
    font-weight: 700;
    color: #005f9d;
    white-space: nowrap;
    margin-left: auto;
}
.foglalas1-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #005f9d;
    cursor: pointer;
    flex-shrink: 0;
}

/* ── BILLING TYPE ─────────────────────────────── */
.foglalas1-billing-type-wrap {
    display: flex;
    gap: 24px;
    margin-bottom: 18px;
}
.foglalas1-billing-type-wrap label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}
.foglalas1-billing-type-wrap input[type="radio"] {
    accent-color: #005f9d;
    width: 17px;
    height: 17px;
    cursor: pointer;
}

/* ── PAYMENT ──────────────────────────────────── */
.foglalas1-fizetes-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}
.foglalas1-fizetes-options {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.foglalas1-fizetes-option {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #e0e0e0;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    transition: border-color 0.2s, color 0.2s;
}
.foglalas1-fizetes-option input[type="radio"] { display: none; }
.foglalas1-fizetes-option.is-active {
    border-color: #005f9d;
    color: #005f9d;
}

/* ── ÁSZF ─────────────────────────────────────── */
.foglalas1-aszf-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #444;
    cursor: pointer;
    line-height: 1.5;
}
.foglalas1-link {
    color: #005f9d;
    text-decoration: underline;
}
.foglalas1-error {
    color: #e74c3c;
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
}

/* ── NAV BUTTONS ──────────────────────────────── */
.foglalas1-nav-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}
.foglalas1-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid #005f9d;
    color: #005f9d;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 24px;

    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.foglalas1-btn-back:hover { background: rgba(0,95,157,0.06); }
.foglalas1-btn-next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(65.4deg, #005f9d 20.979%, #009aff 127.15%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 32px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: auto;
}
.foglalas1-btn-next:hover { opacity: 0.88; }

/* ── RIGHT: ÖSSZESÍTŐ ─────────────────────────── */
.foglalas1-osszesito-wrap {
    position: sticky;
    top: 130px;
}
.foglalas1-osszesito {
    background: linear-gradient(180deg, #009aff 100% , #005f9d 0% );
    padding: 24px 22px 28px;
    color: #fff;
}
.foglalas1-osszesito-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 20px;
    letter-spacing: 0.5px;
}
.foglalas1-osszesito-idopont {
    background: rgba(255,255,255,0.12);
    border-left: 3px solid rgba(255,255,255,0.6);
    padding: 12px 14px;
    margin-bottom: 20px;
}
.foglalas1-osszesito-idopont-date {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
    line-height: 1.2;
}
.foglalas1-osszesito-idopont-time {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.foglalas1-osszesito-auto {
    margin-bottom: 18px;
}
.foglalas1-osszesito-auto-name {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
}
.foglalas1-osszesito-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    padding: 5px 0;
    gap: 12px;
}
.foglalas1-osszesito-row span:last-child {
    font-weight: 600;
    white-space: nowrap;
}
.foglalas1-osszesito-row.is-discount {
    color: #7fffb8;
}
.foglalas1-osszesito-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 6px;
    padding-top: 6px;
}
.foglalas1-osszesito-empty-row {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    font-style: italic;
    padding: 4px 0;
}
.foglalas1-osszesito-divider {
    height: 1px;
    background: rgba(255,255,255,0.25);
    margin: 14px 0;
}
.foglalas1-osszesito-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px solid rgba(255,255,255,0.4);
}
.foglalas1-osszesito-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
}

/* ── SUCCESS ──────────────────────────────────── */
.foglalas1-success {
    text-align: center;
    padding: 60px 20px;
}
.foglalas1-success-icon { margin-bottom: 20px; }
.foglalas1-success-title {
    font-size: 28px;
    font-weight: 800;
    color: #005f9d;
    margin: 0 0 12px;
    text-transform: uppercase;
}
.foglalas1-success-text {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── RENDSZÁM SÁV ────────────────────────────── */
.foglalas1-rendszam-bar {
    background: #eff1f3;
    padding: 10px 15px;
    margin-bottom: 18px;
}
.foglalas1-rendszam-input {
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #676767;
    width: 100%;
    outline: none;
}
.foglalas1-rendszam-input::placeholder { color: #a2a2a2; }

/* ── AUTÓMÉRET KÁRTYÁK ────────────────────────── */
.foglalas1-size-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 10px 0 0;
}
.foglalas1-size-card {
    border: 1px solid #e0e0e0;
    padding: 18px 10px 14px;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    user-select: none;
}
.foglalas1-size-card:not(:first-child) {
    border-left: none;
}
.foglalas1-size-card.is-active {
    background: #005f9d;
    border-color: #005f9d;
    color: #fff;
}
.foglalas1-size-card svg {
    display: block;
    margin: 0 auto;
    transition: stroke 0.2s, fill 0.2s;
}
.foglalas1-size-card.is-active svg path {
    stroke: #fff;
}
.foglalas1-size-card-name {
    font-weight: 700;
    font-size: 16px;
    margin: 10px 0 6px;
    color: inherit;
}
.foglalas1-size-card-examples {
    font-size: 12px;
    font-weight: 500;
    color: #676767;
    line-height: 1.6;
}
.foglalas1-size-card.is-active .foglalas1-size-card-examples {
    color: rgba(255, 255, 255, 0.85);
}

/* ── SPECIÁLIS JÁRMŰ SOR ──────────────────────── */
.foglalas1-special-row {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-top: 2px;
    user-select: none;
}
.foglalas1-special-row .foglalas1-special-label {
    font-size: 14px;
    font-weight: 500;
    color: #676767;
}

/* ── SZEKCIÓ CÍM ──────────────────────────────── */
.foglalas1-section-label {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 22px 0 10px;
    display: block;
}

/* ── RADIO OPCIÓ SOR ──────────────────────────── */
.foglalas1-radio-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.foglalas1-radio-options.is-horizontal {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
}
.foglalas1-radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #676767;
    cursor: pointer;
    user-select: none;
}

/* ── AUTÓMÉRET KÁRTYA KÉP ────────────────────── */
.foglalas1-size-card-icon {
    display: block;
    margin: 0 auto;
    object-fit: contain;
    /* Fekete/sötét ikont #005f9d kékre színezi */
    filter: invert(27%) sepia(87%) saturate(800%) hue-rotate(188deg) brightness(92%) contrast(105%);
    transition: filter 0.2s;
}
.foglalas1-size-card.is-active .foglalas1-size-card-icon {
    /* Aktív (kék háttér) esetén fehérre vált */
    filter: brightness(0) invert(1);
}

/* ── INFO IKON + TOOLTIP ──────────────────────── */
.foglalas1-tooltip-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.foglalas1-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid #005f9d;
    color: #005f9d;
    font-size: 9px;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    cursor: help;
    flex-shrink: 0;
}
.foglalas1-tooltip-text {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    padding: 7px 10px;
    border-radius: 4px;
    width: 200px;
    white-space: normal;
    text-align: left;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
    z-index: 200;
    line-height: 1.5;
}
.foglalas1-tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1a1a1a;
}
.foglalas1-tooltip-wrap:hover .foglalas1-tooltip-text {
    opacity: 1;
}

/* ── SERVICE CHECKBOX SOR (redesign) ──────────── */
.foglalas1-service-checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: 14px;
    font-weight: 500;
    color: #676767;
    cursor: pointer;
    user-select: none;
}
.foglalas1-service-checkbox-row .foglalas1-service-name,
.foglalas1-radio-option .foglalas1-service-name {
    color: #676767;
}
.foglalas1-service-checkbox-row.is-checked .foglalas1-service-name {
    color: #005f9d;
    font-weight: 600;
}
.foglalas1-radio-option.is-checked .foglalas1-service-name {
    color: #005f9d;
}

/* ── SZOLGÁLTATÁSAINK RÉSZLETESEN GOMB ─────────── */
.foglalas1-services-details-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid #005f9d;
    background: #fff;
    color: #005f9d;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 30px;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    box-sizing: border-box;
}
.foglalas1-services-details-btn:hover {
    background: rgba(0, 95, 157, 0.05);
    color: #005f9d;
}

/* ── NAPTÁR (STEP 3) ──────────────────────────── */
.foglalas1-cal {
    border: 1px solid #dde0e3;
    overflow: hidden;
    margin-bottom: 20px;
}

.foglalas1-cal-header {
    background: #005f9d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
}

.foglalas1-cal-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.foglalas1-cal-nav {
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 0 6px;
    opacity: 0.85;
    transition: opacity 0.15s;
    font-family: 'Montserrat', sans-serif;
}
.foglalas1-cal-nav:hover { opacity: 1; }

.foglalas1-cal-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #f0f2f4;
    border-bottom: 1px solid #dde0e3;
}

.foglalas1-cal-day-name {
    text-align: center;
    padding: 8px 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #999;
}

.foglalas1-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 6px 8px 10px;
    gap: 2px;
    background: #fff;
}

.foglalas1-cal-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    background: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    padding: 0;
}
.foglalas1-cal-cell:hover:not(.is-disabled):not(.is-selected) {
    background: #e3f0f8;
    border-radius: 50%;
}
.foglalas1-cal-cell.is-disabled {
    color: #c5c9ce;
    cursor: default;
    font-weight: 400;
}
.foglalas1-cal-cell.is-today {
    border: 2px solid #005f9d;
    border-radius: 50%;
}
.foglalas1-cal-cell.is-selected {
    background: #005f9d;
    color: #fff;
    border-radius: 50%;
    border: none;
}
.foglalas1-cal-cell.is-empty {
    cursor: default;
}

/* ── IDŐSÁVOK (STEP 3) ────────────────────────── */
.foglalas1-slots {
    margin-top: 4px;
}

.foglalas1-slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.foglalas1-slot-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    background: #fff;
    border: 1.5px solid #005f9d;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    border-radius: 0;
    padding: 0;
}
.foglalas1-slot-btn:hover:not(.is-selected) {
    background: #e3f0f8;
}
.foglalas1-slot-btn.is-selected {
    background: #005f9d;
    color: #fff;
    border-color: #005f9d;
}
.foglalas1-slot-btn.is-disabled {
    background: #f0f0f0;
    border-color: #ccc;
    color: #aaa;
    cursor: not-allowed;
    opacity: 0.7;
}
.foglalas1-slot-btn.is-disabled:hover {
    background: #f0f0f0;
    color: #aaa;
}

.foglalas1-slots-empty {
    text-align: center;
    padding: 16px 0 8px;
    color: #888;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* ── STEP 2 — CÍM MEZŐK (Figma #eff1f3 stílus) ── */
.foglalas1-card--step2 .foglalas1-step-title {
    font-size: 18px;
}
.foglalas1-step2-input {
    display: block;
    width: 100%;
    background: #eff1f3;
    border: none;
    padding: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #333;
    outline: none;
    box-sizing: border-box;
    transition: background 0.15s;
}
.foglalas1-step2-input::placeholder {
    color: #676767;
    font-weight: 500;
}
.foglalas1-step2-input:focus {
    background: #e4e8ec;
}
.foglalas1-step2-input--readonly {
    background: #dde0e3;
    cursor: default;
    color: #444;
}
.foglalas1-step2-input--readonly:focus {
    background: #dde0e3;
}
.foglalas1-btn-next--disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.foglalas1-btn-next--disabled:hover {
    opacity: 0.45;
}
.foglalas1-osszesito-breakdown {
    padding: 0 0 10px 10px;
    border-left: 1px solid rgba(255,255,255,0.2);
    margin: -4px 0 8px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.foglalas1-osszesito-breakdown-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
}
.foglalas1-osszesito-breakdown-row svg {
    flex-shrink: 0;
}

.foglalas1-delivery-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e8f4fd;
    border-left: 3px solid #005f9d;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #005f9d;
    margin-top: 4px;
}
.foglalas1-delivery-preview--loading {
    background: #f5f5f5;
    border-left-color: #aaa;
    color: #777;
}
.foglalas1-delivery-spinner {
    animation: foglalas1-spin 0.8s linear infinite;
    flex-shrink: 0;
}
@keyframes foglalas1-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ── SPECIÁLIS JÁRMŰ GOMB ─────────────────────── */
.foglalas1-special-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    border: 1px solid #005f9d;
    background: #fff;
    color: #005f9d;
    padding: 12px 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin-top: 2px;
    transition: background 0.2s;
}
.foglalas1-special-btn:hover {
    background: rgba(0, 95, 157, 0.05);
}
.foglalas1-special-btn svg { flex-shrink: 0; }
.foglalas1-special-btn-arrow { margin-left: auto; }

/* ── MODAL OVERLAY ────────────────────────────── */
.foglalas1-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* ── MODAL BOX ────────────────────────────────── */
.foglalas1-modal {
    background: #fff;
    width: 100%;
    max-width: 972px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
    position: relative;
}

/* ── MODAL FEJLÉC ─────────────────────────────── */
.foglalas1-modal-header {
    padding: 36px 48px 24px;
    text-align: center;
}
.foglalas1-modal-pretitle {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 6px 0 0;
    line-height: 1.5;
}
.foglalas1-modal-title {
    font-size: 30px;
    font-weight: 800;
    color: #005f9d;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}
.foglalas1-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.2s;
    z-index: 1;
}
.foglalas1-modal-close:hover { color: #e74c3c; }

/* ── MODAL TÖRZS ──────────────────────────────── */
.foglalas1-modal-body {
    display: grid;
    grid-template-columns: 1fr 320px;
}
.foglalas1-modal-left {
    padding: 28px 32px;
    border-right: 1px solid #eff1f3;
}
.foglalas1-modal-right {
    padding: 28px 32px;
    background: #fff;
}

/* ── MODAL FORM ELEMEK ────────────────────────── */
.foglalas1-modal-form-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 8px;
}
.foglalas1-modal-form-desc {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    margin: 0 0 18px;
    line-height: 1.5;
}
.foglalas1-modal-input {
    display: block;
    width: 100%;
    background: #eff1f3;
    border: none;
    padding: 14px 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #676767;
    margin-bottom: 8px;
    outline: none;
    box-sizing: border-box;
}
.foglalas1-modal-input:focus { background: #e4e8ec; }
.foglalas1-modal-input::placeholder { color: #9ba3ab; }
.foglalas1-modal-textarea {
    display: block;
    width: 100%;
    background: #eff1f3;
    border: none;
    padding: 14px 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #676767;
    margin-bottom: 12px;
    outline: none;
    resize: vertical;
    box-sizing: border-box;
}
.foglalas1-modal-textarea:focus { background: #e4e8ec; }
.foglalas1-modal-textarea::placeholder { color: #9ba3ab; }
.foglalas1-modal-aszf {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #444;
    cursor: pointer;
    margin-bottom: 16px;
    line-height: 1.5;
}
.foglalas1-modal-submit-btn {
    justify-content: center;
}

/* ── KAPCSOLATI ADATOK ────────────────────────── */
.foglalas1-modal-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
}
.foglalas1-modal-contact-icon {
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background: #005f9d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.foglalas1-modal-contact-label {
    font-size: 16px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 2px;
    line-height: 1.5;
}
.foglalas1-modal-contact-value {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.5;
}

/* ── MODAL SIKER ÜZENET ───────────────────────── */
.foglalas1-modal-success {
    padding: 60px 40px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #27ae60;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
    .foglalas1-main {
        grid-template-columns: 1fr;
    }
    .foglalas1-osszesito-wrap {
        position: static;
        order: -1;
    }
}

@media (max-width: 600px) {
    .foglalas1-step-label { display: none; }
    .foglalas1-step-item { min-width: 40px; }
    .foglalas1-auto-fields { grid-template-columns: 1fr; }
    .foglalas1-form-grid { grid-template-columns: 1fr; }
    .foglalas1-code-row { flex-direction: column; }
    .foglalas1-fizetes-options { flex-direction: column; }
    .foglalas1-progress { gap: 0; }
    .foglalas1-step-num,
    .foglalas1-step-title { font-size: inherit; }
    .foglalas1-step-title { font-size: 18px; }
    .foglalas1-size-cards { grid-template-columns: 1fr; }
    .foglalas1-size-card:not(:first-child) { border-left: 1px solid #e0e0e0; border-top: none; }
    .foglalas1-radio-options.is-horizontal { flex-direction: column; gap: 8px; }
    .foglalas1-modal-body { grid-template-columns: 1fr; }
    .foglalas1-modal-left { border-right: none; border-bottom: 1px solid #eff1f3; }
    .foglalas1-modal-header { padding: 20px 18px 16px; }
    .foglalas1-modal-left,
    .foglalas1-modal-right { padding: 20px 18px; }
    .foglalas1-slot-taken-modal { padding: 32px 20px; }
    .foglalas1-slot-taken-title { font-size: 18px; }
    .foglalas1-slot-taken-desc { font-size: 14px; }
}

/* ── FOGLALT IDŐPONT MODAL ────────────────────────── */
.foglalas1-slot-taken-modal {
    max-width: 972px;
    padding: 48px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.foglalas1-slot-taken-icon {
    width: 141px;
    height: 141px;
    border-radius: 50%;
    background: #e74c3c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.foglalas1-slot-taken-x {
    position: relative;
    width: 23px;
    height: 62px;
}
.foglalas1-slot-taken-x::before,
.foglalas1-slot-taken-x::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 23px;
    height: 62px;
    background: #fff;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(45deg);
}
.foglalas1-slot-taken-x::after {
    transform: translate(-50%, -50%) rotate(135deg);
}
.foglalas1-slot-taken-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #1a1a1a;
    margin: 0;
}
.foglalas1-slot-taken-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 0;
    max-width: 700px;
}
.foglalas1-slot-taken-btn {
    background: linear-gradient(64deg, #005f9d 21%, #009aff 127%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.15s;
}
.foglalas1-slot-taken-btn:hover {
    opacity: 0.9;
}

/* ── GARÁZS / MENTETT AUTÓK ─────────────────────── */
.foglalas1-garage-bar {
    background: #f0f7ff;
    border: 1px solid #c8dff5;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 18px;
}
.foglalas1-garage-all-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #005f9d;
    margin: 0;
}
.foglalas1-garage-checkbox {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #005f9d;
}
.foglalas1-save-garage-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #005f9d;
    cursor: pointer;
}

/* ── GARÁZS DROPDOWN ─────────────────────────── */
[x-cloak] { display: none !important; }

.foglalas1-rendszam-bar { position: relative; }

.foglalas1-garage-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 120;
    background: #fff;
    border: 1px solid #d0d7e0;
    border-top: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
    max-height: 240px;
    overflow-y: auto;
}
.foglalas1-garage-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.12s;
}
.foglalas1-garage-dropdown-item:last-child { border-bottom: none; }
.foglalas1-garage-dropdown-item:hover { background: #f0f7ff; }
.foglalas1-garage-dropdown-plate {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #1a1a2e;
}
.foglalas1-garage-dropdown-size {
    font-size: 12px;
    font-weight: 500;
    color: #888;
    text-align: right;
    flex-shrink: 0;
}

.foglalas1-garage-dropdown-empty {
    padding: 10px 14px;
    font-size: 13px;
    color: #aaa;
    font-style: italic;
    font-family: 'Montserrat', sans-serif;
}
