/* Add to Cart Icon Styles - Hidden by default, visible on hover */
.icon-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .icon-actions,
.product-card:hover .icon-actions {
    opacity: 1;
}

.like-icon {
    width: 36px;
    height: 36px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.like-icon svg {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.add-to-cart-icon {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.add-to-cart-icon svg {
    width: 18px;
    height: 18px;
    transition: stroke 0.3s ease;
}

.add-to-cart-icon:hover {
    background: #c0596A;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(192, 89, 106, 0.3);
}

.add-to-cart-icon:hover svg {
    stroke: white;
}

.add-to-cart-icon:active {
    transform: scale(0.95);
}

.like-icon:hover svg {
    background: #c0596A;
    fill: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(192, 89, 106, 0.3);
}

.like-icon svg.liked {
    fill: #c0596A;
    background: white;
}

.like-icon:hover svg.liked {
    background: #c0596A;
    fill: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(192, 89, 106, 0.3);
}
