.abandon-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInOverlay 0.2s ease;
    padding: 1rem;
}

.abandon-popup {
    background: #fff;
    border-radius: 22px;
    padding: 1.8rem 1.6rem;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.25s ease;
    position: relative;
}

.abandon-popup .abandon-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.abandon-popup .abandon-icon {
    width: 56px;
    height: 56px;
    background: #fff3d6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fda701;
    margin: 0 auto 1rem;
}

.abandon-popup h5 {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.abandon-popup p {
    color: #666;
    font-size: 0.88rem;
    margin-bottom: 1.3rem;
    line-height: 1.5;
}

.abandon-popup .btn-abandon-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.75rem 1.4rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    width: 100%;
    transition: 0.2s;
}

.btn-abandon-whatsapp:hover {
    background: #1ea952;
    color: #fff;
}

.abandon-popup .abandon-dismiss {
    display: block;
    margin-top: 0.8rem;
    font-size: 0.8rem;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 576px) {
    #miniTestimonialsContainer {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 6px;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        padding-left: 0.5rem;
        padding-right: 1.5rem;
    }

    #miniTestimonialsContainer::-webkit-scrollbar {
        display: none;
    }

    #miniTestimonialsContainer .mini-testimonial-col {
        flex: 0 0 82%;
        max-width: 82%;
        scroll-snap-align: start;
    }

    .mini-testimonial-card {
        height: auto;
        min-height: 150px;
    }
}