/* ========== Container voor iconen (zoals bid) ========== */
.icon-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin: 0.5rem 0;
}

/* ========== Algemene bid-button ========== */
.bid-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;
}

.bid-button:active {
    background: #222;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    scale: 0.96;
}

.bid-button:hover {
    background: #222;
    border-color: #333;
}

/* ========== Kleine variant in .icon-row (zoals onder producten) ========== */
.icon-row .bid-button,
.product-info .icon-row .bid-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;
}

/* 🔨 Icoon binnen bid-button */
.icon-row .bid-button i,
.product-info .icon-row .bid-button i {
    font-size: 1.6rem;
    color: #888;
    transition: color 0.25s ease-in-out;
}

.icon-row .bid-button:hover i,
.product-info .icon-row .bid-button:hover i {
    color: #aaa;
}

.icon-row .bid-button:active i,
.product-info .icon-row .bid-button:active i {
    opacity: 0.6;
}

.icon-row .bid-button:focus-visible,
.product-info .icon-row .bid-button:focus-visible {
    outline: 2px solid lime;
    outline-offset: 3px;
}

/* Eventuele animatie als je dat later wilt toevoegen */
@keyframes bid-pop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.4); }
    100% { transform: scale(1); }
}
