/* ===== LOCATION MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: white;
    border-radius: 8px;
    padding: 24px;
    width: 420px;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.modal-close {
    font-size: 18px;
    cursor: pointer;
    color: #555;
}

.modal-close:hover {
    color: #111;
}

.modal-sub {
    font-size: 13px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.5;
}

.modal-signin-btn {
    width: 100%;
    background: linear-gradient(to bottom, #f7dfa5, #f0c14b);
    border: 1px solid #a88734;
    border-radius: 4px;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #111;
    margin-bottom: 14px;
}

.modal-signin-btn:hover {
    background: linear-gradient(to bottom, #f5d78e, #eeb933);
}

.modal-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0;
    color: #888;
    font-size: 13px;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}

.modal-zip {
    display: flex;
    gap: 8px;
    margin-bottom: 4px;
}

.zip-input {
    flex: 1;
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 14px;
    outline: none;
}

.zip-input:focus {
    border-color: #e77600;
    box-shadow: 0 0 0 2px rgba(231,118,0,0.3);
}

.apply-btn {
    background: linear-gradient(to bottom, #f7dfa5, #f0c14b);
    border: 1px solid #a88734;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    color: #111;
}

.apply-btn:hover {
    background: linear-gradient(to bottom, #f5d78e, #eeb933);
}

.country-select {
    width: 100%;
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: 9px 10px;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    background: white;
    margin-bottom: 16px;
}

.country-select:focus {
    border-color: #e77600;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
}

.done-btn {
    background: linear-gradient(to bottom, #f7dfa5, #f0c14b);
    border: 1px solid #a88734;
    border-radius: 4px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #111;
}

.done-btn:hover {
    background: linear-gradient(to bottom, #f5d78e, #eeb933);
}
