.roham-wishlist-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	min-width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background:var(--e-global-color-9907219);
	-webkit-backdrop-filter: blur(6px) ;
	backdrop-filter: blur(6px) ;
	box-shadow: none;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.roham-wishlist-toggle:hover {background:#E30A5820;}
.roham-wishlist-toggle img {
	display: none;
}

.roham-wishlist-toggle::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background-color: var(--e-global-color-text);
	-webkit-mask-image: url("/wp-content/uploads/2025/02/heart.svg");
	mask-image: url("/wp-content/uploads/2025/02/heart.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.roham-wishlist-toggle.is-active::before {
	background-color: var(--e-global-color-secondary);
	-webkit-mask-image: url("/wp-content/uploads/2025/02/heart-1.svg");
	mask-image: url("/wp-content/uploads/2025/02/heart-1.svg");
}

.roham-wishlist-toggle:hover,
.roham-wishlist-toggle:active {
	transform: none;
}

.roham-wishlist-toggle.is-loading {
	opacity: .58;
	pointer-events: none;
}

.roham-wishlist-toggle.is-busy {
	pointer-events: none;
}

.roham-wishlist-toggle.is-busy::before {
	animation: roham-wishlist-heart-pulse .75s ease-in-out infinite alternate;
}

@keyframes roham-wishlist-heart-pulse {
	from {
		opacity: .35;
		transform: scale(.88);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.roham-wishlist-list {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 10px;
}

.roham-wishlist-item {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-width: 0;
	padding: 15px;
	direction: rtl;
	background: #fff;
	border: 1px solid var(--e-global-color-1e77499);
	border-radius: 30px;
	box-sizing: border-box;
}

.roham-wishlist-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	margin: 0 0 0 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	box-shadow: none;
	cursor: pointer;
	transition: background-color .2s ease;
	-webkit-tap-highlight-color: transparent;
}

.roham-wishlist-remove img {
	display: block;
	width: 18px;
	height: 18px;
	margin: 0;
	padding: 0;
	pointer-events: none;
	transition: filter .2s ease;
}

.roham-wishlist-remove:hover {
	background: var(--e-global-color-secondary);
}

.roham-wishlist-remove:hover img {
	filter: brightness(0) invert(1);
}

.roham-wishlist-remove:active {
	transform: none;
}

.roham-wishlist-remove.is-busy {
	pointer-events: none;
	opacity: .45;
}

.roham-wishlist-item-image-link {
	display: block;
	flex: 0 0 80px;
	width: 80px;
	height: 80px;
	margin-left: 15px;
	border-radius: 15px;
	overflow: hidden;
	text-decoration: none;
}

.roham-wishlist-item-image-link img,
.roham-wishlist-item-image {
	display: block;
	width: 80px !important;
	height: 80px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 15px !important;
	object-fit: cover;
	filter: none !important;
	opacity: 1 !important;
}

.roham-wishlist-item-info {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
	gap: 7px;
}

.roham-wishlist-item-name {
	margin: 0;
	padding: 0;
	overflow: hidden;
	color: var(--e-global-color-text);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.7;
	text-overflow: ellipsis;
}

.roham-wishlist-item-name a {
	color: inherit;
	text-decoration: none;
}

.roham-wishlist-item-name a:hover,
.roham-wishlist-item-name a:focus,
.roham-wishlist-item-name a:active {
	color: inherit;
	text-decoration: none;
}

.roham-wishlist-item-price {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	min-width: 0;
	gap: 6px;
	margin: 0;
	padding: 0;
	color: var(--e-global-color-secondary);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.6;
}

.roham-wishlist-item-price p {
	margin: 0;
	padding: 0;
}

.roham-wishlist-item-price .amount,
.roham-wishlist-item-price bdi {
	color: inherit;
}

.roham-wishlist-item-price del {
	opacity: .5;
}

.roham-wishlist-item-price del,
.roham-wishlist-item-price del .amount,
.roham-wishlist-item-price del bdi {
	color: var(--e-global-color-text);
}

.roham-wishlist-item-price ins {
	color: var(--e-global-color-secondary);
	text-decoration: none;
}

.roham-wishlist-item-price ins .amount,
.roham-wishlist-item-price ins bdi {
	color: inherit;
}

.roham-wishlist-view {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-width: 90px;
	height: 36px;
	margin-right: 14px;
	padding: 0 15px;
	gap: 7px;
	border: 0;
	border-radius: 30px;
	background: linear-gradient(
		90deg,
		var(--e-global-color-secondary),
		var(--e-global-color-primary)
	);
	box-shadow: none;
	color: #fff !important;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none !important;
	white-space: nowrap;
	transition: none;
}

.roham-wishlist-view::after {
	content: "";
	display: block;
	flex: 0 0 14px;
	width: 14px;
	height: 14px;
	background-color: currentColor;
	-webkit-mask-image: url("/wp-content/uploads/2025/02/angle-small-left.svg");
	mask-image: url("/wp-content/uploads/2025/02/angle-small-left.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.roham-wishlist-view:hover,
.roham-wishlist-view:focus,
.roham-wishlist-view:active {
	background: linear-gradient(
		90deg,
		var(--e-global-color-secondary),
		var(--e-global-color-primary)
	);
	color: #fff !important;
	opacity: 1;
	transform: none;
	text-decoration: none !important;
}

.roham-wishlist-message {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	min-height: 130px;
	gap: 12px;
	padding: 25px;
	background: #fff;
	border: 1px solid var(--e-global-color-1e77499);
	border-radius: 30px;
	box-sizing: border-box;
	color: var(--e-global-color-text);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.8;
	text-align: center;
}

.roham-wishlist-login-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 100px;
	height: 36px;
	padding: 0 18px;
	border: 0;
	border-radius: 30px;
	background: linear-gradient(
		90deg,
		var(--e-global-color-secondary),
		var(--e-global-color-primary)
	);
	box-shadow: none;
	color: #fff !important;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none !important;
	transition: none;
}

.roham-wishlist-login-button:hover,
.roham-wishlist-login-button:focus,
.roham-wishlist-login-button:active {
	background: linear-gradient(
		90deg,
		var(--e-global-color-secondary),
		var(--e-global-color-primary)
	);
	color: #fff !important;
	opacity: 1;
	transform: none;
	text-decoration: none !important;
}

.roham-wishlist-skeleton {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 15px;
	direction: rtl;
	background: #fff;
	border: 1px solid var(--e-global-color-1e77499);
	border-radius: 30px;
	box-sizing: border-box;
	overflow: hidden;
}

.roham-wishlist-skeleton-block {
	position: relative;
	display: block;
	overflow: hidden;
	background: rgba(128, 128, 128, .13);
	border-radius: 10px;
}

.roham-wishlist-skeleton-block::after {
	content: "";
	position: absolute;
	inset: 0;
	transform: translateX(100%);
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, .65),
		transparent
	);
	animation: roham-wishlist-shimmer 1.15s infinite;
}

.roham-wishlist-skeleton-remove {
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	margin-left: 20px;
	border-radius: 50%;
}

.roham-wishlist-skeleton-image {
	flex: 0 0 80px;
	width: 80px;
	height: 80px;
	margin-left: 15px;
	border-radius: 15px;
}

.roham-wishlist-skeleton-info {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
	gap: 10px;
}

.roham-wishlist-skeleton-title {
	width: min(220px, 70%);
	height: 13px;
}

.roham-wishlist-skeleton-price {
	width: min(110px, 40%);
	height: 11px;
}

.roham-wishlist-skeleton-button {
	flex: 0 0 90px;
	width: 90px;
	height: 36px;
	margin-right: 14px;
	border-radius: 30px;
}

@keyframes roham-wishlist-shimmer {
	100% {
		transform: translateX(-100%);
	}
}

@media (max-width: 767px) {
	.roham-wishlist-toggle {
		width: 36px;
		min-width: 36px;
		height: 36px;
	}

	.roham-wishlist-toggle::before {
		width: 20px;
		height: 20px;
	}

	.roham-wishlist-item,
	.roham-wishlist-skeleton {
		padding: 10px;
		border-radius: 24px;
	}

	.roham-wishlist-remove {
		flex: 0 0 30px;
		width: 30px;
		height: 30px;
		margin-left: 7px;
	}

	.roham-wishlist-remove img {
		width: 16px;
		height: 16px;
	}

	.roham-wishlist-item-image-link {
		flex: 0 0 70px;
		width: 70px;
		height: 70px;
		margin-left: 10px;
		border-radius: 13px;
	}

	.roham-wishlist-item-image-link img,
	.roham-wishlist-item-image {
		width: 70px !important;
		height: 70px !important;
		border-radius: 13px !important;
		filter: none !important;
		opacity: 1 !important;
	}

	.roham-wishlist-item-info {
		gap: 5px;
	}

	.roham-wishlist-item-name {
		font-size: 13px;
	}

	.roham-wishlist-item-price {
		font-size: 11px;
	}

	.roham-wishlist-view {
		min-width: 78px;
		height: 32px;
		margin-right: 8px;
		padding: 0 11px;
		gap: 5px;
		font-size: 12px;
	}

	.roham-wishlist-view::after {
		flex-basis: 12px;
		width: 12px;
		height: 12px;
	}

	.roham-wishlist-login-button {
		height: 32px;
		padding: 0 14px;
		font-size: 12px;
	}

	.roham-wishlist-message {
		min-height: 110px;
		padding: 20px 15px;
		border-radius: 24px;
		font-size: 12px;
	}

	.roham-wishlist-skeleton-remove {
		flex: 0 0 20px;
		width: 20px;
		height: 20px;
		margin-left: 17px;
	}

	.roham-wishlist-skeleton-image {
		flex: 0 0 70px;
		width: 70px;
		height: 70px;
		margin-left: 10px;
		border-radius: 13px;
	}

	.roham-wishlist-skeleton-button {
		flex: 0 0 78px;
		width: 78px;
		height: 32px;
		margin-right: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.roham-wishlist-toggle.is-busy::before,
	.roham-wishlist-skeleton-block::after {
		animation: none;
	}
}