/**
 * ============================================================================
 * SEARCH-FORM.CSS
 * ============================================================================
 * Stiluri partajate pentru formularul de cautare
 * Folosit pe: homepage (index.php), pagina zona, pagina hotel
 * ============================================================================
 */

/* =============================================
   SEARCH BOX - cutia alba
   ============================================= */
.search-box-index {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
}

/* ====== TABURI ====== */
.search-tabs {
    display: flex;
    background: #f1f5f9;
    border-bottom: 2px solid #e2e8f0;
    border-radius: 16px 16px 0 0;
}
.search-tab {
    flex: 1;
    padding: 14px 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}
.search-tab:hover { color: #1680FF; background: rgba(22,128,255,0.04); }
.search-tab:first-child { border-radius: 16px 0 0 0; }
.search-tab:last-child { border-radius: 0 16px 0 0; }
.search-tab.active {
    color: #1680FF;
    background: #fff;
    border-bottom-color: #1680FF;
}
.search-tab i { font-size: 1rem; }

/* ====== PANELURI TAB ====== */
.search-tab-panel { display: none; padding: 24px 28px 26px; }
.search-tab-panel.active { display: block; }

/* ====== RAND CAMPURI (flexbox) ====== */
.search-row {
    display: flex;
    gap: 14px;
    align-items: flex-end;
    flex-wrap: wrap;
}

/* Camp generic */
.search-field {
    display: flex;
    flex-direction: column;
    position: relative;
}
.search-field label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.search-field label i { color: #1680FF; margin-right: 4px; }

/* Largimi campuri (pe desktop) */
.sf-dest      { flex: 2; min-width: 200px; }
.sf-dest-wide { flex: 2.5; min-width: 240px; }
.sf-data      { flex: 1.1; min-width: 130px; }
.sf-data-range { flex: 1.6; min-width: 200px; }
.sf-transport { flex: 1.3; min-width: 160px; }
.sf-nopti     { flex: 0.7; min-width: 95px; }
.sf-luna      { flex: 1.3; min-width: 160px; }
.sf-pers      { flex: 1.2; min-width: 160px; }
.sf-btn       { flex: 0 0 auto; }

/* ====== INPUT GENERAL ====== */
.sf-input {
    height: 48px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e293b;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.sf-input:focus {
    outline: none;
    border-color: #1680FF;
    box-shadow: 0 0 0 3px rgba(22,128,255,0.12);
}
.sf-input::placeholder { color: #94a3b8; font-weight: 400; }

/* Input cu iconita la dreapta */
.input-icon-wrap { position: relative; }
.input-icon-wrap .sf-input { padding-right: 38px; }
.input-icon-right {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.85rem;
    pointer-events: none;
}

/* Select dropdown (transport, nopti, adulti, copii) */
select.sf-input {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8.5L1 3.5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

/* ====== SELECT2 in search form ====== */
.search-field .select2-container {
    width: 100% !important;
}
.search-field .select2-container .select2-selection--single {
    height: 48px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.search-field .select2-container .select2-selection--single:hover {
    border-color: #cbd5e1;
}
.search-field .select2-container--focus .select2-selection--single,
.search-field .select2-container--open .select2-selection--single {
    border-color: #1680FF !important;
    box-shadow: 0 0 0 3px rgba(22,128,255,0.12);
}
.search-field .select2-container .select2-selection__rendered {
    padding: 0;
    line-height: 48px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e293b;
}
.search-field .select2-container .select2-selection__placeholder {
    color: #94a3b8;
    font-weight: 400;
}
.search-field .select2-container .select2-selection__arrow {
    height: 48px;
    right: 10px;
}
/* Select2 disabled */
.search-field .select2-container--disabled .select2-selection--single {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
    cursor: not-allowed;
}
.search-field .select2-container--disabled .select2-selection__rendered {
    color: #94a3b8 !important;
    font-style: italic;
}

/* Select2 dropdown global */
.select2-dropdown {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    margin-top: 4px;
}
.select2-results__option {
    padding: 10px 14px;
    font-size: 0.93rem;
}
.select2-results__option--highlighted[aria-selected] {
    background: #eff6ff !important;
    color: #1680FF !important;
}
.select2-results__option[aria-selected="true"] {
    background: #f1f5f9;
}

/* ====== BUTON CAUTA ====== */
.btn-cauta {
    height: 48px;
    background: linear-gradient(135deg, #1680FF, #0d6ce8);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.2s;
}
.btn-cauta:hover {
    background: linear-gradient(135deg, #0d6ce8, #0a5bcc);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(22,128,255,0.35);
}
.btn-cauta:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ====== AUTOCOMPLETE LISTA ====== */
.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    max-height: 280px;
    overflow-y: auto;
    z-index: 9999;
    list-style: none;
    padding: 6px 0;
    margin: 4px 0 0 0;
    display: none;
}
.autocomplete-list li {
    padding: 11px 16px;
    cursor: pointer;
    font-size: 0.93rem;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s;
}
.autocomplete-list li:last-child { border-bottom:none; }
.autocomplete-list li:hover,
.autocomplete-list li.ac-active {
    background: #eff6ff;
    color: #1680FF;
}
.autocomplete-list li.ac-no-results {
    color: #94a3b8;
    font-style: italic;
    cursor: default;
}
.ac-meta {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}
.autocomplete-list li:hover .ac-meta,
.autocomplete-list li.ac-active .ac-meta {
    color: #3b82f6;
}

/* ====== PERSOANE DROPDOWN (homepage) ====== */
.pers-dropdown { position: relative; }
.pers-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
}
.pers-summary { font-weight: 500; }
.chevron-icon { font-size:0.65rem; color:#94a3b8; margin-left:6px; }
.pers-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    min-width: 280px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    padding: 18px;
    z-index: 9999;
    display: none;
}
.pers-panel.open { display: block; }
.pers-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}
.pers-row:last-of-type { border-bottom: none; }
.pers-label { font-size:0.93rem; color:#334155; font-weight:500; }
.pers-label small { color:#94a3b8; font-weight:400; }
.pers-ctrls { display:flex; align-items:center; gap:12px; }
.ctrl-btn {
    width:36px; height:36px; border-radius:50%;
    border: 2px solid #e2e8f0; background:#fff;
    display:flex; align-items:center; justify-content:center;
    cursor:pointer; color:#1680FF; font-size:0.8rem;
    transition: all 0.2s;
}
.ctrl-btn:hover:not(:disabled) { border-color:#1680FF; background:#eff6ff; }
.ctrl-btn:disabled { opacity:0.3; cursor:not-allowed; }
.ctrl-count {
    font-weight:700; font-size:1.1rem; color:#1e293b;
    min-width:24px; text-align:center;
}
.varste-container { margin-top:8px; }
.varsta-row { margin-bottom:8px; }
.varsta-row label {
    font-size:0.8rem; color:#475569; margin-bottom:3px; display:block;
    text-transform:none; letter-spacing:0; font-weight:500;
}
.select-varsta-idx {
    width:100%; height:38px; border:2px solid #e2e8f0; border-radius:8px;
    padding:0 10px; font-size:0.9rem; color:#334155;
}
.select-varsta-idx:focus { border-color:#1680FF; outline:none; }
.btn-done {
    width:100%; margin-top:12px; padding:10px;
    background:#1680FF; color:#fff; border:none;
    border-radius:8px; font-weight:600; font-size:0.92rem;
    cursor:pointer; transition:background 0.2s;
}
.btn-done:hover { background:#0d6ce8; }

/* ====== QUICK LINKS ====== */
.quick-links-index { text-align:center; margin-top:14px; position:relative; z-index:2; }
.ql-label { color:rgba(255,255,255,0.6); font-size:0.85rem; margin-right:8px; }
.ql-chip {
    display:inline-block; background:rgba(255,255,255,0.12); color:#fff;
    padding:6px 16px; border-radius:20px; font-size:0.85rem;
    text-decoration:none; margin:4px 3px; transition:all 0.2s;
    border:1px solid rgba(255,255,255,0.15);
}
.ql-chip:hover { background:rgba(255,255,255,0.25); color:#fff; transform:translateY(-1px); }

/* ====== ZONA SEARCH - fara taburi, cu titlu ====== */
.search-box-zona {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto 20px;
}
.search-box-zona .search-zona-header {
    padding: 18px 28px 0;
}
.search-box-zona .search-zona-header p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}
.search-box-zona .search-zona-body {
    padding: 16px 28px 22px;
}

/* Varste copii in zona form */
.search-varste-copii {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.search-varste-copii .search-field {
    flex: 1;
    min-width: 100px;
}

/* =============================================
   FLATPICKR CALENDAR - Custom Styling
   ============================================= */
.flatpickr-calendar {
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12) !important;
    border: 1px solid #e2e8f0 !important;
    font-family: 'Noto Sans', sans-serif;
}
.flatpickr-months .flatpickr-month {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.flatpickr-current-month {
    font-weight: 600; color: #1e293b; font-size: 0.95rem;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    color: #64748b; border-radius: 8px; transition: all 0.15s;
}
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    background: #eff6ff; color: #1680FF;
}
span.flatpickr-weekday {
    color: #94a3b8 !important; font-weight: 600 !important;
    font-size: 0.7rem !important; text-transform: uppercase;
}
.flatpickr-day {
    border-radius: 8px; font-weight: 500; transition: all 0.15s;
}
.flatpickr-day:hover:not(.flatpickr-disabled) {
    background: #eff6ff; border-color: #eff6ff; color: #1680FF;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #1680FF !important; border-color: #1680FF !important;
    color: #fff !important; font-weight: 700;
}
.flatpickr-day.inRange {
    background: #dbeafe !important; border-color: #dbeafe !important;
    color: #1e293b;
}
.flatpickr-day.today:not(.selected) {
    border-color: #1680FF !important; color: #1680FF;
}
.flatpickr-day.flatpickr-disabled {
    background: #fff !important; color: #cbd5e1 !important;
    text-decoration: none !important;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .search-row {
        flex-direction: column;
    }
    .search-field {
        width: 100% !important;
        flex: none !important;
    }
    .btn-cauta {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .search-box-index {
        border-radius: 12px;
    }
    .search-tab-panel { padding: 16px 14px 18px; }
    .search-tab { padding: 11px 6px; font-size: 0.85rem; gap: 5px; }
    .search-tab i { font-size: 0.85rem; }
    .search-box-zona {
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .search-box-zona .search-zona-header { padding: 14px 16px 0; }
    .search-box-zona .search-zona-body { padding: 12px 16px 16px; }
}

/* Flatpickr mobil */
@media (max-width: 768px) {
    .flatpickr-calendar {
        width: calc(100vw - 24px) !important;
        max-width: none !important;
        margin-left: 12px !important;
        margin-right: 12px !important;
        left: 0 !important;
        right: 0 !important;
    }
    .flatpickr-day {
        height: 48px; line-height: 48px;
        max-width: none; flex-basis: 14.28%;
        font-size: 1.05rem;
    }
    .flatpickr-months .flatpickr-prev-month,
    .flatpickr-months .flatpickr-next-month {
        padding: 8px 12px;
    }
}

/* =============================================
   ZONA MOBIL - Summary bar + Modal fullscreen
   ============================================= */

/* Summary bar compact */
.search-summary-zona {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin: 8px 0 12px;
    background: linear-gradient(135deg, #1680FF 0%, #0d6ce8 100%);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(22,128,255,0.3);
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.search-summary-zona:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(22,128,255,0.3);
}
.search-summary-zona .summary-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    flex-shrink: 0;
}
.search-summary-zona .summary-content {
    flex: 1;
    min-width: 0;
}
.search-summary-zona .summary-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}
.search-summary-zona .summary-text {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-summary-zona .summary-text.has-data {
    white-space: normal;
    overflow: visible;
}
.search-summary-zona .summary-arrow {
    display: flex;
    align-items: center;
    opacity: 0.8;
    flex-shrink: 0;
}

/* Modal fullscreen */
.search-modal-zona-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: background-color 0.3s ease, visibility 0.3s, opacity 0.3s;
}
.search-modal-zona-overlay.active {
    visibility: visible;
    opacity: 1;
    background-color: rgba(0,0,0,0.5);
}

.search-modal-zona {
    position: relative;
    width: 100%;
    height: 90vh;
    max-height: 90vh;
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 25px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.search-modal-zona.active {
    transform: translateY(0);
}

/* Modal header */
.search-modal-zona-header {
    position: relative;
    padding: 12px 20px 16px;
    background: #fafafa;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
}
.search-modal-zona-header .swipe-line {
    width: 40px; height: 4px;
    background: #cbd5e1;
    border-radius: 2px;
    margin-bottom: 12px;
}
.search-modal-zona-header .modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    text-align: center;
    padding-right: 40px;
    width: 100%;
}
.search-modal-zona-header .modal-subtitle {
    font-size: 13px;
    color: #64748b;
    margin: 4px 0 0;
    text-align: center;
    padding-right: 40px;
    width: 100%;
}
.search-modal-zona-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
}
.search-modal-zona-close:active { background: #f1f5f9; }

/* Modal content */
.search-modal-zona-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
}

/* Modal footer cu buton */
.search-modal-zona-footer {
    padding: 16px 20px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    border-top: 1px solid #e2e8f0;
}
.search-modal-zona-footer .btn-cauta-mobil {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, #1680FF, #0d6ce8);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}
.search-modal-zona-footer .btn-cauta-mobil:disabled {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    cursor: not-allowed;
}

/* Form fields in modal */
.search-modal-zona-content .mobile-field {
    margin-bottom: 16px;
}
.search-modal-zona-content .mobile-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.search-modal-zona-content .mobile-field label i { color: #1680FF; }
.search-modal-zona-content .mobile-field select,
.search-modal-zona-content .mobile-field input[type="text"] {
    width: 100%;
    height: 48px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e293b;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
}
.search-modal-zona-content .mobile-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8.5L1 3.5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}
.search-modal-zona-content .mobile-field select:focus,
.search-modal-zona-content .mobile-field input[type="text"]:focus {
    outline: none;
    border-color: #1680FF;
    box-shadow: 0 0 0 3px rgba(22,128,255,0.12);
}
.search-modal-zona-content .mobile-field input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Select2 in mobile-field (si modal zona) */
.mobile-field .select2-container,
.search-modal-zona .select2-container {
    width: 100% !important;
}
.mobile-field .select2-container .select2-selection--single,
.search-modal-zona .select2-container .select2-selection--single {
    height: 48px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.mobile-field .select2-container--focus .select2-selection--single,
.mobile-field .select2-container--open .select2-selection--single {
    border-color: #1680FF !important;
    box-shadow: 0 0 0 3px rgba(22,128,255,0.12);
}
.mobile-field .select2-container .select2-selection__rendered,
.search-modal-zona .select2-container .select2-selection__rendered {
    padding: 0;
    line-height: 48px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e293b;
}
.mobile-field .select2-container .select2-selection__arrow,
.search-modal-zona .select2-container .select2-selection__arrow {
    height: 48px;
    right: 10px;
}
.select2-container--open .select2-dropdown {
    z-index: 1000000 !important;
}

/* Persoane dropdown in modal mobil — inline, nu absolut */
.search-modal-zona-content .pers-panel {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 12px 0 0 0;
    display: block;
    min-width: auto;
}
.search-modal-zona-content .pers-toggle {
    display: none !important;
}
.search-modal-zona-content .pers-row {
    padding: 8px 0;
}
.search-modal-zona-content .btn-done {
    display: none;
}
.search-modal-zona-content .varsta-row select {
    width: 100%;
    height: 44px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 0.9rem;
    color: #334155;
}

/* Loading overlay zona mobil */
.search-loading-zona {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.search-loading-zona.active {
    opacity: 1;
    visibility: visible;
}
.search-loading-zona .loading-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 300px;
}
.search-loading-zona .loading-spinner { margin-bottom: 24px; }
.search-loading-zona .loading-title {
    font-size: 20px; font-weight: 700; color: #1e293b; margin: 0 0 8px;
}
.search-loading-zona .loading-subtitle {
    font-size: 14px; color: #64748b; margin: 0 0 24px; line-height: 1.5;
}
.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.loading-dots span {
    width: 10px; height: 10px;
    background: #1680FF;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse-dot {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1); }
}

/* Punct verde pe zilele disponibile (calendar flatpickr) */
.flatpickr-day .date-dot {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
    margin: 1px auto 0;
    pointer-events: none;
}
.flatpickr-day.selected .date-dot,
.flatpickr-day.startRange .date-dot,
.flatpickr-day.endRange .date-dot {
    background: rgba(255,255,255,0.7);
}
