/* Favourite / Wishlist Button */
.post__favourite-btn {
    position: absolute; /* now relative to .post__media */
    bottom: 22px;  /* slightly below the mute/play toggle */
    right: 22px;   /* align with mute button horizontally */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 25;           /* above swiper content but below any modals/lightbox */
    transition: transform 0.2s ease, color 0.2s ease;
}

.post__favourite-btn:hover {
    transform: scale(1.2);
    color: #e63946; /* red heart on hover */
}

/* Optional: filled heart when favourited */
.post__favourite-btn.favourited i {
    color: #e63946;
}


@media (max-width: 768px) {
    .post__favourite-btn {
        align-items: center;
        ustify-content: center;
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
        bottom: 24px;   /* adjust spacing */
        right: 17px;
    }
}

