/*
==========================================================================
 Wishlist Popup Container
==========================================================================
*/

.wishlist-popup {
    position: absolute;
    width: 376px;
    z-index: 100000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s, transform 0.2s;
    transform: translateY(10px);
}
.wishlist-popup.is-visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.wishlist-popup__content {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-height: 80vh;
}

/* --- Header --- */
.wishlist-popup__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}
.wishlist-popup__header h3 {
    margin: 0;
    font-size: 16px; /* Giảm kích thước font-size */
}
.wishlist-close {
    background: none !important;
    border: none !important;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
    color: #555;
    transition: color 0.2s;
}
.wishlist-close:hover {
    color: #111;
}

/* --- Body --- */
.wishlist-popup__body {
    overflow-y: auto;
    padding: 10px 20px;
    max-height: 380px;
    flex-grow: 1;
}

/* --- Footer --- */
.wishlist-popup__footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background-color: #f9f9f9;
    flex-shrink: 0;
}
.wishlist-popup__footer .button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    background-color: #d90429;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
}

/* --- Loader Overlay --- */
.wishlist-popup__loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 8px; /* Để bo tròn theo content */
}

/*
==========================================================================
 Tùy chỉnh riêng cho Items bên trong POPUP (Overrides)
==========================================================================
*/

/* Ẩn nút "Thêm vào giỏ" & "Lựa chọn tùy chọn" khỏi POPUP */
#wishlist-popup .wishlist-item__actions .button {
    display: none !important;
}

/* Căn chỉnh lại link "Xóa" trong popup cho đẹp */
#wishlist-popup .wishlist-item__actions {
    display: block;
    margin-top: 4px;
}