/* ═══════════════════════════════════════════════
   Komentované Prechádzky — Frontend
   Primárna farba: #000000
   Font: Montserrat 400 (text) / 600 (nadpisy)
═══════════════════════════════════════════════ */

.kp-booking-wrap {
    max-width: 680px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400 !important;
}

/* Všetky elementy dedia Montserrat */
.kp-booking-wrap *,
.kp-booking-wrap input,
.kp-booking-wrap select,
.kp-booking-wrap button,
.kp-booking-wrap label {
    font-family: 'Montserrat', sans-serif !important;
}

/* ── Nadpis kroku ── */
.kp-step-title {
    font-size: 1.25em !important;
    font-weight: 600 !important;
    margin: 0 0 20px !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid #000 !important;
    color: #000 !important;
}

/* ── Loading ── */
.kp-loading {
    padding: 24px;
    text-align: center;
    color: #888;
    font-size: 0.95em;
}

/* ── Zoznam termínov ── */
.kp-walks-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kp-walk-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px 20px;
    background: #fff;
    cursor: pointer;
    transition: border-color .18s, box-shadow .18s;
}
.kp-walk-card:hover {
    border-color: #000;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}

.kp-walk-card-info {}

.kp-walk-card-date {
    font-weight: 600 !important;
    font-size: 1.05em;
    color: #000;
    margin-bottom: 3px;
}

.kp-walk-card-meeting {
    font-size: 0.88em;
    color: #666;
}

.kp-walk-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.kp-spots-badge {
    font-size: 0.85em;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
}
.kp-spots-badge.kp-few { color: #c0392b; }

.kp-select-btn {
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 100px !important;
    padding: 9px 20px !important;
    font-size: 0.9em !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    white-space: nowrap;
    transition: background .18s !important;
    text-decoration: none !important;
    display: inline-block;
    line-height: 1.4;
}
.kp-select-btn:hover {
    background: #333 !important;
    color: #fff !important;
}

.kp-no-walks {
    padding: 28px;
    text-align: center;
    color: #888;
    border: 2px dashed #ddd;
    border-radius: 12px;
    font-size: 0.95em;
}

/* ── Info o vybranom termíne ── */
.kp-selected-walk-info {
    background: #f5f5f5;
    border-left: 4px solid #000;
    border-radius: 0 8px 8px 0;
    padding: 12px 18px;
    margin-bottom: 22px;
    font-size: 0.93em;
    color: #333;
    line-height: 1.6;
}

/* ── Formulárové riadky ── */
.kp-form-row {
    margin-bottom: 16px;
}

.kp-form-two-col {
    display: flex;
    gap: 14px;
}

.kp-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.kp-field label {
    font-weight: 600 !important;
    font-size: 0.9em !important;
    color: #222 !important;
}

.kp-field input,
.kp-field select {
    border: 1.5px solid #ccc !important;
    border-radius: 8px !important;
    padding: 10px 13px !important;
    font-size: 0.97em !important;
    color: #000 !important;
    background: #fff !important;
    width: 100%;
    transition: border-color .18s, box-shadow .18s;
    box-shadow: none !important;
}
.kp-field input:focus,
.kp-field select:focus {
    border-color: #000 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.08) !important;
}

.kp-field-narrow {
    max-width: 130px;
}

.kp-price-display {
    display: flex;
    align-items: flex-end;
    padding-bottom: 10px;
    font-size: 1em;
    color: #333;
    gap: 6px;
}
.kp-price-display strong {
    font-size: 1.2em;
    font-weight: 600 !important;
    color: #000;
}

/* ── Upozornenie ── */
.kp-form-notice {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.88em;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ── Akcie formulára ── */
.kp-form-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* ── Tlačidlá ── */
.kp-btn {
    display: inline-block;
    border-radius: 100px !important;
    padding: 12px 26px !important;
    font-size: 0.97em !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background .18s, transform .1s !important;
    text-decoration: none !important;
    border: none !important;
    line-height: 1.4;
}
.kp-btn:active { transform: scale(0.97); }

.kp-btn-primary {
    background: #000 !important;
    color: #fff !important;
}
.kp-btn-primary:hover {
    background: #333 !important;
    color: #fff !important;
}

.kp-btn-outline {
    background: transparent !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    padding: 10px 24px !important;
}
.kp-btn-outline:hover {
    background: #f5f5f5 !important;
    color: #000 !important;
}

/* ── Chybová správa ── */
.kp-form-error {
    margin-top: 12px;
    background: #fdecea;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 11px 15px;
    color: #b71c1c;
    font-size: 0.92em;
}

/* ── Úspech ── */
.kp-success {
    text-align: center;
    padding: 10px 0;
}

.kp-success-icon {
    width: 64px;
    height: 64px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.kp-success h3 {
    font-size: 1.4em !important;
    font-weight: 600 !important;
    color: #000 !important;
    margin-bottom: 10px !important;
}

.kp-success p {
    color: #555;
    margin-bottom: 6px;
}

.kp-payment-box {
    background: #f5f5f5;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 22px 28px;
    margin-top: 22px;
    display: inline-block;
    min-width: 300px;
    text-align: left;
}
.kp-payment-box p { margin-bottom: 10px; color: #444; font-size: 0.93em; }

/* ── Responsive ── */
@media (max-width: 560px) {
    .kp-form-two-col { flex-direction: column; }
    .kp-walk-card    { flex-direction: column; align-items: flex-start; }
    .kp-walk-card-right { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
    .kp-form-actions { flex-direction: column; align-items: stretch; }
    .kp-btn          { text-align: center; }
    .kp-field-narrow { max-width: 100%; }
    .kp-payment-box  { min-width: unset; width: 100%; box-sizing: border-box; }
}
