/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.wishlist_container {
    width: 100%;
}

.wishlist_item {
    position: relative;
    width: 100%;
    padding:0.7rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
	flex-direction:row;
	gap:1rem;
	margin-bottom:1rem;
	border: solid 1px #e8e8e8;
    box-shadow:0px 10px 8px -6px rgba(0,0,0,0.2);
}

.wishlist_item_remove {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    width: 1.875rem;
    height: 1.875rem;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    z-index: 10;
}

.wishlist_item_remove:hover {
    background: #cc0000;
}

.wishlist_item_image {
    width: 8rem;
	height: 8rem;
    margin: 0 auto;
    text-align: center;
}

.wishlist_item_image img {
    width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 0.5rem;
}

.wishlist_item_info {
    flex: 1;
    padding:0;
}

.wishlist_item_info a {
	color:#860505;
	text-decoration:none;
	font-size:0.75rem;
	font-weight:400;
	margin-bottom:0.625rem;
}

.wishlist_item_name {
    margin-bottom: 0.625rem;
}

.wishlist_item_title {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1;
	max-width:87%;
}

.wishlist_item_text {
    font-size: 1rem;
    font-weight: 400;
    color: #0e8ce4;
    margin-bottom: 0.625rem;
}

.wishlist_item_price_value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0e8ce4;
}