/*
==========================================================================
 Wishlist Items (Dùng chung cho Popup và Trang Yêu thích)
==========================================================================
*/

.wishlist-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.wishlist-item:last-child {
    border-bottom: none;
}

/* --- Image --- */
.wishlist-item__image {
    flex-shrink: 0;
}
.wishlist-item__image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid #eee;
}

/* --- Details --- */
.wishlist-item__details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0; /* Quan trọng: Cho phép text-overflow hoạt động đúng trong flexbox */
}
.wishlist-item__name {
    font-weight: bold;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.wishlist-item__name:hover {
    color: #d90429;
}

/* --- Short Description --- */
.wishlist-item__short-desc {
    font-size: 12px;
    color: #555;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Reset margin của thẻ <p> nếu có trong mô tả ngắn */
.wishlist-item__short-desc p {
    margin: 0;
}

/* --- Price --- */
.wishlist-item__price {
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: 10px;
    font-weight: 600;
    font-size: 12px;
    color: #000000;
}

/* --- Actions --- */
.wishlist-item__actions {
    margin-top: 4px;
    font-size: 11px;
}
.wishlist-item__actions .wishlist-item__remove {
    color: #0073aa;
    text-decoration: underline;
    cursor: pointer;
}
.wishlist-item__actions .wishlist-item__remove:hover {
    color: #d90429;
}