/* ===================================
   WISHLIST SIDEBAR STYLES
   =================================== */

.wishlist-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 10000;
    display: flex;
    flex-direction: column;
}

.wishlist-sidebar.active {
    right: 0;
}

.wishlist-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wishlist-header h2 {
    font-size: 1.5rem;
    color: #E63946;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.btn-close-wishlist {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-close-wishlist:hover {
    color: #E63946;
}

.wishlist-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.wishlist-items-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wishlist-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
}

.wishlist-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wishlist-item-sku {
    font-size: 0.75rem;
    color: #999;
    margin: 0;
}

.wishlist-item-title {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.wishlist-item-price {
    font-size: 1rem;
    color: #E63946;
    font-weight: 700;
    margin: 0;
}

.wishlist-item-actions {
    margin-top: 10px;
}

.wishlist-btn-add-cart {
    background: #E63946;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.wishlist-btn-add-cart:hover {
    background: #D62839;
}

.wishlist-item-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #999;
    transition: all 0.2s;
}

.wishlist-item-remove:hover {
    background: #E63946;
    color: white;
    border-color: #E63946;
}

.wishlist-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.wishlist-empty i {
    font-size: 4rem;
    color: #E63946;
    margin-bottom: 20px;
}

.wishlist-empty h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.wishlist-empty p {
    font-size: 0.9rem;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .wishlist-sidebar {
        width: 100%;
        right: -100%;
    }
}

