/* Style cho nút đếm */
.my-wishlist-counter-link { 
    display: inline-flex; 
    align-items: center; 
    gap: 5px; 
    text-decoration: none; 
    color: #333; 
}

.my-wishlist-counter-number { 
    background-color: var(--fs-color-primary); 
    color: white; 
    font-size: 10px; 
    font-weight: bold; 
    border-radius: 50%; 
    min-width: 16px; 
    height: 16px; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    position: absolute;
    top: 0px;
    right: -12px;
}

.my-wishlist-counter-icon img{
    transition: 0.3s;
    width: 24px;
    height: 24px;
}
.my-wishlist-counter-icon img:hover {
    filter: brightness(0);
}

/* Hiệu ứng loading */
.my-wishlist-button.loading { opacity: 0.5; cursor: not-allowed; }


/*
 * Wishlist Styles V2 - Clean & Modern
 */

.msw-wishlist-container-v2 .wishlist_table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

/* --- Table Header --- */
.msw-wishlist-container-v2 .wishlist_table thead {
    border-bottom: 1px solid #e5e5e5;
}

.msw-wishlist-container-v2 .wishlist_table thead th {
    padding: 16px 10px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    text-transform: none; /* Không viết hoa */
}

/* --- Table Body --- */
.msw-wishlist-container-v2 .wishlist_table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.msw-wishlist-container-v2 .wishlist_table tbody td {
    padding: 15px 10px;
    vertical-align: middle;
}

.wl-wishlist_item {
    position: relative;
}
/* --- Remove Button (X) --- */
.msw-wishlist-container-v2 .wl-product-remove a.remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #f0f0f0;
    color: #333;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.msw-wishlist-container-v2 .wl-product-remove a.remove:hover {
    background-color: #d9534f; /* Màu đỏ khi hover */
    color: #fff;
}

.msw-wishlist-container-v2 .wl-product-name {
    display: flex;
    align-items: center;
    gap: 15px; /* Khoảng cách giữa ảnh và tên */
    padding-left: 30px;
    width: 70%;
}

.msw-wishlist-container-v2 .wl-product-thumbnail {
    flex-shrink: 0;
}

.msw-wishlist-container-v2 .wl-product-thumbnail img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.msw-wishlist-container-v2 .wl-product-name-text a {
    font-weight: 500;
    color: #333;
    text-decoration: none;
}
.msw-wishlist-container-v2 .wl-product-name-text a:hover {
    color: var(--fs-secondary-color);
}

/* --- Product Price --- */
.msw-wishlist-container-v2 .wl-product-price {
    font-size: 15px;
    color: #555;
    width: 30%;
}

/* Responsive (tùy chọn nhưng nên có) */
@media (max-width: 768px) {

}