/* --- Box Interiors Wishlist Sidebar --- */
.box-wishlist-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 999999;
    pointer-events: none;
    font-family: var(--e-global-typography-primary-font-family), "AeonikPro", Sans-serif;
}

/* Backdrop */
.box-wishlist-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s;
}

/* Panel */
.box-wishlist-panel {
    position: absolute;
    top: 0;
    right: -500px;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background: #ECECEC;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: auto;
    box-shadow: -5px 0 20px rgba(0,0,0,0.05);
}

/* States */
.box-wishlist-sidebar.open { pointer-events: auto; }
.box-wishlist-sidebar.open .box-wishlist-backdrop { opacity: 1; }
.box-wishlist-sidebar.open .box-wishlist-panel { right: 0; }

/* Header */
.box-wishlist-header {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wishlist-title { font-size: 16px; text-transform: uppercase; color: black; }
.close-wishlist { background: none; border: none; cursor: pointer; padding: 0; color: black; }

/* Items Area */
.box-wishlist-items {
    flex: 1;
    overflow-y: auto;
    padding: 0 40px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Item Card */
.box-wishlist-item {
    background: #f4f4f4;
    border: 1px solid #D1D1D1;
    display: flex;
    padding: 0;
    min-height: 140px;
}

.w-item-image {
    width: 150px;
    flex-shrink: 0;
    border-right: 1px solid #D1D1D1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.w-item-image img { max-width: 100%; height: auto; display: block; mix-blend-mode: multiply; }

.w-item-details {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.w-item-row-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.w-item-title { font-weight: 600; font-size: 14px; text-transform: uppercase; color: black; text-decoration: none; max-width: 160px; }
.w-item-price { font-size: 14px; color: black; }

.w-item-meta { font-size: 11px; text-transform: uppercase; color: #555; line-height: 1.4; margin-bottom: 15px; }

.w-item-row-bot { display: flex; justify-content: space-between; align-items: center; }
.btn-wishlist-cart { font-size: 11px; text-transform: uppercase; color: black; text-decoration: none; border-bottom: 1px solid transparent; }
.btn-wishlist-cart:hover { border-bottom-color: black; }

.item-remove-wishlist { font-size: 11px; text-transform: uppercase; color: #666; text-decoration: none; cursor: pointer; }
.item-remove-wishlist:hover { color: black; }

.empty-wishlist-msg { text-align: center; margin-top: 50px; font-size: 14px; text-transform: uppercase; }

/* Mobile */
@media (max-width: 480px) {
    .box-wishlist-panel { max-width: 100%; }
    .box-wishlist-header, .box-wishlist-items { padding-left: 20px; padding-right: 20px; }
    .w-item-image { width: 100px; }
}