/**
 * Bergmans Wishlist Styles
 */

/* Wishlist button (heart icon) */
.wishlist-button {
    background: none !important;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.wishlist-button:hover,
.wishlist-button:focus,
.wishlist-button:active,
.wishlist-button:focus-visible,
.wishlist-button:focus-within {
    background: none !important;
    background-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Prevent background on touch devices */
.wishlist-button::before,
.wishlist-button::after {
    display: none !important;
}

.wishlist-button svg {
    transition: all 0.2s ease;
    pointer-events: none;
}

.wishlist-button.in-wishlist svg {
    fill: currentColor;
}

/* Wishlist page in My Account */
.bergmans-wishlist-items {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.wishlist-item {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    align-items: center;
    transition: box-shadow 0.2s ease;
}

.wishlist-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wishlist-item-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.wishlist-item-details h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.wishlist-item-details h3 a {
    text-decoration: none;
    color: #333;
}

.wishlist-item-details h3 a:hover {
    color: #ea5910;
}

.wishlist-item-details .price {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.wishlist-item-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wishlist-item-actions button,
.wishlist-item-actions .button {
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.wishlist-item-actions .remove-from-wishlist {
    background: white;
    border: 1px solid #ddd;
    color: #666;
}

.wishlist-item-actions .remove-from-wishlist:hover {
    background: #f5f5f5;
    border-color: #999;
}

.wishlist-item-actions .add-to-cart {
    background: #ea5910;
    border: none;
    color: white;
}

.wishlist-item-actions .add-to-cart:hover {
    background: #d14e0e;
}

/* Responsive */
@media (max-width: 768px) {
    .wishlist-item {
        grid-template-columns: 100px 1fr;
        gap: 15px;
    }

    .wishlist-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
    }

    .wishlist-item-image {
        width: 100px;
    }
}

/* Empty state */
.bergmans-wishlist-items:empty::before {
    content: "Je wishlist is leeg.";
    display: block;
    text-align: center;
    padding: 40px;
    color: #666;
}
