/* Wishlist Header Styles */

/* Main wishlist container */
.h_r_b_like {
    display: inline-block;
    margin-right: 16px;
}

.h_r_b_like a {
    text-decoration: none;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
}

/* Image container with relative positioning for absolute counter */
.h_r_b_like_img {
    position: relative;
    display: inline-block;
}

/* Counter badge positioned over heart icon */
.h_r_b_like_abs {
    position: absolute;
    top: -5px;
    right: -15px;
    background: #28ABD8;
    color: #fff;
    padding: 3px 5px;
    border-radius: 99px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 11px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(40, 171, 216, 0.3);
    z-index: 2;
}

/* Hide counter by default */
.h_r_b_like_abs:empty {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .h_r_b_like {
        margin-right: 12px;
    }

    .h_r_b_like_abs {
        top: -3px;
        right: -10px;
        font-size: 10px;
        min-width: 16px;
        height: 16px;
        padding: 2px 4px;
    }
}

/* Hover effects */
.h_r_b_like:hover .h_r_b_like_abs {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Animation for counter updates */
.h_r_b_like_abs {
    transition: all 0.3s ease;
}

.h_r_b_like_abs.updating {
    animation: pulse 0.3s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}