.coupon-like {
    position: absolute;
    top: 5px;
    right: 2px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    border: none;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1;
    color: #9aa0a6;
}

.cl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-size: inherit;
    line-height: 1;
    color: #9aa0a6;
    transition: color 0.2s ease, transform 0.15s ease;
}

.cl-btn:hover {
    transform: scale(1.15);
}

.cl-btn:focus,
.cl-btn:active {
    outline: none;
    box-shadow: none;
}

.coupon-like.is-up .cl-up {
    color: #4CAF50;
}

.coupon-like.is-down .cl-down {
    color: #f44336;
}

.cl-score {
    min-width: 1em;
    text-align: center;
    font-weight: 500;
}

/* Состояние загрузки */
.coupon-like.loading {
    opacity: 0.6;
    pointer-events: none;
}