/**
 * Wishlist list page (grid like reference).
 */
.hello-wishlist-list {
	width: 100%;
}

.hello-wishlist-list__empty {
	font-family: var(--FONT-GLOBAL, "Nunito Sans", sans-serif) !important;
	color: var(--text, #fffff0) !important;
	padding: 1rem 0 !important;
}

.hello-wishlist-list__grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 1.25rem 1.75rem !important;
	align-items: stretch !important;
}

@media (max-width: 1024px) {
	.hello-wishlist-list__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 880px) {
	.hello-wishlist-list__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 767px) {
	.hello-wishlist-list__grid {
		grid-template-columns: 1fr !important;
		gap: 1.25rem !important;
	}
}

.hello-wishlist-item {
	position: relative;
	text-align: center;
	display: flex !important;
	flex-direction: column !important;
	height: 100% !important;
}

.hello-wishlist-item__remove {
	position: absolute !important;
	top: 0.35rem !important;
	right: 0.35rem !important;
	z-index: 5 !important;
	width: 2.25rem !important;
	height: 2.25rem !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: rgba(18, 18, 18, 0.35) !important;
	color: #ffffff !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	line-height: 0 !important;
}

.hello-wishlist-item__remove:hover,
.hello-wishlist-item__remove:focus,
.hello-wishlist-item__remove:active {
	background: rgba(18, 18, 18, 0.55) !important;
}

.hello-wishlist-item__remove-svg {
	width: 1.05rem !important;
	height: 1.05rem !important;
	display: block !important;
}

.hello-wishlist-item__img {
	display: block !important;
	text-decoration: none !important;
	line-height: 0 !important;
	aspect-ratio: 4 / 5 !important;
	overflow: hidden !important;
}

.hello-wishlist-item__img img {
	width: 100% !important;
	height: 100% !important;
	display: block !important;
	border-radius: 0 !important;
	object-fit: cover !important;
}

.hello-wishlist-item__title {
	display: block !important;
	margin-top: 0.85rem !important;
	font-family: var(--FONT-TITLE, "Libre Baskerville", serif) !important;
	font-size: 1rem !important;
	font-weight: 400 !important;
	line-height: 1.25 !important;
	color: var(--text, #fffff0) !important;
	text-decoration: none !important;
}

.hello-wishlist-item__price {
	margin-top: 0.35rem !important;
	font-family: var(--FONT-GLOBAL, "Nunito Sans", sans-serif) !important;
	font-size: 0.875rem !important;
	font-weight: 400 !important;
	color: var(--text, #fffff0) !important;
}

.hello-wishlist-item__attrs {
	margin-top: 0.35rem !important;
	font-family: var(--FONT-GLOBAL, "Nunito Sans", sans-serif) !important;
	font-size: 0.6875rem !important;
	font-weight: 400 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
	color: rgba(255, 255, 240, 0.85) !important;
}

.hello-wishlist-item__cart {
	margin-top: auto !important;
	padding-top: 0.85rem !important;
}

.hello-wishlist-item__add-to-cart {
	width: 100% !important;
	border-radius: 0 !important;
	font-family: var(--FONT-GLOBAL, "Nunito Sans", sans-serif) !important;
	font-weight: 400 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	background: transparent !important;
	border: 1px solid var(--COLOR-ACCENT, #ab8c52) !important;
	color: var(--COLOR-ACCENT, #ab8c52) !important;
	padding: 0.9rem 1rem !important;
}

.hello-wishlist-item__add-to-cart:hover,
.hello-wishlist-item__add-to-cart:focus,
.hello-wishlist-item__add-to-cart:active {
	background: transparent !important;
	border-color: var(--COLOR-ACCENT, #ab8c52) !important;
	color: var(--COLOR-ACCENT, #ab8c52) !important;
	opacity: 0.92 !important;
}

