/* Wishlist Button */
.aws-wishlist-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 10px 0;
}

.aws-wishlist-button:hover {
    border-color: var(--aws-wl-color, #e91e63);
}

.aws-wishlist-button.is-active {
    background: var(--aws-wl-color, #e91e63);
    border-color: var(--aws-wl-color, #e91e63);
    color: #fff;
}

.aws-wishlist-button.is-loading {
    opacity: 0.6;
    pointer-events: none;
}

.aws-wishlist-button__icon {
    display: flex;
}

.aws-wishlist-button__icon svg {
    width: 18px;
    height: 18px;
}

/* Wishlist Page */
.aws-wishlist-page {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aws-wishlist-product {
    display: flex;
    gap: 16px;
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.aws-wishlist-product__image {
    width: 100px;
    flex-shrink: 0;
}

.aws-wishlist-product__image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.aws-wishlist-product__details {
    flex: 1;
}

.aws-wishlist-product__details h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.aws-wishlist-product__details h3 a {
    text-decoration: none;
    color: inherit;
}

.aws-wishlist-product__price {
    margin-bottom: 12px;
}

.aws-wishlist-product__actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.aws-wishlist-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.aws-wishlist-remove:hover {
    color: #e91e63;
}

.aws-wishlist-empty {
    text-align: center;
    padding: 40px;
    color: #666;
}

@media (max-width: 480px) {
    .aws-wishlist-product {
        flex-direction: column;
    }
    .aws-wishlist-product__image {
        width: 100%;
        max-width: 150px;
    }
}
