.like-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.like-button i {
    color: #ff4d4d;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.like-button:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 7px rgba(0,0,0,0.3);
}

.like-button.liked i {
    animation: likeEffect 0.5s ease;
}

.like-count {
    position: absolute;
    bottom: 10px;
    right: 35px;
    color: #fff;
    font-size: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 3px 6px;
    border-radius: 10px;
    z-index: 2;
}

@keyframes likeEffect {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.img-section {
    position: relative;
    margin-bottom: 20px;
}