/* ── ADRES DROPDOWN — JET TEMA ── */
.adres-select-wrapper { position: relative; width: 100%; }
.adres-select-wrapper .adres-display-input { cursor: pointer; }
.adres-select-wrapper .adres-display-input[disabled],
.adres-select-wrapper .adres-display-input:disabled { cursor: not-allowed; opacity: 0.6; background: #f3f4f6 !important; }
.adres-select-wrapper .adres-display-input.loading {
    background-image: url('../images/loading.gif') !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    background-size: 18px 18px !important;
}
.adres-dropdown-panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 99999;
    background: #fff;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(17,24,39,0.13);
    overflow: hidden;
    max-height: 320px;
    flex-direction: column;
    display: none;
    visibility: hidden;
}
.adres-search-box {
    padding: 10px 12px 8px;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
    flex-shrink: 0;
}
.adres-search-box input {
    width: 100%;
    border: 1.5px solid #d1d5db;
    border-radius: 7px;
    padding: 7px 12px;
    font-size: 13px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    color: #111827;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.adres-search-box input:focus { border-color: #111827; }
.adres-list { overflow-y: auto; flex: 1; max-height: 240px; }
.adres-list-item {
    padding: 9px 14px;
    font-size: 13.5px;
    color: #374151;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background 0.15s;
}
.adres-list-item:last-child { border-bottom: none; }
.adres-list-item:hover { background: #f0f4ff; color: #111827; }
.adres-list-item.selected { background: #111827; color: #fff; font-weight: 600; }
.adres-list-empty { padding: 14px; text-align: center; color: #9ca3af; font-size: 13px; font-family: 'Poppins', sans-serif; }
.adres-list-error { padding: 14px; text-align: center; color: #ef4444; font-size: 13px; font-family: 'Poppins', sans-serif; }
.adres-fallback-input { display: none !important; }
.adres-fallback-input.visible { display: block !important; margin-top: 6px; }
@media (max-width: 576px) {
    .adres-dropdown-panel { max-height: 260px; }
    .adres-list { max-height: 190px; }
}