.sd-like-wrapper {
    position: relative;
    display: inline-block;
}

.sd-like-button {
    border: none;
    background: #f1f1f1;
    color: #333;
    border-radius: 30px;
    padding: 8px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s ease;
    font-size: 15px;
}

.sd-like-button:hover {
    background: #FFF4E8;
}

.sd-like-button.liked {
    background: #E95B30;
    color: #fff;
}

.sd-tooltip {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sd-tooltip.show {
    opacity: 1;
}
