.clrs-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(18, 25, 18, 0.78);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    box-sizing: border-box;
}

.clrs-overlay.clrs-visible {
    display: flex;
}

.clrs-overlay.clrs-embedded {
    position: relative;
    inset: auto;
    display: flex;
    min-height: 480px;
    background: #f3f1e8;
}

.clrs-modal {
    width: min(100%, 760px);
    padding: 46px 42px 38px;
    border-radius: 28px;
    background: #fffdf6;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.30);
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    box-sizing: border-box;
}

.clrs-brand {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #234d2f;
    color: #fff7d5;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 2px;
}

.clrs-modal h2 {
    margin: 0;
    color: #173c25;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    font-weight: 800;
}

.clrs-subtitle {
    max-width: 590px;
    margin: 14px auto 30px;
    color: #5f665f;
    font-size: 17px;
    line-height: 1.55;
}

.clrs-locations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.clrs-location-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 112px;
    padding: 22px 20px;
    border: 1px solid rgba(35, 77, 47, 0.15);
    border-radius: 20px;
    background: #ffffff;
    color: #173c25 !important;
    text-align: left;
    text-decoration: none !important;
    box-shadow: 0 9px 25px rgba(23, 60, 37, 0.08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    box-sizing: border-box;
}

.clrs-location-card:hover,
.clrs-location-card:focus {
    transform: translateY(-3px);
    border-color: #c69632;
    box-shadow: 0 14px 32px rgba(23, 60, 37, 0.16);
    outline: none;
}

.clrs-pin {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #234d2f;
    color: #e2b552;
    font-size: 17px;
}

.clrs-location-copy {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.clrs-location-copy strong {
    font-size: 19px;
    line-height: 1.25;
    font-weight: 800;
}

.clrs-location-copy small {
    margin-top: 6px;
    color: #8a6a26;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.clrs-arrow {
    color: #b48424;
    font-size: 24px;
    transition: transform .2s ease;
}

.clrs-location-card:hover .clrs-arrow {
    transform: translateX(4px);
}

.clrs-note {
    margin: 25px 0 0;
    color: #7a7f79;
    font-size: 13px;
    line-height: 1.45;
}

body.clrs-lock-scroll {
    overflow: hidden !important;
}

@media (max-width: 680px) {
    .clrs-overlay {
        padding: 16px;
    }

    .clrs-modal {
        padding: 34px 20px 26px;
        border-radius: 22px;
    }

    .clrs-locations {
        grid-template-columns: 1fr;
    }

    .clrs-location-card {
        min-height: 96px;
    }

    .clrs-subtitle {
        font-size: 15px;
        margin-bottom: 23px;
    }
}
