/* ASD Experiencias — wizard configurator (mobile-first, no build) */

/* Experience single product: hide the product image gallery and center the
 * summary column so only the configurator form shows. */
.asd-exp-single .woocommerce-product-gallery,
.asd-exp-single .single-product__media,
.asd-exp-single .product .images {
	display: none !important;
}

.asd-exp-single .product .summary,
.asd-exp-single .product .entry-summary,
.asd-exp-single .single-product__inner .entry-summary {
	float: none !important;
	width: 100% !important;
	max-width: 640px;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* Breadcrumbs add noise above a form meant to be the whole page. */
.asd-exp-single .kadence-breadcrumbs,
.asd-exp-single .woocommerce-breadcrumb {
	display: none !important;
}

/* Categories/tags belong to a normal catalog page, not a single-purpose form. */
.asd-exp-single .product_meta {
	display: none !important;
}

.asd-exp-single .summary > .price,
.asd-exp-single .woocommerce-product-details__short-description,
.asd-exp-single .woocommerce-tabs {
	display: none !important;
}

.asd-exp-single .woocommerce-notices-wrapper {
	display: none !important;
}

.asd-exp-single #ht-ctc-chat {
	display: none !important;
}

.asd-exp-reservation-banner {
	margin: 0.85rem 0 1.35rem;
}

.asd-exp-configurator {
	--asd-exp-accent: #b9376b;
	--asd-exp-accent-soft: #fbeaf0;
	--asd-exp-border: #e3e3e3;
	--asd-exp-radius: 14px;
	margin: 0 0 1.5em;
}

/* Partner card: the first signal in the configurator, making the As de Sueños
 * x hotel alliance explicit before the shopper starts choosing details. */
.asd-exp-partner-card {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	width: 100%;
	max-width: 560px;
	margin: 0 auto 1.35em;
	padding: 18px 22px;
	border: 2px solid rgba(185, 55, 107, 0.38);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(18, 59, 57, 0.08);
}

.asd-exp-partner-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 18px;
	background: var(--asd-exp-accent-soft);
	color: var(--asd-exp-accent);
}

.asd-exp-partner-card__copy {
	min-width: 0;
	display: grid;
	gap: 3px;
}

.asd-exp-partner-card__eyebrow {
	color: var(--asd-exp-accent);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.1;
	text-transform: uppercase;
}

.asd-exp-partner-card__name {
	color: #123b39;
	font-size: 1.42rem;
	font-weight: 850;
	line-height: 1.1;
	overflow-wrap: anywhere;
}

.asd-exp-partner-card__meta {
	color: #6f8583;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
}

@media (max-width: 480px) {
	.asd-exp-partner-card {
		grid-template-columns: 54px minmax(0, 1fr);
		gap: 14px;
		padding: 15px;
		border-radius: 16px;
	}

	.asd-exp-partner-card__icon {
		width: 54px;
		height: 54px;
		border-radius: 15px;
	}

	.asd-exp-partner-card__icon svg {
		width: 25px;
		height: 25px;
	}

	.asd-exp-partner-card__eyebrow {
		font-size: 0.68rem;
		letter-spacing: 0.1em;
	}

	.asd-exp-partner-card__name {
		font-size: 1.12rem;
	}

	.asd-exp-partner-card__meta {
		font-size: 0.86rem;
	}
}

/* Progress bar */
.asd-exp-progress {
	display: flex;
	gap: 8px;
	margin: 0 0 1.5em;
}

.asd-exp-progress__dot {
	flex: 1;
	height: 6px;
	border-radius: 999px;
	background: var(--asd-exp-border);
	transition: background-color 0.25s ease;
}

.asd-exp-progress__dot.is-active {
	background: var(--asd-exp-accent);
}

/* Slides */
.asd-exp-slide {
	display: none;
}

.asd-exp-slide.is-active {
	display: block;
	animation: asd-exp-fade 0.25s ease;
}

@keyframes asd-exp-fade {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: translateY(0); }
}

.asd-exp-step__eyebrow {
	margin: 0 0 0.15em;
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	opacity: 0.6;
}

.asd-exp-step__title {
	margin: 0 0 0.85em;
	font-size: 1.2rem;
}

/* Image tiles */
.asd-exp-tiles {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
	margin-bottom: 1.25em;
	transition: gap 0.2s ease;
}

/* Once a room/decoration is chosen, the choice grid collapses to a compact
 * row of thumbnails so the selected-option story panel below becomes the
 * visual focus. The JS toggles `--compact` on selection; these base rules
 * apply on every screen size (the mobile block below only tightens them
 * further). */
.asd-exp-tiles--compact {
	grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
	gap: 10px;
	margin-bottom: 1em;
}

.asd-exp-tiles--compact .asd-exp-tile {
	/* Compact thumbnails use a fixed short height instead of the 16:9 ratio so
	 * many fit per row; the slight crop here is acceptable at thumbnail scale. */
	aspect-ratio: auto;
	height: 96px;
	border-radius: 11px;
}

.asd-exp-tiles--compact .asd-exp-tile__overlay {
	padding: 22px 10px 8px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.06));
}

.asd-exp-tiles--compact .asd-exp-tile__name {
	font-size: 0.86rem;
	line-height: 1.15;
}

.asd-exp-tiles--compact .asd-exp-tile__price {
	margin-top: 1px;
	font-size: 0.76rem;
}

.asd-exp-tiles--compact .asd-exp-tile__check {
	top: 6px;
	right: 6px;
	width: 22px;
	height: 22px;
}

.asd-exp-tiles--compact .asd-exp-tile__check::after {
	font-size: 0.8rem;
}

.asd-exp-tile {
	position: relative;
	display: block;
	/* Tile keeps a fixed 16:9 footprint regardless of the source photo's own
	 * ratio — see .asd-exp-tile__img-backdrop/-fg for how the photo itself
	 * shows uncropped inside it. */
	aspect-ratio: 16 / 9;
	border-radius: var(--asd-exp-radius);
	overflow: hidden;
	border: 2px solid var(--asd-exp-border);
	cursor: pointer;
	background: #f3f3f3;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, border-radius 0.2s ease;
}

.asd-exp-tile:hover {
	border-color: var(--asd-exp-accent);
}

.asd-exp-tile.is-selected {
	border-color: var(--asd-exp-accent);
	box-shadow: 0 0 0 3px rgba(185, 55, 107, 0.18);
}

.asd-exp-tile__input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	margin: 0;
}

.asd-exp-tile__input:focus-visible ~ .asd-exp-tile__overlay {
	outline: 2px solid #fff;
	outline-offset: -4px;
}

.asd-exp-tile__img {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/* Blurred, scaled-up backdrop fills the tile; the real photo sits on top
 * uncropped (object-fit: contain), so vertical/square source photos show
 * in full instead of being cut into by a hard 16:9 crop. */
.asd-exp-tile__img-backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(14px) brightness(0.75);
	transform: scale(1.15);
}

.asd-exp-tile__img-fg {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.asd-exp-tile__img--placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(135deg, #ececec 25%, transparent 25%) -10px 0,
		linear-gradient(225deg, #ececec 25%, transparent 25%) -10px 0,
		linear-gradient(315deg, #ececec 25%, transparent 25%),
		linear-gradient(45deg, #ececec 25%, transparent 25%);
	background-size: 20px 20px;
	background-color: #f7f7f7;
}

.asd-exp-tile__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 14px 14px 12px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.asd-exp-tile__name {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	line-height: 1.2;
}

.asd-exp-tile__price {
	display: block;
	margin-top: 2px;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.9);
}

.asd-exp-tile__check {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #fff;
	opacity: 0;
	transform: scale(0.6);
	transition: opacity 0.15s ease, transform 0.15s ease;
}

.asd-exp-tile__check::after {
	content: "✓";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--asd-exp-accent);
	font-size: 0.95rem;
	font-weight: 700;
}

.asd-exp-tile.is-selected .asd-exp-tile__check {
	opacity: 1;
	transform: scale(1);
}

/* On small screens the compact thumbnails can shrink further, fitting more
 * per row without dwarfing the story panel. Only the deltas from the base
 * compact rules live here. */
@media (max-width: 640px) {
	.asd-exp-tiles--compact {
		grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
		gap: 8px;
		margin-bottom: 0.9em;
	}

	.asd-exp-tiles--compact .asd-exp-tile {
		height: 88px;
	}

	.asd-exp-tiles--compact .asd-exp-tile__overlay {
		padding: 24px 8px 7px;
		background: linear-gradient(to top, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.08));
	}

	.asd-exp-tiles--compact .asd-exp-tile__name {
		font-size: 0.78rem;
		line-height: 1.12;
	}

	.asd-exp-tiles--compact .asd-exp-tile__price {
		font-size: 0.72rem;
	}
}

/* Empty-decoration notice */
.asd-exp-empty {
	margin: 0 0 1.25em;
	padding: 12px 14px;
	border-radius: var(--asd-exp-radius);
	background: var(--asd-exp-accent-soft);
	color: #7a2547;
	font-size: 0.95rem;
}

/* Mobile-first selected-option details. */
@keyframes asd-exp-hl-pop {
	0% { opacity: 0; transform: scale(0.3); }
	60% { opacity: 1; transform: scale(1.2); }
	100% { transform: scale(1); }
}

.asd-exp-highlights-panel {
	margin: -0.2em 0 1.25em;
}

.asd-exp-selection-story {
	display: grid;
	gap: 0;
	overflow: hidden;
	border: 1px solid var(--asd-exp-border);
	border-radius: var(--asd-exp-radius);
	background: #fff;
	box-shadow: 0 14px 34px rgba(18, 59, 57, 0.1);
}

/* Photo tile: a blurred, scaled-up copy of the photo fills the fixed 16:9
 * box as a backdrop, and the real photo sits centered on top uncropped
 * (object-fit: contain). This shows the whole photo — including portrait or
 * square shots from Instagram — without cropping into faces or cutting off
 * content the way object-fit: cover would. It's a <button>, clicking it
 * opens the lightbox with the true, uncropped photo. */
.asd-exp-photo-tile {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
	border: none;
	overflow: hidden;
	background: #f6f7f7;
	cursor: zoom-in;
	display: block;
}

.asd-exp-photo-tile__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(18px) brightness(0.75);
	transform: scale(1.15);
}

.asd-exp-photo-tile__fg {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.asd-exp-photo-tile__hint {
	position: absolute;
	bottom: 8px;
	right: 8px;
	width: 26px;
	height: 26px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.5);
}

.asd-exp-photo-tile__hint::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	border: 2px solid #fff;
	border-radius: 3px;
	transform: translate(-50%, -50%);
}

.asd-exp-selection-story__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	display: block;
}

/* Photo carousel: same footprint as the single-image case above, shown
 * instead of it when an option has more than one photo. Starts on the
 * primary photo (index 0). */
.asd-exp-carousel {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f6f7f7;
}

.asd-exp-carousel__track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.35s ease;
}

.asd-exp-carousel__slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
}

.asd-exp-carousel__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	font-size: 0;
	cursor: pointer;
}

.asd-exp-carousel__nav::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.asd-exp-carousel__nav--prev {
	left: 10px;
}

.asd-exp-carousel__nav--prev::before {
	transform: translate(-30%, -50%) rotate(-135deg);
}

.asd-exp-carousel__nav--next {
	right: 10px;
}

.asd-exp-carousel__nav--next::before {
	transform: translate(-70%, -50%) rotate(45deg);
}

.asd-exp-carousel__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	display: flex;
	justify-content: center;
	gap: 6px;
}

.asd-exp-carousel__dot {
	width: 7px;
	height: 7px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.6);
	cursor: pointer;
}

.asd-exp-carousel__dot.is-active {
	background: #fff;
}

.asd-exp-selection-story__content {
	padding: 14px;
	background: #fcfafb;
}

.asd-exp-selection-story__eyebrow,
.asd-exp-addon-receipt__eyebrow {
	margin: 0 0 5px;
	font-size: 0.72rem;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--asd-exp-accent);
}

.asd-exp-selection-story__title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.asd-exp-selection-story__title,
.asd-exp-addon-receipt__title {
	margin: 0;
	font-size: 1rem;
	line-height: 1.2;
	color: #123b39;
	font-weight: 800;
}

.asd-exp-selection-story__price {
	flex: 0 0 auto;
	color: var(--asd-exp-accent);
	font-size: 0.92rem;
	font-weight: 800;
	white-space: nowrap;
}

.asd-exp-selection-story__body {
	margin: 8px 0 0;
	color: #4c4c4c;
	font-size: 0.88rem;
	line-height: 1.45;
}

.asd-exp-selection-story__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.asd-exp-detail-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 30px;
	padding: 5px 11px;
	border-radius: 999px;
	background: var(--asd-exp-accent-soft);
	color: #6f1f42;
	font-size: 0.78rem;
	font-weight: 700;
}

.asd-exp-detail-chip__paid {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: #6f1f42;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 900;
	line-height: 1;
}

.asd-exp-addon-receipt {
	border: 1px solid var(--asd-exp-border);
	border-radius: var(--asd-exp-radius);
	background: #fff;
	box-shadow: 0 14px 34px rgba(18, 59, 57, 0.1);
	overflow: hidden;
}

.asd-exp-addon-receipt__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	padding: 14px;
	background: #fcfafb;
}

.asd-exp-addon-receipt__header-copy {
	min-width: 0;
}

.asd-exp-addon-receipt__badge {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--asd-exp-accent-soft);
	color: #6f1f42;
	font-size: 0.78rem;
	font-weight: 800;
}

.asd-exp-addon-receipt__list {
	display: grid;
	gap: 0;
	padding: 0 14px;
}

.asd-exp-addon-receipt__item {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	padding: 12px 0;
	border-top: 1px solid #eee7ea;
}

.asd-exp-addon-receipt__thumb {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: linear-gradient(135deg, #fbeaf0, #eadfe3);
	background-size: cover;
	background-position: center;
}

.asd-exp-addon-receipt__copy {
	min-width: 0;
	display: grid;
	gap: 2px;
}

.asd-exp-addon-receipt__name {
	color: #123b39;
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.2;
}

.asd-exp-addon-receipt__desc {
	color: #6f8583;
	font-size: 0.78rem;
	line-height: 1.25;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.asd-exp-addon-receipt__price {
	color: var(--asd-exp-accent);
	font-size: 0.9rem;
	font-weight: 800;
	white-space: nowrap;
}

.asd-exp-addon-receipt__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border-top: 1px solid var(--asd-exp-border);
	background: #fcfafb;
	color: #123b39;
	font-size: 0.95rem;
	font-weight: 800;
}

.asd-exp-addon-receipt__total strong {
	color: var(--asd-exp-accent);
	font-size: 1.05rem;
}

/* Supplement timing picker */
.asd-exp-schedule {
	display: grid;
	gap: 10px;
	margin: -0.2em 0 1.25em;
}

.asd-exp-schedule[hidden] {
	display: none;
}

.asd-exp-schedule__header {
	padding: 14px;
	border-radius: var(--asd-exp-radius);
	background: #123b39;
	color: #fff;
	box-shadow: 0 12px 28px rgba(18, 59, 57, 0.12);
}

.asd-exp-schedule__title {
	margin: 0;
	color: #fff;
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 800;
}

.asd-exp-schedule__copy {
	margin: 6px 0 0;
	font-size: 0.86rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.82);
}

.asd-exp-schedule__item {
	padding: 14px;
	border: 1px solid var(--asd-exp-border);
	border-radius: var(--asd-exp-radius);
	background: #fff;
	box-shadow: 0 10px 24px rgba(18, 59, 57, 0.07);
}

.asd-exp-schedule__item-title {
	margin: 0;
	color: #123b39;
	font-size: 0.98rem;
	line-height: 1.2;
	font-weight: 800;
}

.asd-exp-schedule__item-copy {
	margin: 5px 0 12px;
	color: #6f8583;
	font-size: 0.82rem;
	line-height: 1.35;
}

.asd-exp-schedule__controls {
	display: grid;
	gap: 14px;
}

/* Segmented control: labelled group of pills backed by a hidden input. */
.asd-exp-seg {
	display: grid;
	gap: 8px;
}

.asd-exp-seg__label {
	color: #123b39;
	font-size: 0.78rem;
	font-weight: 800;
}

.asd-exp-seg__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.asd-exp-seg__pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border: 1px solid var(--asd-exp-border);
	border-radius: 999px;
	background: #fcfafb;
	color: #123b39;
	font-size: 0.86rem;
	line-height: 1;
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.asd-exp-seg__pill:hover {
	border-color: var(--asd-exp-accent);
}

.asd-exp-seg__pill.is-active {
	border-color: var(--asd-exp-accent);
	background: var(--asd-exp-accent-soft);
	color: #7a2547;
	font-weight: 800;
}

/* CSS-only glyphs so the moment pills don't depend on an icon font. */
.asd-exp-seg__icon {
	width: 14px;
	height: 14px;
	position: relative;
	flex: 0 0 auto;
}

.asd-exp-seg__icon--arrival::before {
	content: "";
	position: absolute;
	inset: 3px 0 0;
	border: 1.6px solid currentColor;
	border-bottom: 0;
	border-radius: 8px 8px 0 0;
}

.asd-exp-seg__icon--arrival::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 1px;
	width: 1.6px;
	height: 6px;
	background: currentColor;
	transform: translateX(-50%);
}

.asd-exp-seg__icon--morning::before {
	content: "";
	position: absolute;
	inset: 2px;
	border-radius: 50%;
	border: 1.6px solid currentColor;
}

.asd-exp-seg__icon--afternoon::before {
	content: "";
	position: absolute;
	left: 1px;
	right: 1px;
	top: 4px;
	height: 7px;
	border: 1.6px solid currentColor;
	border-radius: 999px 999px 0 0;
	border-bottom: 0;
}

.asd-exp-seg__icon--evening::before {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: 50%;
	box-shadow: inset -4px 2px 0 0 currentColor;
}

/* Decorated-nights picker (shown when a decoration is chosen on a multi-night stay) */
.asd-exp-deco-nights {
	margin: -0.5em 0 1.25em;
	padding: 14px;
	border: 1px solid var(--asd-exp-border);
	border-radius: var(--asd-exp-radius);
	background: #fcfafb;
}

.asd-exp-deco-nights__title {
	margin: 0 0 10px;
	font-size: 0.92rem;
	font-weight: 600;
}

.asd-exp-deco-nights__all {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.88rem;
	margin-bottom: 10px;
	cursor: pointer;
}

.asd-exp-deco-nights__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.asd-exp-deco-night {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 7px 14px;
	border-radius: 999px;
	border: 1px solid var(--asd-exp-border);
	font-size: 0.88rem;
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.asd-exp-deco-night.is-selected {
	border-color: var(--asd-exp-accent);
	background: var(--asd-exp-accent-soft);
	color: #7a2547;
}

.asd-exp-deco-night__input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	margin: 0;
}

/* "Your stay" panel: arrival date + nights unified in one card */
.asd-exp-stay {
	margin: -0.2em 0 1.35em;
	border: 1px solid var(--asd-exp-border);
	border-radius: var(--asd-exp-radius);
	background: var(--surface-2, #fff);
	overflow: hidden;
}

.asd-exp-stay__title {
	margin: 0;
	padding: 12px 14px;
	border-bottom: 1px solid var(--asd-exp-border);
	background: #fcfafb;
	color: #123b39;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.asd-exp-stay__row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	margin: 0;
}

.asd-exp-stay__row--date {
	cursor: pointer;
	border-bottom: 1px solid var(--asd-exp-border);
}

.asd-exp-stay__icon {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 11px;
	background: var(--asd-exp-accent-soft);
	position: relative;
}

.asd-exp-stay__icon::before {
	content: "";
	position: absolute;
	inset: 11px 12px 12px;
	border: 2px solid var(--asd-exp-accent);
	border-radius: 4px;
	border-top-width: 6px;
}

.asd-exp-stay__field {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.asd-exp-stay__label {
	color: #123b39;
	font-size: 0.9rem;
	font-weight: 800;
}

.asd-exp-stay__meta {
	color: #6f8583;
	font-size: 0.82rem;
	line-height: 1.3;
}

.asd-exp-stay__meta:empty {
	display: none;
}

.asd-exp-stay__date {
	width: 100%;
	min-height: 42px;
	border: 1px solid var(--asd-exp-border);
	border-radius: 10px;
	background: #fcfafb;
	color: #123b39;
	padding: 0 12px;
	font-size: 1rem;
}

.asd-exp-stay__date:focus {
	border-color: var(--asd-exp-accent);
	box-shadow: 0 0 0 3px rgba(185, 55, 107, 0.14);
	outline: none;
}

.asd-exp-nights {
	display: inline-flex;
	align-items: stretch;
	border: 1px solid var(--asd-exp-border);
	border-radius: 999px;
	overflow: hidden;
}

.asd-exp-nights__btn {
	border: 0;
	background: #f6f6f6;
	width: 46px;
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
}

.asd-exp-nights__btn:hover {
	background: #ececec;
}

.asd-exp-nights__input {
	width: 54px;
	text-align: center;
	border: 0;
	border-left: 1px solid var(--asd-exp-border);
	border-right: 1px solid var(--asd-exp-border);
	-moz-appearance: textfield;
	appearance: textfield;
	background: #fff;
}

.asd-exp-nights__input::-webkit-outer-spin-button,
.asd-exp-nights__input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.asd-exp-seg__pill:focus-visible {
	border-color: var(--asd-exp-accent);
	box-shadow: 0 0 0 3px rgba(185, 55, 107, 0.14);
	outline: none;
}

/* Navigation */
.asd-exp-nav {
	display: flex;
	gap: 10px;
	align-items: stretch;
}

.asd-exp-btn {
	border: 0;
	border-radius: 999px;
	padding: 13px 20px;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: opacity 0.15s ease, background-color 0.15s ease;
}

.asd-exp-btn--primary {
	flex: 1;
	background: var(--asd-exp-accent);
	color: #fff;
}

.asd-exp-btn--primary:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.asd-exp-btn--ghost {
	background: transparent;
	color: var(--asd-exp-accent);
	border: 1px solid var(--asd-exp-accent);
	min-width: 52px;
}

.asd-exp-btn--ghost-text {
	flex: 0 0 auto;
	background: transparent;
	color: var(--asd-exp-accent);
}

a.asd-exp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

/* Add-to-cart confirmation: centered modal over the whole configurator. */
.asd-exp-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

/* [hidden] must win over the "display: flex" above, or the modal never
 * actually hides regardless of the JS toggling the attribute. */
.asd-exp-modal[hidden] {
	display: none;
}

.asd-exp-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 20, 20, 0.5);
}

.asd-exp-modal__card {
	position: relative;
	width: 100%;
	max-width: 320px;
	background: #fff;
	border-radius: var(--asd-exp-radius);
	padding: 28px 24px;
	text-align: center;
	animation: asd-exp-fade 0.25s ease;
}

.asd-exp-modal__check {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--asd-exp-accent);
	margin-bottom: 14px;
	animation: asd-exp-hl-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.asd-exp-modal__check::after {
	content: "\2713";
	color: #fff;
	font-size: 1.6rem;
	line-height: 1;
}

.asd-exp-modal.is-loading .asd-exp-modal__check {
	width: 68px;
	height: 68px;
	background: transparent;
	border: 5px solid rgba(193, 54, 112, 0.22);
	border-top-color: var(--asd-exp-accent);
	animation: asd-exp-spin 0.75s linear infinite;
}

.asd-exp-modal.is-loading .asd-exp-modal__check::after {
	content: none;
}

.asd-exp-modal.is-loading .asd-exp-modal__actions {
	display: none;
}

.asd-exp-modal__title {
	margin: 0 0 6px;
	font-size: 1.1rem;
	font-weight: 500;
	color: #1a1a1a;
}

.asd-exp-modal__subtitle {
	margin: 0 0 20px;
	font-size: 0.9rem;
	color: #767676;
}

.asd-exp-modal__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.asd-exp-modal__actions .asd-exp-btn {
	width: 100%;
}

/* Romantic itinerary */
.asd-exp-itinerary {
	display: grid;
	gap: 14px;
	margin-bottom: 1em;
}

.asd-exp-itinerary__intro {
	padding: 16px;
	border-radius: var(--asd-exp-radius);
	background: #123b39;
	color: #fff;
	box-shadow: 0 14px 34px rgba(18, 59, 57, 0.14);
}

.asd-exp-itinerary__kicker {
	margin: 0 0 6px;
	color: #f7b4cc;
	font-size: 0.72rem;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.asd-exp-itinerary__copy {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.45;
	font-weight: 600;
}

/* A single continuous vertical line runs behind the markers, connecting the
 * steps into one route instead of a stack of separate cards. */
.asd-exp-itinerary__timeline {
	position: relative;
	display: grid;
	gap: 14px;
	padding-left: 4px;
}

.asd-exp-itinerary__timeline::before {
	content: "";
	position: absolute;
	left: 21px;
	top: 22px;
	bottom: 22px;
	width: 2px;
	background: #f0d3de;
}

.asd-exp-itinerary__item {
	position: relative;
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}

.asd-exp-itinerary__marker {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--asd-exp-accent);
	color: #fff;
	box-shadow: 0 0 0 4px #fff;
}

.asd-exp-itinerary__marker--closing {
	background: #123b39;
}

.asd-exp-itinerary__marker--free {
	background: #6f8583;
}

/* CSS-only phase glyphs so the timeline needs no icon font. */
.asd-exp-itinerary__glyph {
	position: relative;
	width: 16px;
	height: 16px;
}

.asd-exp-itinerary__glyph--arrival::before {
	content: "";
	position: absolute;
	inset: 2px 3px 0;
	border: 2px solid currentColor;
	border-bottom: 0;
	border-radius: 3px 3px 0 0;
}

.asd-exp-itinerary__glyph--arrival::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 1px;
	width: 2px;
	height: 6px;
	background: currentColor;
	transform: translateX(-50%);
}

.asd-exp-itinerary__glyph--decoration::before,
.asd-exp-itinerary__glyph--decoration::after {
	content: "";
	position: absolute;
	background: currentColor;
}

.asd-exp-itinerary__glyph--decoration::before {
	left: 50%;
	top: 0;
	width: 2px;
	height: 100%;
	transform: translateX(-50%);
}

.asd-exp-itinerary__glyph--decoration::after {
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	transform: translateY(-50%) rotate(45deg);
	box-shadow: 0 0 0 0 currentColor;
}

.asd-exp-itinerary__glyph--supplement::before {
	content: "";
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	border: 2px solid currentColor;
}

.asd-exp-itinerary__glyph--free::before {
	content: "";
	position: absolute;
	inset: 4px;
	border-radius: 50%;
	background: currentColor;
}

.asd-exp-itinerary__glyph--closing::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 55%;
	width: 9px;
	height: 9px;
	background: currentColor;
	transform: translate(-50%, -50%) rotate(45deg);
	border-radius: 0 0 2px 0;
}

.asd-exp-itinerary__glyph--closing::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 35%;
	width: 5px;
	height: 5px;
	background: currentColor;
	border-radius: 50% 50% 0 50%;
	transform: translate(-90%, -50%) rotate(45deg);
	box-shadow: 5px 0 0 0 currentColor;
}

.asd-exp-itinerary__item-copy {
	min-width: 0;
	padding: 12px 14px;
	border: 1px solid var(--asd-exp-border);
	border-radius: var(--asd-exp-radius);
	background: #fff;
	box-shadow: 0 8px 20px rgba(18, 59, 57, 0.07);
}

.asd-exp-itinerary__item-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}

.asd-exp-itinerary__item-title {
	margin: 0;
	color: #123b39;
	font-size: 0.98rem;
	line-height: 1.25;
	font-weight: 800;
}

.asd-exp-itinerary__item-text {
	margin: 6px 0 0;
	color: #4c4c4c;
	font-size: 0.9rem;
	line-height: 1.45;
}

.asd-exp-itinerary__item-meta {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--asd-exp-accent-soft);
	color: #6f1f42;
	font-size: 0.74rem;
	font-weight: 800;
	white-space: nowrap;
}

.asd-exp-itinerary__item-meta--closing,
.asd-exp-itinerary__item-meta--free {
	background: #e1f0ec;
	color: #123b39;
}

.asd-exp-itinerary__guide-btn {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--asd-exp-accent) !important;
	border-radius: 999px !important;
	background: #fff !important;
	color: var(--asd-exp-accent) !important;
	font-size: 0.96rem;
	font-weight: 800;
	cursor: pointer;
	box-shadow: none !important;
	outline: none !important;
}

.asd-exp-itinerary__guide-btn:hover,
.asd-exp-itinerary__guide-btn:focus,
.asd-exp-itinerary__guide-btn:focus-visible,
.asd-exp-itinerary__guide-btn:active {
	background: var(--asd-exp-accent-soft) !important;
	color: var(--asd-exp-accent) !important;
	box-shadow: none !important;
	outline: none !important;
}

/* Readable guide: a formatted card with summary, numbered steps and actions. */
.asd-exp-guide {
	margin-top: 12px;
	border: 1px solid var(--asd-exp-border);
	border-radius: var(--asd-exp-radius);
	background: #fff;
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(18, 59, 57, 0.08);
}

.asd-exp-guide__header {
	padding: 14px 16px;
	background: #123b39;
	color: #fff;
}

.asd-exp-guide__kicker {
	margin: 0 0 2px;
	color: #f7b4cc;
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 800;
}

.asd-exp-guide__title {
	margin: 0;
	font-size: 0.98rem;
	font-weight: 600;
}

.asd-exp-guide__body {
	padding: 14px 16px;
}

.asd-exp-guide__summary {
	display: grid;
	gap: 6px;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--asd-exp-border);
}

.asd-exp-guide__row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 0.86rem;
	color: #4c4c4c;
}

.asd-exp-guide__value {
	color: #123b39;
	text-align: right;
}

.asd-exp-guide__row--total .asd-exp-guide__value {
	color: var(--asd-exp-accent);
	font-weight: 800;
}

.asd-exp-guide__steps {
	margin: 0;
	padding-left: 1.2em;
	display: grid;
	gap: 8px;
}

.asd-exp-guide__step {
	font-size: 0.88rem;
	line-height: 1.45;
	color: #4c4c4c;
}

.asd-exp-guide__step-title {
	color: #123b39;
	font-weight: 800;
}

.asd-exp-guide__step-meta {
	color: #6f8583;
}

.asd-exp-guide__step-note {
	display: block;
	margin-top: 2px;
	color: #6f1f42;
	font-size: 0.82rem;
}

.asd-exp-guide__actions {
	display: flex;
	gap: 8px;
	padding: 12px 16px;
	border-top: 1px solid var(--asd-exp-border);
	background: #fcfafb;
}

.asd-exp-guide__action {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 40px;
	border: 1px solid var(--asd-exp-border);
	border-radius: 999px;
	background: #fff;
	color: #123b39;
	font-size: 0.82rem;
	font-weight: 800;
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.asd-exp-guide__action:hover {
	border-color: var(--asd-exp-accent);
}

.asd-exp-guide__action.is-done {
	border-color: #1d9e75;
	color: #0f6e56;
	background: #e1f5ee;
}

.asd-exp-guide__action-icon {
	width: 15px;
	height: 15px;
	position: relative;
	flex: 0 0 auto;
}

.asd-exp-guide__action-icon--copy::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 9px;
	height: 11px;
	border: 1.6px solid currentColor;
	border-radius: 2px;
}

.asd-exp-guide__action-icon--copy::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 9px;
	height: 11px;
	border: 1.6px solid currentColor;
	border-radius: 2px;
	background: #fff;
}

.asd-exp-guide__action-icon--whatsapp::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 1.6px solid currentColor;
	border-radius: 50% 50% 50% 2px;
}

.asd-exp-guide__action-icon--print::before {
	content: "";
	position: absolute;
	left: 1px;
	right: 1px;
	top: 4px;
	height: 7px;
	border: 1.6px solid currentColor;
	border-radius: 2px 2px 0 0;
}

.asd-exp-guide__action-icon--print::after {
	content: "";
	position: absolute;
	left: 3px;
	right: 3px;
	bottom: 1px;
	height: 5px;
	border: 1.6px solid currentColor;
	background: #fff;
}

/* Per-step note: add trigger, saved chip or inline editor. */
.asd-exp-note {
	margin-top: 10px;
}

.asd-exp-note__add {
	border: 1px dashed var(--asd-exp-border);
	border-radius: 999px;
	background: transparent;
	color: var(--asd-exp-accent);
	font-size: 0.8rem;
	font-weight: 700;
	padding: 6px 12px;
	cursor: pointer;
}

.asd-exp-note__add:hover {
	border-color: var(--asd-exp-accent);
	background: var(--asd-exp-accent-soft);
}

.asd-exp-note__saved {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	padding: 8px 12px;
	border-radius: 10px;
	background: var(--asd-exp-accent-soft);
	color: #6f1f42;
	font-size: 0.84rem;
	line-height: 1.4;
}

.asd-exp-note__edit {
	flex: 0 0 auto;
	border: 0;
	background: transparent;
	color: var(--asd-exp-accent);
	font-size: 0.78rem;
	font-weight: 800;
	cursor: pointer;
	padding: 0;
}

.asd-exp-note__editor {
	border: 1px solid var(--asd-exp-accent);
	border-radius: 10px;
	padding: 8px 10px;
	background: #fff;
}

.asd-exp-note__input {
	width: 100%;
	border: 0;
	resize: vertical;
	font: inherit;
	font-size: 0.86rem;
	color: #123b39;
	background: transparent;
	outline: none;
}

.asd-exp-note__actions {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin-top: 6px;
}

.asd-exp-note__btn {
	border-radius: 999px;
	padding: 5px 14px;
	font-size: 0.8rem;
	font-weight: 700;
	cursor: pointer;
}

.asd-exp-note__btn--ghost {
	border: 1px solid var(--asd-exp-border);
	background: #fff;
	color: #6f8583;
}

.asd-exp-note__btn--save {
	border: 1px solid var(--asd-exp-accent);
	background: var(--asd-exp-accent);
	color: #fff;
}

/* Breakfast included in the room: the matching supplement tile is locked
 * (checked, disabled) — a subtle badge marks it instead of the usual price. */
.asd-exp-tile--included .asd-exp-tile__price {
	color: var(--asd-exp-accent);
	font-weight: 700;
}

.asd-exp-tile--included .asd-exp-tile__input:disabled {
	cursor: default;
}

/* Night surcharge notice on a supplement's schedule card, shown only when
 * "Noche" is the active moment pill. */
.asd-exp-schedule__surcharge-notice {
	margin: 8px 0 0;
	font-size: 0.8rem;
	color: var(--asd-exp-accent);
	line-height: 1.4;
}

/* Summary */
.asd-exp-summary {
	border: 1px solid var(--asd-exp-border);
	border-radius: var(--asd-exp-radius);
	padding: 16px 18px;
	display: grid;
	gap: 2px;
	background: #fcfafb;
	margin-bottom: 1em;
}

.asd-exp-summary__row {
	display: flex;
	justify-content: space-between;
	gap: 1em;
	padding: 5px 0;
	font-size: 0.95rem;
}

.asd-exp-summary__row span:first-child {
	color: #555;
}

.asd-exp-summary__row--total {
	border-top: 1px solid var(--asd-exp-border);
	margin-top: 8px;
	padding-top: 12px;
	font-size: 1.05rem;
}

.asd-exp-summary__row--total strong {
	font-size: 1.5rem;
	color: var(--asd-exp-accent);
}

/* Native Woo cart button relocated into the final itinerary navigation. */
.asd-exp-configurator .single_add_to_cart_button {
	position: relative;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	flex: 1;
	min-height: 52px;
	border-radius: 999px !important;
	background: var(--asd-exp-accent) !important;
	color: #fff !important;
	border: 0 !important;
	padding: 0 22px !important;
	line-height: 1.2 !important;
	font-weight: 500 !important;
	text-align: center;
	box-shadow: none !important;
	outline: none !important;
	filter: none !important;
	-webkit-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
}

.asd-exp-configurator .single_add_to_cart_button:hover,
.asd-exp-configurator .single_add_to_cart_button:focus,
.asd-exp-configurator .single_add_to_cart_button:focus-visible,
.asd-exp-configurator .single_add_to_cart_button:active {
	background: var(--asd-exp-accent) !important;
	color: #fff !important;
	box-shadow: none !important;
	outline: none !important;
	filter: none !important;
	opacity: 0.92;
}

/* Self-contained loading spinner: doesn't depend on WooCommerce's icon font
 * (which may not always render depending on the theme), so the shopper
 * always sees clear feedback while add-to-cart is in flight. */
.asd-exp-configurator .single_add_to_cart_button.asd-exp-is-loading {
	color: transparent !important;
	pointer-events: none;
}

.asd-exp-configurator .single_add_to_cart_button.asd-exp-is-loading::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 18px;
	margin: -9px 0 0 -9px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: asd-exp-spin 0.7s linear infinite;
}

@keyframes asd-exp-spin {
	to { transform: rotate(360deg); }
}

/* On narrow screens the meta pill drops below the title so a long
 * "Día 2 · Mañana · $35.00" never gets squeezed against the heading. */
@media (max-width: 460px) {
	.asd-exp-itinerary__item-head {
		flex-direction: column;
		gap: 6px;
	}

	.asd-exp-itinerary__item-meta {
		white-space: normal;
	}
}

/* Larger screens: wider columns; the tile keeps its 16:9 ratio (no height
 * override) so bigger cards stay proportional instead of being cropped. */
@media (min-width: 600px) {
	.asd-exp-tiles:not(.asd-exp-tiles--compact) {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	}
}

/* Full-photo lightbox: opened by tapping a photo tile, shows the photo
 * uncropped over a dark backdrop. Locks page scroll while open. */
body.asd-exp-lightbox-open {
	overflow: hidden;
}

.asd-exp-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10001;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.asd-exp-lightbox[hidden] {
	display: none;
}

.asd-exp-lightbox__img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}

.asd-exp-lightbox__close,
.asd-exp-lightbox__nav {
	position: absolute;
	border: none;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 0;
	cursor: pointer;
}

.asd-exp-lightbox__close {
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
}

.asd-exp-lightbox__close::before,
.asd-exp-lightbox__close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 2px;
	background: #fff;
}

.asd-exp-lightbox__close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.asd-exp-lightbox__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.asd-exp-lightbox__nav {
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
}

.asd-exp-lightbox__nav::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.asd-exp-lightbox__nav--prev {
	left: 16px;
}

.asd-exp-lightbox__nav--prev::before {
	transform: translate(-30%, -50%) rotate(-135deg);
}

.asd-exp-lightbox__nav--next {
	right: 16px;
}

.asd-exp-lightbox__nav--next::before {
	transform: translate(-70%, -50%) rotate(45deg);
}

.asd-exp-lightbox__counter {
	position: absolute;
	left: 50%;
	bottom: 16px;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.8rem;
}

@media (prefers-reduced-motion: reduce) {
	.asd-exp-slide.is-active { animation: none; }
	.asd-exp-tile,
	.asd-exp-tile__check { transition: none; }
	.asd-exp-modal__check,
	.asd-exp-configurator .single_add_to_cart_button.asd-exp-is-loading::after { animation: none; }
	.asd-exp-carousel__track { transition: none; }
}
