.wishlist-create {
    margin-bottom: 1em;
}
.wishlist-add-btn,
.wishlist-remove-btn {
    background: #f1f1f1;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 20px;
    cursor: pointer;
    margin: 2px;
}
.wishlist-add-btn:hover {
    background: #d1ffd8;
}
.wishlist-remove-btn:hover {
    background: #ffd1d1;
}

/* Add to wishlist button */
.wishlist-add-btn {
    transition: all 0.3s ease;
    font-size: 1.2em;
}

.wishlist-add-btn.added {
    color: green;
}

.wishlist-add-btn.error {
    color: red;
}

/* My Wishlists Grid */
.my-wishlists {
    padding: 20px 0;
}

.wishlists-loading {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.wishlists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.wishlist-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wishlist-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wishlist-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.wishlist-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.wishlist-item h3 {
    padding: 12px 16px 8px;
    margin: 0;
    font-size: 18px;
}

.wishlist-item p {
    padding: 0 16px 16px;
    margin: 0;
    color: #666;
    font-size: 14px;
}
