.guru-carousel {
	--guru-gap: 20px;
	--guru-per-view: 4;
	--guru-accent: var(--e-global-color-primary, #111111);
	--guru-card-bg: #ffffff;
	--guru-card-text: #171717;
	--guru-muted: #6f6f6f;
	--guru-border-color: rgba(0, 0, 0, 0.10);
	--guru-border-width: 1px;
	--guru-radius: 10px;
	--guru-card-padding: 18px;
	--guru-button-bg: var(--guru-accent);
	--guru-button-text: #ffffff;
	--guru-badge-bg: #d92525;
	--guru-badge-text: #ffffff;
	--guru-arrow-color: #111111;
	--guru-arrow-bg: #ffffff;
	--guru-dot-color: #bdbdbd;
	--guru-dot-active: var(--guru-accent);
	--guru-heading-padding-top: 0px;
	--guru-heading-padding-bottom: 20px;
	--guru-dots-padding-top: 18px;
	--guru-dots-padding-bottom: 0px;
	--guru-image-fit: cover;
	position: relative;
	width: 100%;
	box-sizing: border-box;
}

.guru-carousel *,
.guru-carousel *::before,
.guru-carousel *::after {
	box-sizing: border-box;
}

.guru-carousel__header {
	display: grid;
	align-items: center;
	gap: 18px;
	margin: 0;
	padding-top: var(--guru-heading-padding-top);
	padding-bottom: var(--guru-heading-padding-bottom);
}

.guru-carousel--title-left .guru-carousel__header {
	grid-template-columns: minmax(0, 1fr) auto;
}

.guru-carousel--title-center .guru-carousel__header {
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.guru-carousel--title-right .guru-carousel__header {
	grid-template-columns: auto minmax(0, 1fr);
}

.guru-carousel__heading {
	margin: 0;
	font-size: clamp(1.35rem, 2.2vw, 2rem);
	line-height: 1.2;
}

.guru-carousel--title-left .guru-carousel__heading {
	grid-column: 1;
	text-align: left;
}

.guru-carousel--title-center .guru-carousel__heading {
	grid-column: 2;
	text-align: center;
}

.guru-carousel--title-right .guru-carousel__heading {
	grid-column: 2;
	text-align: right;
}

.guru-carousel__see-all {
	color: inherit;
	font-size: .95rem;
	font-weight: 650;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
}

.guru-carousel__see-all:hover,
.guru-carousel__see-all:focus {
	text-decoration: underline;
}

.guru-carousel--title-left .guru-carousel__see-all {
	grid-column: 2;
	justify-self: end;
}

.guru-carousel--title-center .guru-carousel__see-all {
	grid-column: 3;
	justify-self: end;
}

.guru-carousel--title-right .guru-carousel__see-all {
	grid-column: 1;
	grid-row: 1;
	justify-self: start;
}

.guru-carousel__stage {
	position: relative;
	display: flex;
	align-items: stretch;
	min-width: 0;
}

.guru-carousel__viewport {
	width: 100%;
	min-width: 0;
	overflow: hidden;
	touch-action: pan-y;
}

.guru-carousel__track {
	display: flex;
	align-items: stretch;
	gap: var(--guru-gap);
	will-change: transform;
	transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.guru-carousel__slide {
	display: flex;
	flex: 0 0 calc((100% - (var(--guru-gap) * (var(--guru-per-view) - 1))) / var(--guru-per-view));
	min-width: 0;
	height: auto;
}

.guru-carousel--equal-height .guru-carousel__slide {
	align-self: stretch;
}

.guru-carousel--equal-height .guru-product-card {
	height: 100%;
	min-height: 100%;
}

.guru-product-card {
	position: relative;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	width: 100%;
	overflow: hidden;
	margin: 0;
	background: var(--guru-card-bg);
	color: var(--guru-card-text);
	border: var(--guru-border-width) solid var(--guru-border-color);
	border-radius: var(--guru-radius);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.guru-product-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.11);
}

.guru-product-card__media {
	position: relative;
	overflow: hidden;
	background: #f4f4f4;
}

.guru-product-card__image-link {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.guru-carousel--ratio-portrait .guru-product-card__image-link {
	aspect-ratio: 4 / 5;
}

.guru-carousel--ratio-landscape .guru-product-card__image-link {
	aspect-ratio: 4 / 3;
}

.guru-carousel--ratio-natural .guru-product-card__image-link {
	aspect-ratio: auto;
}

.guru-product-card__image,
.guru-product-card img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: var(--guru-image-fit);
	transition: transform 320ms ease;
}

.guru-carousel--ratio-natural .guru-product-card__image,
.guru-carousel--ratio-natural .guru-product-card img {
	height: auto;
}

.guru-product-card:hover .guru-product-card__image {
	transform: scale(1.025);
}

.guru-product-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	min-height: 30px;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--guru-badge-bg);
	color: var(--guru-badge-text);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.guru-product-card__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: var(--guru-card-padding);
}

.guru-product-card__categories {
	margin-bottom: 7px;
	color: var(--guru-muted);
	font-size: 12px;
	line-height: 1.4;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.guru-product-card__categories a {
	color: inherit;
	text-decoration: none;
}

.guru-product-card__title {
	margin: 0 0 10px;
	font-size: 1rem;
	font-weight: 650;
	line-height: 1.35;
}

.guru-product-card__title a {
	color: inherit;
	text-decoration: none;
}

.guru-product-card__rating {
	display: flex;
	align-items: center;
	gap: 6px;
	min-height: 18px;
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 1;
}

.guru-product-card__stars {
	position: relative;
	display: inline-block;
	overflow: hidden;
	color: rgba(128, 128, 128, .30);
	font-size: 15px;
	letter-spacing: 1px;
	white-space: nowrap;
}

.guru-product-card__stars > span {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	color: #f0a500;
	white-space: nowrap;
}

.guru-product-card__rating-count {
	color: var(--guru-muted);
	font-size: 12px;
}

.guru-product-card__price {
	margin: 0 0 16px;
	color: inherit;
	font-size: 1.05rem;
	font-weight: 700;
}

.guru-product-card__price del {
	opacity: .55;
	font-weight: 400;
}

.guru-product-card__price ins {
	text-decoration: none;
}

.guru-product-card__actions {
	margin-top: auto;
}

.guru-product-card__button.button,
.guru-product-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 42px;
	margin: 0;
	padding: 10px 16px;
	border: 0;
	border-radius: 5px;
	background: var(--guru-button-bg);
	color: var(--guru-button-text);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: filter 160ms ease, transform 160ms ease;
}

.guru-product-card__button.button:hover,
.guru-product-card__button:hover {
	color: var(--guru-button-text);
	filter: brightness(1.15);
	transform: translateY(-1px);
}

.guru-carousel__arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 50%;
	background: var(--guru-arrow-bg);
	color: var(--guru-arrow-color);
	box-shadow: 0 4px 18px rgba(0, 0, 0, .14);
	font-size: 20px;
	line-height: 1;
	transform: translateY(-50%);
	cursor: pointer;
	transition: opacity 160ms ease, transform 160ms ease;
}

.guru-carousel__arrow:hover {
	color: var(--guru-arrow-color);
	transform: translateY(-50%) scale(1.05);
}

.guru-carousel__arrow:disabled {
	opacity: .3;
	cursor: default;
}

.guru-carousel__arrow--prev {
	left: -18px;
}

.guru-carousel__arrow--next {
	right: -18px;
}

.guru-carousel__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding-top: var(--guru-dots-padding-top);
	padding-bottom: var(--guru-dots-padding-bottom);
}

.guru-carousel__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--guru-dot-color);
	cursor: pointer;
	transition: width 180ms ease, border-radius 180ms ease, background-color 180ms ease;
}

.guru-carousel__dot.is-active {
	width: 24px;
	border-radius: 999px;
	background: var(--guru-dot-active);
}

.guru-carousel--minimal .guru-product-card {
	border-width: 0;
	border-radius: 0;
	box-shadow: none;
}

.guru-carousel--minimal .guru-product-card:hover {
	box-shadow: none;
}

.guru-carousel--minimal .guru-product-card__content {
	padding-right: 0;
	padding-left: 0;
}

.guru-carousel--dark {
	--guru-card-bg: #111111;
	--guru-card-text: #f4f4f4;
	--guru-muted: #b2b2b2;
	--guru-border-color: rgba(255, 255, 255, .14);
	--guru-accent: #f1f1f1;
	--guru-button-bg: #f1f1f1;
	--guru-button-text: #111111;
}

.guru-carousel--dark .guru-product-card {
	box-shadow: 0 8px 26px rgba(0, 0, 0, .34);
}

.guru-carousel--dark .guru-product-card__media {
	background: #1c1c1c;
}

.guru-carousel--shadow-none .guru-product-card,
.guru-carousel--shadow-none .guru-product-card:hover {
	box-shadow: none;
}

.guru-carousel--shadow-small .guru-product-card {
	box-shadow: 0 3px 12px rgba(0, 0, 0, .07);
}

.guru-carousel--shadow-small .guru-product-card:hover {
	box-shadow: 0 6px 18px rgba(0, 0, 0, .11);
}

.guru-carousel--shadow-medium .guru-product-card {
	box-shadow: 0 6px 24px rgba(0, 0, 0, .10);
}

.guru-carousel--shadow-medium .guru-product-card:hover {
	box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
}

.guru-carousel--shadow-large .guru-product-card {
	box-shadow: 0 14px 42px rgba(0, 0, 0, .16);
}

.guru-carousel--shadow-large .guru-product-card:hover {
	box-shadow: 0 20px 52px rgba(0, 0, 0, .22);
}

.guru-carousel-empty {
	padding: 18px;
	border: 1px dashed rgba(0, 0, 0, .2);
	text-align: center;
}

@media (max-width: 1100px) {
	.guru-carousel__arrow--prev { left: 4px; }
	.guru-carousel__arrow--next { right: 4px; }
}

@media (max-width: 600px) {
	.guru-carousel__header,
	.guru-carousel--title-left .guru-carousel__header,
	.guru-carousel--title-center .guru-carousel__header,
	.guru-carousel--title-right .guru-carousel__header {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.guru-carousel--title-center .guru-carousel__heading {
		width: 100%;
	}

	.guru-carousel--title-right .guru-carousel__heading {
		margin-left: auto;
	}

	.guru-carousel__arrow {
		width: 38px;
		height: 38px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.guru-carousel__track,
	.guru-product-card,
	.guru-product-card__image,
	.guru-carousel__arrow,
	.guru-carousel__dot {
		transition: none !important;
	}
}


/* Prevent generic theme/Elementor button rules from repainting carousel navigation. */
.guru-carousel .guru-carousel__arrow,
.guru-carousel .guru-carousel__arrow:hover,
.guru-carousel .guru-carousel__arrow:focus,
.guru-carousel .guru-carousel__arrow:active {
	background-color: var(--guru-arrow-bg) !important;
	background-image: none !important;
	color: var(--guru-arrow-color) !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}

.guru-carousel .guru-carousel__arrow span {
	background: transparent !important;
	color: inherit !important;
	fill: currentColor !important;
}

.guru-carousel .guru-carousel__dot,
.guru-carousel .guru-carousel__dot:hover,
.guru-carousel .guru-carousel__dot:focus {
	background: var(--guru-dot-color) !important;
	background-color: var(--guru-dot-color) !important;
	background-image: none !important;
	border: 0 !important;
	box-shadow: none !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}

.guru-carousel .guru-carousel__dot.is-active,
.guru-carousel .guru-carousel__dot.is-active:hover,
.guru-carousel .guru-carousel__dot.is-active:focus {
	background: var(--guru-dot-active) !important;
	background-color: var(--guru-dot-active) !important;
}
