.ray-switch-product-wrap > .container > .title,
.ray-switch-product-wrap > .container > .ray-switch-product-tabs {
	padding-left: 28px;
}

.ray-switch-product-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 22px;
}

.ray-switch-tab {
	border: 1px solid #7f4e98;
	background: #fff;
	color: #5a2f7c;
	padding: 10px 16px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
}

.ray-switch-tab.is-active {
	background: #5a2f7c;
	color: #fff;
}

.ray-switch-product-list > ul.row > li {
	display: flex;
	margin-bottom: 26px;
	scroll-margin-top: 120px;
}

.ray-switch-product-list > ul.row > li .ray-switch-product {
	width: 100%;
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: 10px;
	transition: box-shadow 0.4s ease, background-color 0.4s ease;
}

.ray-switch-product-list > ul.row > li.is-highlighted .ray-switch-product {
	animation: ray-switch-card-highlight 3.2s ease-out forwards;
}

@keyframes ray-switch-card-highlight {
	0% {
		box-shadow: 0 0 0 3px rgba(127, 78, 152, 0.95), 0 10px 28px rgba(90, 47, 124, 0.28);
		background-color: rgba(211, 145, 251, 0.18);
	}
	35% {
		box-shadow: 0 0 0 3px rgba(127, 78, 152, 0.75), 0 8px 22px rgba(90, 47, 124, 0.2);
		background-color: rgba(211, 145, 251, 0.12);
	}
	100% {
		box-shadow: none;
		background-color: transparent;
	}
}

.ray-switch-product-list > ul.row > li .ray-switch-content {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.ray-switch-product-list > ul.row > li .listing {
	flex: 1 1 auto;
	margin-bottom: 14px;
}

.ray-switch-product-list > ul.row > li .cta-group {
	margin-top: auto;
}
