/* Dropp Shipping – Location picker styles */

.dropp-hidden { display: none !important; }

/* Modal overlay */
.dropp-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.dropp-modal-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,.5);
}

.dropp-modal-content {
    position: relative;
    background: #fff;
    border-radius: 6px;
    width: 90%;
    max-width: 520px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px rgba(0,0,0,.25);
    z-index: 1;
}

.dropp-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid #ddd;
}

.dropp-modal-header h4 { margin: 0; font-size: 1rem; }

.dropp-modal-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    color: #666;
}
.dropp-modal-close:hover { color: #000; }

.dropp-modal-body {
    padding: 14px 18px;
    overflow-y: auto;
    flex: 1;
}

/* Location list */
.dropp-location-ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropp-location-item {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: background .15s;
}
.dropp-location-item:hover { background: #f0f7ff; }
.dropp-location-item:last-child { border-bottom: none; }

.dropp-loc-name { font-weight: 600; font-size: .9rem; }
.dropp-loc-address { font-size: .8rem; color: #666; margin-top: 2px; }

/* Chosen location box */
.dropp-chosen-location { margin-top: 8px; font-size: .9rem; }
.dropp-no-location { margin-top: 8px; }

/* Spinner */
.dropp-loading { color: #666; font-style: italic; }
