/* ========== Algemene like-button (los gebruik, buiten action-column) ========== */
.like-button {
    all: unset;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 48px;
    height: 48px;
    aspect-ratio: 1 / 1;

    border: 2px solid #111;
    border-radius: 50%;
    background: #181818;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

    font-size: 2rem;
    color: black;
    cursor: pointer;
    position: relative;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, scale 0.1s;
}

.like-button:active {
    background: #222;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    scale: 0.96;
}

.like-button:hover {
    background: #222;
    border-color: #333;
}

.like-button[data-liked="1"] {
    color: red;
}

/* ========== Kleine variant (bijv. in lijsten of andere plekken) ========== */
.product-info .icon-row .like-button {
    all: unset;
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 36px;
    height: 36px;
    padding: 4px;
    aspect-ratio: 1 / 1;

    border: 1px solid #111;
    border-radius: 50%;
    background: transparent;
    color: inherit;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

/* ❤️ Harticoon */
.product-info .icon-row .like-button i {
    font-size: 1.6rem;
    color: #888;
    transition: color 0.25s ease-in-out;
}

.product-info .icon-row .like-button:hover i {
    color: #aaa;
}

.product-info .icon-row .like-button:active i {
    opacity: 0.6;
}

.product-info .icon-row .like-button:focus-visible {
    outline: 2px solid lime;
    outline-offset: 3px;
}

.product-info .icon-row .like-button[data-liked="1"] i {
    color: #e74c3c;
    animation: liked-pop 0.3s ease-in-out;
}
