/* Nice Homes Realtors — sticky Call + WhatsApp CTA (left bottom) */

.nhr-sticky-cta {
    position: fixed;
    left: 20px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.nhr-sticky-cta__btn {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px 0 14px;
    border-radius: 999px;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    box-shadow: 0 10px 28px rgba(20, 20, 20, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.nhr-sticky-cta__btn:hover,
.nhr-sticky-cta__btn:focus-visible {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(20, 20, 20, 0.26);
}

.nhr-sticky-cta__btn--call {
    background-color: var(--theme-color, #c62828);
}

.nhr-sticky-cta__btn--call:hover,
.nhr-sticky-cta__btn--call:focus-visible {
    background-color: #a81f1f;
}

.nhr-sticky-cta__btn--whatsapp {
    background-color: var(--nhr-whatsapp, #25D366);
}

.nhr-sticky-cta__btn--whatsapp:hover,
.nhr-sticky-cta__btn--whatsapp:focus-visible {
    background-color: var(--nhr-whatsapp-hover, #128C7E);
}

.nhr-sticky-cta__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    font-size: 16px;
    flex-shrink: 0;
}

.nhr-sticky-cta__label {
    white-space: nowrap;
    padding-right: 2px;
}

@media (max-width: 575px) {
    .nhr-sticky-cta {
        left: 14px;
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }

    .nhr-sticky-cta__btn {
        min-height: 44px;
        padding: 0 14px 0 12px;
        font-size: 13px;
    }

    .nhr-sticky-cta__icon {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nhr-sticky-cta__btn {
        transition: none;
    }

    .nhr-sticky-cta__btn:hover,
    .nhr-sticky-cta__btn:focus-visible {
        transform: none;
    }
}
