.home-around-you-prompt {
    border: 1px solid color-mix(in srgb, var(--theme-border) 72%, var(--theme-accent) 28%);
    border-radius: 16px;
    background:
        radial-gradient(120% 140% at 0% 0%, color-mix(in srgb, var(--theme-accent) 13%, transparent), transparent 58%),
        radial-gradient(120% 140% at 100% 100%, color-mix(in srgb, var(--theme-title) 8%, transparent), transparent 62%),
        color-mix(in srgb, var(--theme-surface) 88%, var(--theme-bg) 12%);
    box-shadow: 0 14px 32px color-mix(in srgb, var(--theme-bg) 78%, transparent);
}

.home-around-you-prompt__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.home-around-you-prompt__content {
    min-width: 220px;
    flex: 1 1 320px;
}

.home-around-you-prompt__eyebrow {
    margin-bottom: 0.2rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--theme-text-muted) 70%, var(--theme-accent) 30%);
}

.home-around-you-prompt__title {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--theme-title);
}

.home-around-you-prompt__title-icon {
    width: 1.05rem;
    height: 1.05rem;
    color: var(--theme-accent);
}

.home-around-you-prompt__text {
    margin: 0;
    color: color-mix(in srgb, var(--theme-text) 88%, var(--theme-text-muted) 12%);
    line-height: 1.45;
}

.home-around-you-prompt__action {
    border: 1px solid color-mix(in srgb, var(--theme-accent) 66%, var(--theme-border) 34%);
    background: color-mix(in srgb, var(--theme-accent) 16%, var(--theme-surface) 84%);
    color: var(--theme-title);
    border-radius: 999px;
    padding: 0.52rem 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.home-around-you-prompt__action:hover,
.home-around-you-prompt__action:focus-visible {
    border-color: var(--theme-accent);
    background: color-mix(in srgb, var(--theme-accent) 24%, var(--theme-surface) 76%);
    color: var(--theme-title);
}

body.home-location-modal-open {
    overflow: hidden;
}

.home-location-modal {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.home-location-modal.d-none {
    display: none !important;
}

.home-location-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.46);
}

.home-location-modal__card {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    max-height: min(88vh, 760px);
    overflow: auto;
    border: 1px solid var(--theme-border);
    border-radius: 18px;
    padding: 16px;
    background: var(--theme-bg);
    color: var(--theme-text);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.home-location-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-location-modal__title {
    margin: 0;
    font-size: 1.2rem;
    color: var(--theme-title);
}

.home-location-modal__close {
    border: 1px solid var(--theme-border);
    background: transparent;
    color: var(--theme-text);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 0.86rem;
    font-weight: 600;
}

.home-location-modal__close:hover {
    border-color: var(--theme-accent);
}

.home-location-modal__intro {
    margin: 10px 0 12px;
    color: var(--theme-text-muted);
    font-size: 0.92rem;
}

.home-location-modal__section {
    margin-top: 0;
}

@media (max-width: 640px) {
    .home-around-you-prompt__action {
        width: 100%;
    }

    .home-around-you-prompt {
        border-radius: 14px;
    }

    .home-location-modal {
        padding: 10px;
    }

    .home-location-modal__card {
        max-height: 94vh;
        padding: 12px;
    }
}
