.wishlist-section {
    padding: 80px 20px 50px 20px;
}
.wishlist-section .wishlist-title h2 {
    font-weight: 400;
    font-size: 80px;
    line-height: 80px;
    text-align: left;
    letter-spacing: -0.05em;
    color: #212121;
    padding-bottom: 40px;
    word-break: break-word;
    max-width: 100%;
    width: 100%;
}
.wishlist-section .item {
    margin-bottom: 30px;
}
.wishlist-section .item .item-box {
    display: flex;
	align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 1px solid #B8B8B8;
}
.wishlist-section .item .item-box .image-box {
    width: 50%;
    overflow: hidden;
}
.wishlist-section .item .item-box .image-box img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: all .4s ease-in-out;
}
.wishlist-section .item .item-box .image-box img:hover {
    transform: scale(1.1);
}
.wishlist-section .item .item-box .image-details {
    width: 50%;
	padding-left: 30px;
}
.wishlist-section .item .item-box .image-details .name {
	display: flex;
	justify-content: space-between;
	align-items: center;
	grid-gap: 15px;
    margin-bottom: 15px;
}
.wishlist-section .item .item-box .image-details .name h3 {
    margin: 0;
    font-size: 24px;
    color: #252525;
	font-weight: 400;
	line-height: 30px;
}
.wishlist-section .item .item-box .image-details .name .color {
	display: inline-block;
	min-width: 43px;
	min-height: 43px;
	border: 1px solid #B8B8B8;
	border-radius: 50%;
}
.wishlist-section .item .item-box .image-details .size {
	display: block;
	margin-bottom: 15px;
	font-size: 17px;
	color: #252525;
	font-weight: 400;
	line-height: 20px;
}
.wishlist-section .item .item-box .image-details .variation {
	display: flex;
	flex-wrap: wrap;
	column-gap: 50px;
	row-gap: 15px;
	margin-bottom: 15px;
}
.wishlist-section .item .item-box .image-details .variation .data {
	font-size: 17px;
	color: #252525;
	font-weight: 400;
	line-height: 20px;
}
.wishlist-section .item .item-box .image-details .variation .data dt,
.wishlist-section .item .item-box .image-details .variation .data dd {
	margin-bottom: 0;
}
.wishlist-section .item .item-box .image-details .remove-btn {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #252525;
    display: inline-block;
    border: solid 1px #000000;
    background: transparent;
    padding: 10px 33px;
    position: relative;
    box-shadow: 0px 0px 0 0 #241c15;
    -webkit-transition: -webkit-transform .3s cubic-bezier(.5, 2.5, .7, .7), -webkit-box-shadow .3s cubic-bezier(.5, 2.5, .7, .7);
    transition: -webkit-transform .3s cubic-bezier(.5, 2.5, .7, .7), -webkit-box-shadow .3s cubic-bezier(.5, 2.5, .7, .7);
    -o-transition: transform .3s cubic-bezier(.5, 2.5, .7, .7), box-shadow .3s cubic-bezier(.5, 2.5, .7, .7);
    transition: transform .3s cubic-bezier(.5, 2.5, .7, .7), box-shadow .3s cubic-bezier(.5, 2.5, .7, .7);
    transition: transform .3s cubic-bezier(.5, 2.5, .7, .7), box-shadow .3s cubic-bezier(.5, 2.5, .7, .7), -webkit-transform .3s cubic-bezier(.5, 2.5, .7, .7), -webkit-box-shadow .3s cubic-bezier(.5, 2.5, .7, .7);
}
.wishlist-section .item .item-box .image-details .remove-btn:hover {
    -webkit-box-shadow: 4px 4px 0 0 #241c15;
    box-shadow: 4px 4px 0 0 #241c15;
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}
.wishlist-section .wishlist-btn {
    display: flex;
   align-items: flex-start;
    justify-content: flex-end;
}
.wishlist-section .wishlist-btn .btn-1 {
    border: solid 1px #000000;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #252525;
    padding: 10px 10px;
    margin-right: 7px;
    position: relative;
    box-shadow: 0px 0px 0 0 #241c15;
	border-radius: 0px;
    -webkit-transition: -webkit-transform .3s cubic-bezier(.5, 2.5, .7, .7), -webkit-box-shadow .3s cubic-bezier(.5, 2.5, .7, .7);
    transition: -webkit-transform .3s cubic-bezier(.5, 2.5, .7, .7), -webkit-box-shadow .3s cubic-bezier(.5, 2.5, .7, .7);
    -o-transition: transform .3s cubic-bezier(.5, 2.5, .7, .7), box-shadow .3s cubic-bezier(.5, 2.5, .7, .7);
    transition: transform .3s cubic-bezier(.5, 2.5, .7, .7), box-shadow .3s cubic-bezier(.5, 2.5, .7, .7);
    transition: transform .3s cubic-bezier(.5, 2.5, .7, .7), box-shadow .3s cubic-bezier(.5, 2.5, .7, .7), -webkit-transform .3s cubic-bezier(.5, 2.5, .7, .7), -webkit-box-shadow .3s cubic-bezier(.5, 2.5, .7, .7);
}

.wishlist-section .wishlist-btn .btn-1:hover {
    -webkit-box-shadow: 4px 4px 0 0 #241c15;
    box-shadow: 4px 4px 0 0 #241c15;
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}
