/* ── Puntos Ya Elementor: shared styles ─────────────────────────────────── */

:root {
	--py-orange: #E85D04;
	--py-orange-dark: #c44d03;
	--py-orange-soft: #fff3ec;
	--py-black: #0d0d0d;
	--py-text: #1a1a1a;
	--py-text-muted: #6b6b6b;
	--py-border: #e5e5e5;
	--py-bg: #fff;
	--py-radius: 14px;
	--py-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Minimal structural Swiper CSS so carousels work regardless of which
   Swiper style handle Elementor ships (swiper vs e-swiper). */
.py-swiper {
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}
.py-swiper .swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	box-sizing: content-box;
	transition-property: transform;
}
.py-swiper .swiper-slide {
	flex-shrink: 0;
	position: relative;
	height: auto;
	transition-property: transform;
}

/* ── Section header: orange bar + eyebrow + big title ─────────────────────
   Header text is optional: if eyebrow/title are empty the header still lays
   out (countdown / arrows stay aligned to the right). */
.py-section-header {
	display: flex;
	align-items: flex-end;
	gap: 20px 24px;
	flex-wrap: wrap;
	margin-bottom: 36px;
}
.py-section-header__text {
	min-width: 0;
	/* Pushes any countdown / arrows to the right even when text is empty. */
	margin-right: auto;
}
.py-section-header__text:empty {
	margin: 0 auto 0 0;
}
.py-section-header__eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}
.py-section-header__eyebrow:last-child {
	margin-bottom: 0;
}
.py-section-header__bar {
	width: 18px;
	height: 38px;
	border-radius: 6px;
	background: var(--py-orange);
	flex-shrink: 0;
}
.py-section-header__label {
	color: var(--py-orange);
	font-weight: 700;
	font-size: 15px;
	line-height: 1.25;
}
.py-section-header__title {
	margin: 0;
	color: var(--py-text);
	font-size: 34px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.1;
}

/* ── Countdown (used in the offers header) ───────────────────────────────── */
.py-countdown {
	display: flex;
	align-items: center;
	gap: 12px;
}
.py-countdown__unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 42px;
}
.py-countdown__label {
	font-size: 11px;
	color: var(--py-text-muted);
	margin-bottom: 4px;
	font-weight: 500;
}
.py-countdown__value {
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}
.py-countdown__sep {
	font-size: 22px;
	font-weight: 700;
	color: var(--py-orange);
	transform: translateY(5px);
}

/* ── Circular nav arrows ─────────────────────────────────────────────────── */
.py-arrows {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}
button.py-arrow,
.py-arrow {
	width: 46px;
	height: 46px;
	min-width: 46px;
	min-height: 46px;
	border-radius: 50%;
	border: 0;
	outline: 0;
	background: #efefef;
	color: #1a1a1a;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s var(--py-ease), color 0.2s var(--py-ease), transform 0.2s var(--py-ease);
	padding: 0;
	margin: 0;
	box-shadow: none;
	line-height: 1;
	appearance: none;
	-webkit-appearance: none;
}
button.py-arrow:hover,
.py-arrow:hover {
	background: var(--py-orange);
	color: #fff;
	transform: translateY(-2px);
}
button.py-arrow:active,
.py-arrow:active {
	transform: translateY(0) scale(0.96);
}
.py-arrow svg {
	width: 22px;
	height: 22px;
	display: block;
}
.py-arrow.swiper-button-disabled {
	opacity: 0.4;
	cursor: default;
}
.py-arrow.swiper-button-disabled:hover {
	background: #efefef;
	color: #1a1a1a;
	transform: none;
}

@media (max-width: 767px) {
	.py-section-header {
		margin-bottom: 28px;
	}
	.py-section-header__title {
		font-size: 26px;
	}
	.py-countdown {
		order: 3;
		width: 100%;
		gap: 10px;
	}
	.py-countdown__unit {
		min-width: 38px;
	}
	.py-countdown__value {
		font-size: 22px;
	}
}
