/* Wheely Nerdy Elementor widgets — shared layout tokens and components */

.wn-el-widget {
	--wn-el-columns: 4;
	--wn-el-columns-tablet: 3;
	--wn-el-columns-mobile: 2;
	box-sizing: border-box;
}

.wn-el-widget *,
.wn-el-widget *::before,
.wn-el-widget *::after {
	box-sizing: inherit;
}

/* Grid helper used by non-carousel layouts */
.wn-el-usp,
.wn-el-promo-cards,
.wn-el-brand-row,
.wn-el-showcase--layout-grid .wn-el-showcase__links,
.wn-el-category-tiles__grid {
	display: grid;
	grid-template-columns: repeat(var(--wn-el-columns), minmax(0, 1fr));
	gap: 1rem;
}

@media (max-width: 1024px) {
	.wn-el-usp,
	.wn-el-promo-cards,
	.wn-el-brand-row,
	.wn-el-showcase--layout-grid .wn-el-showcase__links,
	.wn-el-category-tiles__grid {
		grid-template-columns: repeat(var(--wn-el-columns-tablet), minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.wn-el-usp,
	.wn-el-promo-cards,
	.wn-el-brand-row,
	.wn-el-showcase--layout-grid .wn-el-showcase__links,
	.wn-el-category-tiles__grid {
		grid-template-columns: repeat(var(--wn-el-columns-mobile), minmax(0, 1fr));
	}
}

/* Carousel shell — spacing comes from Swiper's spaceBetween, never CSS gap */
.wn-el-carousel {
	position: relative;
	overflow: hidden;
}

.wn-el-carousel .swiper-wrapper {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
}

.wn-el-carousel .swiper-slide {
	flex-shrink: 0;
}

/* FOUC guard: one hero slide + clipped product rows before Swiper inits */
.wn-el-hero,
.wn-el-hero__slider {
	overflow: hidden;
}

.wn-el-hero__slider .swiper-slide {
	width: 100%;
	max-width: 100%;
}

.wn-el-hero__slider:not(.swiper-initialized) .swiper-slide:not(:first-child) {
	visibility: hidden;
	position: absolute;
	pointer-events: none;
}

.wn-el-product-carousel .swiper-slide {
	width: calc((100% - 64px) / 5);
	max-width: calc((100% - 64px) / 5);
}

@media (max-width: 1024px) {
	.wn-el-product-carousel .swiper-slide {
		width: calc((100% - 32px) / 3);
		max-width: calc((100% - 32px) / 3);
	}
}

@media (max-width: 767px) {
	.wn-el-product-carousel .swiper-slide {
		width: calc((100% - 16px) / 2);
		max-width: calc((100% - 16px) / 2);
	}
}

.wn-el-carousel-nav {
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 2;
	padding: 0 0.5rem;
}

.wn-el-carousel-prev,
.wn-el-carousel-next {
	pointer-events: auto;
	width: 2.5rem;
	height: 2.5rem;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #1a1a1a;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.wn-el-carousel-prev:disabled,
.wn-el-carousel-next:disabled {
	opacity: 0.35;
	cursor: default;
}

.wn-el-carousel-prev::before,
.wn-el-carousel-next::before {
	content: "";
	display: block;
	width: 30%;
	height: 30%;
	margin: 0 auto;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
}

.wn-el-carousel-prev::before {
	transform: rotate(-135deg) translate(-12%, 12%);
}

.wn-el-carousel-next::before {
	transform: rotate(45deg) translate(-12%, 12%);
}

.wn-el-carousel-pagination {
	display: flex;
	justify-content: center;
	gap: 0.4rem;
	margin-top: 1rem;
}

.wn-el-carousel-pagination .swiper-pagination-bullet {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.25);
	opacity: 1;
	cursor: pointer;
}

.wn-el-carousel-pagination .swiper-pagination-bullet-active {
	background: rgba(0, 0, 0, 0.75);
}

/* Shared hover effects */
.wn-el-hover-lift .wn-el-promo-card,
.wn-el-hover-both .wn-el-promo-card,
.wn-el-hover-lift .wn-el-category-tile__link,
.wn-el-hover-both .wn-el-category-tile__link {
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wn-el-hover-lift .wn-el-promo-card:hover,
.wn-el-hover-both .wn-el-promo-card:hover,
.wn-el-hover-lift .wn-el-category-tile__link:hover,
.wn-el-hover-both .wn-el-category-tile__link:hover {
	transform: translateY(-4px);
}

.wn-el-hover-zoom .wn-el-promo-card__media img,
.wn-el-hover-both .wn-el-promo-card__media img,
.wn-el-hover-zoom .wn-el-category-tile__media img,
.wn-el-hover-both .wn-el-category-tile__media img {
	transition: transform 0.35s ease;
}

.wn-el-hover-zoom .wn-el-promo-card:hover .wn-el-promo-card__media img,
.wn-el-hover-both .wn-el-promo-card:hover .wn-el-promo-card__media img,
.wn-el-hover-zoom .wn-el-category-tile__link:hover .wn-el-category-tile__media img,
.wn-el-hover-both .wn-el-category-tile__link:hover .wn-el-category-tile__media img {
	transform: scale(1.07);
}

/* USP strip */
.wn-el-usp__item {
	display: flex;
	min-width: 0;
	transition: background-color 0.2s ease;
}

.wn-el-usp__link {
	display: flex;
	gap: 0.75rem;
	width: 100%;
	color: inherit;
	text-decoration: none;
}

.wn-el-usp--icon-top .wn-el-usp__link {
	flex-direction: column;
	align-items: center;
}

.wn-el-usp--icon-left .wn-el-usp__link {
	flex-direction: row;
	align-items: flex-start;
}

.wn-el-usp--divided .wn-el-usp__item:not(:last-child) {
	border-right: 1px solid rgba(0, 0, 0, 0.08);
	padding-right: 1rem;
}

.wn-el-usp__icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	min-width: 28px;
	min-height: 28px;
	transition: background-color 0.2s ease;
}

/* Elementor applies .wn-el-usp__icon directly on <svg> or <i>, not a wrapper. */
svg.wn-el-usp__icon,
i.wn-el-usp__icon {
	display: block;
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	color: #ea4c24;
	transition: color 0.2s ease, fill 0.2s ease;
}

i.wn-el-usp__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	line-height: 1;
}

svg.wn-el-usp__icon,
svg.wn-el-usp__icon path {
	fill: currentColor;
}

.wn-el-usp__content {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	min-width: 0;
}

.wn-el-usp__title {
	font-weight: 700;
}

/* Promo cards */
.wn-el-promo-card {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-width: 0;
	text-decoration: none;
	color: inherit;
}

.wn-el-promo-cards--left .wn-el-promo-card {
	flex-direction: row;
}

.wn-el-promo-cards--right .wn-el-promo-card {
	flex-direction: row-reverse;
}

.wn-el-promo-card__media {
	overflow: hidden;
	min-width: 0;
}

.wn-el-promo-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wn-el-promo-cards--background .wn-el-promo-card {
	min-height: 280px;
}

.wn-el-promo-cards--background .wn-el-promo-card__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.wn-el-promo-cards--background .wn-el-promo-card__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.25);
}

.wn-el-promo-cards--background .wn-el-promo-card__body {
	position: relative;
	z-index: 1;
	margin-top: auto;
}

.wn-el-promo-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
	padding: 1.25rem;
	flex: 1;
	min-width: 0;
}

.wn-el-promo-card__eyebrow {
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	opacity: 0.75;
}

.wn-el-promo-card__title {
	margin: 0;
}

.wn-el-promo-card__text {
	margin: 0;
}

.wn-el-promo-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	padding: 0.65rem 1.25rem;
	border-radius: 999px;
	background: #1a1a1a;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* Brand row */
.wn-el-brand-row__item {
	display: flex;
	min-width: 0;
}

.wn-el-brand-row__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-width: 0;
	padding: 0.5rem;
	text-decoration: none;
	color: inherit;
	transition: background-color 0.2s ease;
}

.wn-el-brand-row__logo {
	max-width: 100%;
	object-fit: contain;
	transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.wn-el-brand-row__label {
	font-weight: 600;
	transition: color 0.2s ease;
}

.wn-el-brand-row--grayscale-hover .wn-el-brand-row__logo {
	filter: grayscale(1);
	opacity: 0.75;
}

.wn-el-brand-row--grayscale-hover .wn-el-brand-row__link:hover .wn-el-brand-row__logo {
	filter: none;
	opacity: 1;
}

/* Showcase links */
.wn-el-showcase__header {
	margin-bottom: 1.25rem;
}

.wn-el-showcase__heading {
	margin: 0 0 0.35rem;
}

.wn-el-showcase__tagline {
	margin: 0;
}

.wn-el-showcase__view-all {
	display: inline-block;
	margin-top: 0.5rem;
	font-weight: 600;
	text-decoration: none;
}

.wn-el-showcase--layout-inline .wn-el-showcase__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.wn-el-showcase__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.65rem 1.35rem;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 999px;
	background: transparent;
	color: inherit;
	text-decoration: none;
	font-weight: 600;
	min-width: 0;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.wn-el-showcase--tile .wn-el-showcase__link {
	flex-direction: column;
	border-radius: 12px;
	padding: 0.75rem;
}

.wn-el-showcase__media {
	display: block;
	width: 100%;
	overflow: hidden;
	border-radius: 8px;
}

.wn-el-showcase__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Category tiles */
.wn-el-category-tiles__heading {
	margin: 0 0 1.25rem;
}

.wn-el-category-tile {
	min-width: 0;
}

.wn-el-category-tile__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.65rem;
	text-decoration: none;
	color: inherit;
}

.wn-el-category-tiles--label-overlay .wn-el-category-tile__link {
	position: relative;
}

.wn-el-category-tile__media {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.04);
	transition: border-color 0.2s ease;
}

.wn-el-category-tiles--circle .wn-el-category-tile__media {
	border-radius: 999px;
}

.wn-el-category-tiles--rounded .wn-el-category-tile__media {
	border-radius: 16px;
}

.wn-el-category-tile__media img {
	width: 100%;
	height: 100%;
}

.wn-el-category-tile__label {
	text-align: center;
	font-weight: 600;
	transition: color 0.2s ease;
}

.wn-el-category-tile__count {
	font-weight: 400;
	opacity: 0.7;
}

.wn-el-category-tiles--label-overlay .wn-el-category-tile__label {
	position: absolute;
	left: 0.75rem;
	right: 0.75rem;
	bottom: 0.75rem;
	color: #fff;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.wn-el-category-tile--coming-soon .wn-el-category-tile__trigger {
	cursor: default;
	outline: none;
}

.wn-el-category-tile__soon {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem;
	background: transparent;
	opacity: 0;
	transition: opacity 0.2s ease, background-color 0.2s ease;
	border-radius: inherit;
	pointer-events: none;
	text-align: center;
}

.wn-el-category-tile--coming-soon .wn-el-category-tile__trigger:hover .wn-el-category-tile__soon,
.wn-el-category-tile--coming-soon .wn-el-category-tile__trigger:focus-visible .wn-el-category-tile__soon,
.wn-el-category-tile--coming-soon.wn-el-category-tile--soon-active .wn-el-category-tile__soon {
	opacity: 1;
	background-color: rgba(0, 0, 0, 0.65);
}

.wn-el-category-tile__soon-text {
	display: block;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.25;
	text-transform: uppercase;
}

.wn-el-hover-lift .wn-el-category-tile--coming-soon .wn-el-category-tile__trigger:hover,
.wn-el-hover-both .wn-el-category-tile--coming-soon .wn-el-category-tile__trigger:hover {
	transform: none;
}

.wn-el-hover-zoom .wn-el-category-tile--coming-soon .wn-el-category-tile__trigger:hover .wn-el-category-tile__media img,
.wn-el-hover-both .wn-el-category-tile--coming-soon .wn-el-category-tile__trigger:hover .wn-el-category-tile__media img {
	transform: none;
}

/* Hero banner */
.wn-el-hero__slider {
	position: relative;
}

.wn-el-hero__slide {
	position: relative;
	display: flex;
	overflow: hidden;
	isolation: isolate;
}

.wn-el-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.wn-el-hero__bg img,
.wn-el-hero__bg-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transform: scale(1) translate3d(0, 0, 0);
	transform-origin: center center;
	will-change: transform;
	backface-visibility: hidden;
}

/* Ken Burns needs extra bleed so scale animation never exposes edges */
.wn-el-hero--ken-burns .wn-el-hero__bg img,
.wn-el-hero--ken-burns .wn-el-hero__bg-img {
	width: 116%;
	height: 116%;
	max-width: none;
	animation: wn-el-ken-burns 28s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.wn-el-hero--ken-burns .wn-el-hero__bg {
	inset: -8%;
	width: 116%;
	height: 116%;
	left: -8%;
	top: -8%;
}

@keyframes wn-el-ken-burns {
	0%,
	100% {
		transform: scale(1) translate3d(0, 0, 0);
	}
	50% {
		transform: scale(1.06) translate3d(-1.25%, -0.75%, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.wn-el-hero--ken-burns .wn-el-hero__bg {
		inset: 0;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
	}

	.wn-el-hero--ken-burns .wn-el-hero__bg img,
	.wn-el-hero--ken-burns .wn-el-hero__bg-img {
		animation: none;
		width: 100%;
		height: 100%;
	}
}

.wn-el-hero--v-top .wn-el-hero__slide {
	align-items: flex-start;
}

.wn-el-hero--v-center .wn-el-hero__slide {
	align-items: center;
}

.wn-el-hero--v-bottom .wn-el-hero__slide {
	align-items: flex-end;
}

.wn-el-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.35);
}

.wn-el-hero__content {
	position: relative;
	z-index: 2;
	width: min(100%, 640px);
	padding: 2.5rem;
}

.wn-el-hero--align-left .wn-el-hero__content {
	margin-right: auto;
	text-align: left;
}

.wn-el-hero--align-center .wn-el-hero__content {
	margin-inline: auto;
	text-align: center;
}

.wn-el-hero--align-right .wn-el-hero__content {
	margin-left: auto;
	text-align: right;
}

.wn-el-hero__kicker {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.wn-el-hero__heading {
	margin: 0 0 0.75rem;
	color: #fff;
}

.wn-el-hero__logo-wrap {
	display: block;
	width: fit-content;
	max-width: 100%;
	line-height: 0;
	margin-bottom: 0.75rem;
}

.wn-el-hero--align-center .wn-el-hero__logo-wrap {
	margin-inline: auto;
}

.wn-el-hero--align-right .wn-el-hero__logo-wrap {
	margin-left: auto;
}

.wn-el-hero__logo-link {
	display: inline-block;
	max-width: 100%;
	line-height: 0;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.wn-el-hero__logo-link:hover {
	opacity: 0.88;
}

.wn-el-hero__logo {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.wn-el-hero__subheading {
	margin: 0 0 1.25rem;
	color: #fff;
}

.wn-el-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.wn-el-hero--align-center .wn-el-hero__buttons {
	justify-content: center;
}

.wn-el-hero--align-right .wn-el-hero__buttons {
	justify-content: flex-end;
}

.wn-el-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.wn-el-hero__button--primary {
	background: #fff;
	color: #1a1a1a;
}

.wn-el-hero__button--secondary {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.8);
}

/* Newsletter */
.wn-el-newsletter {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.wn-el-newsletter--stacked {
	flex-direction: column;
	align-items: stretch;
}

.wn-el-newsletter--stacked .wn-el-newsletter__form {
	margin-inline: auto;
}

.wn-el-newsletter__copy,
.wn-el-newsletter__form-wrap {
	flex: 1;
	min-width: 0;
}

.wn-el-newsletter__heading {
	margin: 0 0 0.5rem;
}

.wn-el-newsletter__text,
.wn-el-newsletter__privacy {
	margin: 0;
}

.wn-el-newsletter__form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.75rem;
}

.wn-el-newsletter--stacked .wn-el-newsletter__form {
	justify-content: center;
}

.wn-el-newsletter__input {
	flex: 1 1 220px;
	min-width: 0;
	padding: 0.75rem 1.25rem;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 999px;
	transition: border-color 0.2s ease;
}

.wn-el-newsletter__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.wn-el-newsletter__button {
	padding: 0.75rem 1.5rem;
	border: 0;
	border-radius: 999px;
	background: #1a1a1a;
	color: #fff;
	cursor: pointer;
	font-weight: 600;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.wn-el-newsletter__message {
	width: 100%;
	margin: 0;
	font-size: 0.875rem;
}

.wn-el-newsletter__message:empty {
	display: none;
}

.wn-el-newsletter__message.is-success {
	color: #1b7f3b;
}

.wn-el-newsletter__message.is-error {
	color: #b42318;
}

.wn-el-newsletter__privacy {
	margin-top: 0.75rem;
	font-size: 0.8125rem;
	opacity: 0.8;
}

.wn-el-newsletter__privacy a {
	color: inherit;
	text-decoration: underline;
}

.wn-el-newsletter__form--coupon .wn-el-newsletter__input {
	flex: 1 1 280px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-align: center;
	background: #fff7ed;
	border: 2px dashed #ea580c;
	cursor: text;
}

.wn-el-newsletter__form--coupon .wn-el-newsletter__button {
	background: #0f172a;
}

.wn-el-newsletter__form--coupon .wn-el-newsletter__button:hover,
.wn-el-newsletter__form--coupon .wn-el-newsletter__button:focus {
	background: #1e293b;
}

/* Product carousel */
.wn-el-product-carousel__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.wn-el-product-carousel__heading {
	margin: 0;
}

.wn-el-product-carousel__view-all {
	text-decoration: none;
	font-weight: 600;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.wn-el-product-carousel .swiper-slide {
	height: auto;
	display: flex;
}

.wn-el-product-carousel .woocommerce-loop-product__title,
.wn-el-product-carousel .product-title,
.wn-el-product-carousel .product-title a {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	word-break: break-word;
}

/* Each slide carries its own ul.products so theme loop styles apply */
.wn-el-product-carousel__product {
	display: block !important;
	width: 100%;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}

.wn-el-product-carousel__product > .product,
.wn-el-product-carousel__product > li.product {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	float: none !important;
}

/* Editor placeholder — no live WC query */
.wn-el-product-carousel--editor-placeholder {
	padding: 1rem 0;
}

.wn-el-product-carousel__placeholder-grid {
	display: grid;
	grid-template-columns: repeat(var(--wn-el-columns), minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.wn-el-product-carousel__placeholder-card {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1rem;
	border: 1px dashed rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.02);
}

.wn-el-product-carousel__placeholder-card span {
	display: block;
	border-radius: 4px;
	background: rgba(0, 0, 0, 0.08);
}

.wn-el-product-carousel__placeholder-card span:first-child {
	aspect-ratio: 1;
}

.wn-el-product-carousel__placeholder-card span:nth-child(2) {
	height: 0.75rem;
	width: 80%;
}

.wn-el-product-carousel__placeholder-card span:nth-child(3) {
	height: 0.75rem;
	width: 40%;
}

.wn-el-product-carousel__placeholder-note {
	margin: 1rem 0 0;
	font-size: 0.8125rem;
	opacity: 0.7;
}

/* Responsive fallbacks */
@media (max-width: 767px) {
	.wn-el-usp--divided .wn-el-usp__item:not(:last-child) {
		border-right: 0;
		padding-right: 0;
	}

	.wn-el-promo-cards--left .wn-el-promo-card,
	.wn-el-promo-cards--right .wn-el-promo-card {
		flex-direction: column;
	}

	.wn-el-promo-cards--left .wn-el-promo-card__media,
	.wn-el-promo-cards--right .wn-el-promo-card__media {
		flex-basis: auto !important;
		max-width: 100% !important;
	}

	.wn-el-newsletter {
		flex-direction: column;
		align-items: stretch;
	}

	.wn-el-hero__content {
		padding: 1.5rem;
	}
}

/* Set spotlight */
.wn-el-set-spotlight__grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 1rem;
	min-height: 320px;
}

.wn-el-set-spotlight__card {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 16px;
	background: #1a1a1a;
	color: #fff;
	text-decoration: none;
	min-height: 150px;
}

.wn-el-set-spotlight__card--feature {
	grid-row: span 2;
	min-height: 100%;
}

.wn-el-set-spotlight__media {
	position: absolute;
	inset: 0;
}

.wn-el-set-spotlight__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wn-el-set-spotlight__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.wn-el-set-spotlight__body {
	position: relative;
	z-index: 1;
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.25rem;
}

.wn-el-set-spotlight__eyebrow {
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #ea4c24;
	font-weight: 600;
}

.wn-el-set-spotlight__title {
	margin: 0;
	font-size: 1.35rem;
	color: #fff;
}

.wn-el-set-spotlight__text {
	margin: 0;
	opacity: 0.9;
	color: #fff;
}

.wn-el-set-spotlight__button {
	display: inline-flex;
	align-self: flex-start;
	margin-top: 0.25rem;
	padding: 0.65rem 1.25rem;
	border-radius: 999px;
	background: #fff;
	color: #1a1a1a;
	font-weight: 600;
}

/* Loyalty promo */
.wn-el-loyalty-promo__header {
	margin-bottom: 1.5rem;
	max-width: 720px;
}

.wn-el-loyalty-promo__heading {
	margin: 0 0 0.5rem;
}

.wn-el-loyalty-promo__intro {
	margin: 0 0 0.75rem;
	opacity: 0.85;
}

.wn-el-loyalty-promo__how-to {
	color: #ea4c24;
	font-weight: 600;
	text-decoration: none;
}

.wn-el-loyalty-promo__grid {
	display: grid;
	grid-template-columns: repeat(var(--wn-el-columns), minmax(0, 1fr));
	gap: 1rem;
}

.wn-el-loyalty-promo__tier {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 1.25rem;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	background: #fff;
}

.wn-el-loyalty-promo__badge {
	display: inline-flex;
	align-self: flex-start;
	padding: 0.25rem 0.75rem;
	border-radius: 999px;
	background: rgba(234, 76, 36, 0.12);
	color: #ea4c24;
	font-weight: 700;
	font-size: 0.875rem;
}

.wn-el-loyalty-promo__threshold {
	margin: 0;
	font-weight: 700;
	font-size: 1.125rem;
}

.wn-el-loyalty-promo__benefits {
	margin: 0;
	padding-left: 1.1rem;
}

.wn-el-loyalty-promo__benefits li + li {
	margin-top: 0.35rem;
}

.wn-el-loyalty-promo__button {
	display: inline-flex;
	align-self: flex-start;
	margin-top: auto;
	padding: 0.65rem 1.25rem;
	border-radius: 999px;
	background: #1a1a1a;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

/* Reviews strip */
.wn-el-reviews-strip__header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.wn-el-reviews-strip__heading {
	margin: 0;
}

.wn-el-reviews-strip__summary {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.wn-el-reviews-strip__stars {
	display: inline-flex;
	gap: 0.15rem;
	color: #ea4c24;
}

.wn-el-reviews-strip__star {
	opacity: 0.25;
}

.wn-el-reviews-strip__star.is-filled {
	opacity: 1;
}

.wn-el-reviews-strip__aggregate {
	font-weight: 600;
}

.wn-el-reviews-strip__card {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	padding: 1.25rem;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	background: #fff;
}

.wn-el-reviews-strip__title {
	margin: 0;
	font-size: 1rem;
}

.wn-el-reviews-strip__excerpt {
	margin: 0;
	flex: 1;
	opacity: 0.85;
}

.wn-el-reviews-strip__meta {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	font-size: 0.8125rem;
	opacity: 0.75;
}

/* Trustpilot */
.wn-el-trustpilot__heading {
	margin: 0 0 1.25rem;
}

.wn-el-trustpilot__widget {
	width: 100%;
	overflow: hidden;
}

.wn-el-trustpilot__widget .trustpilot-widget {
	display: block;
	width: 100%;
}

/* News row */
.wn-el-news-row__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.wn-el-news-row__heading {
	margin: 0;
}

.wn-el-news-row__view-all {
	color: #ea4c24;
	font-weight: 600;
	text-decoration: none;
}

.wn-el-news-row__grid {
	display: grid;
	grid-template-columns: repeat(var(--wn-el-columns), minmax(0, 1fr));
	gap: 1rem;
}

.wn-el-news-row__card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	background: #fff;
}

.wn-el-news-row__media {
	display: block;
	flex: 0 0 auto;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background-color: #1a1817;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	text-decoration: none;
	transition: transform 0.25s ease;
}

.wn-el-news-row__media--placeholder {
	background-image: linear-gradient(135deg, #332e2b 0%, #1a1817 100%);
}

.wn-el-hover-lift:hover .wn-el-news-row__media--has-image,
.wn-el-hover-lift:focus-within .wn-el-news-row__media--has-image {
	transform: scale(1.03);
}

.wn-el-news-row__body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.25rem;
	flex: 1;
}

.wn-el-news-row__date {
	font-size: 0.8125rem;
	opacity: 0.7;
}

.wn-el-news-row__title {
	margin: 0;
	font-size: 1.05rem;
}

.wn-el-news-row__title a {
	color: inherit;
	text-decoration: none;
}

.wn-el-news-row__excerpt {
	margin: 0;
	flex: 1;
	opacity: 0.85;
}

.wn-el-news-row__read-more {
	color: #ea4c24;
	font-weight: 600;
	text-decoration: none;
}

@media (max-width: 1024px) {
	.wn-el-set-spotlight__grid {
		grid-template-columns: 1fr;
	}

	.wn-el-set-spotlight__card--feature {
		grid-row: auto;
		min-height: 280px;
	}

	.wn-el-loyalty-promo__grid,
	.wn-el-news-row__grid {
		grid-template-columns: repeat(var(--wn-el-columns-tablet), minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.wn-el-loyalty-promo__grid,
	.wn-el-news-row__grid {
		grid-template-columns: repeat(var(--wn-el-columns-mobile), minmax(0, 1fr));
	}
}
