/* ------------------------------------------------
   PawLife Locale Modal
------------------------------------------------ */

.pawlife-locale-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.pawlife-locale-modal.is-active {
    display: block;
}

.pawlife-locale-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 25, 22, 0.58);
    backdrop-filter: blur(4px);
}

.pawlife-locale-dialog {
    position: relative;
    width: calc(100% - 32px);
    max-width: 520px;
    margin: 8vh auto 0;
    background: #f8f5ef;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
    z-index: 2;
    font-family: 'Inter', sans-serif;
}

.pawlife-locale-dialog h2 {
    margin: 0 0 10px;
    color: #1f3d33;
    font-size: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.pawlife-locale-dialog p {
    margin: 0 0 24px;
    color: #5b645f;
    font-size: 15px;
    line-height: 1.6;
}

.pawlife-locale-field {
    margin-bottom: 18px;
}

.pawlife-locale-field label {
    display: block;
    margin-bottom: 8px;
    color: #1f3d33;
    font-weight: 600;
    font-size: 14px;
}

.pawlife-locale-field select {
    width: 100%;
    height: 48px;
    border: 1px solid rgba(31, 61, 51, 0.15);
    border-radius: 12px;
    padding: 0 14px;
    background: #fff;
    color: #1f3d33;
    font-size: 15px;
    outline: none;
}

.pawlife-locale-save {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 999px;
    background: #1f3d33;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.pawlife-locale-save:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.pawlife-locale-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #1f3d33;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

body.modal-open {
    overflow: hidden;
}