/*
Theme Name: YENDO
Theme URI: https://yendo.cl
Author: YENDO
Description: Tema ligero y accesible para la tienda YENDO en WooCommerce.
Version: 0.3.8
Requires at least: 6.9
Requires PHP: 8.2
Text Domain: yendo
*/

:root {
	--yendo-ink: #06345b;
	--yendo-navy: #031f37;
	--yendo-teal: #1997a4;
	--yendo-teal-dark: #0d6872;
	--yendo-ivory: #f7f6f2;
	--yendo-sand: #e9e6df;
	--yendo-graphite: #24384a;
	--yendo-coral: #b83f30;
	--yendo-white: #fff;
	--yendo-muted: #607080;
	--yendo-line: rgba(6, 52, 91, 0.14);
	--yendo-shadow: 0 24px 70px rgba(3, 31, 55, 0.13);
	--yendo-font: "Segoe UI Variable", "Avenir Next", "Arial Nova", system-ui, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--yendo-ivory);
	color: var(--yendo-ink);
	font-family: var(--yendo-font);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.admin-bar .yendo-header {
	top: 32px;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	line-height: 1.05;
	letter-spacing: -0.045em;
	text-wrap: balance;
}

p {
	text-wrap: pretty;
}

:focus-visible {
	outline: 3px solid rgba(25, 151, 164, 0.5);
	outline-offset: 4px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.yendo-skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 9999;
	transform: translateY(-160%);
	border-radius: 8px;
	background: var(--yendo-white);
	padding: 10px 16px;
	font-weight: 800;
}

.yendo-skip-link:focus {
	transform: translateY(0);
}

.yendo-container {
	width: min(1320px, calc(100% - 64px));
	margin-inline: auto;
}

.yendo-prelaunch-bar {
	display: flex;
	min-height: 36px;
	align-items: center;
	justify-content: center;
	gap: 14px;
	background: linear-gradient(90deg, #031b30, #06345b 52%, #072943);
	color: var(--yendo-white);
	padding: 6px 24px;
	font-size: 12px;
}

.yendo-prelaunch-bar span {
	border: 1px solid rgba(127, 227, 232, 0.46);
	border-radius: 999px;
	color: #b9f1f3;
	padding: 1px 9px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.yendo-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(6, 52, 91, 0.08);
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 9px 30px rgba(3, 31, 55, 0.045);
	backdrop-filter: blur(14px);
}

.yendo-header__inner {
	display: grid;
	width: min(1440px, 100%);
	min-height: 86px;
	margin-inline: auto;
	padding: 0 38px;
	grid-template-columns: 210px 1fr auto;
	align-items: center;
	gap: 28px;
}

.yendo-brand {
	display: block;
	width: 190px;
}

.yendo-brand .custom-logo-link,
.yendo-brand .custom-logo {
	display: block;
	width: 100%;
	max-width: 190px;
}

.yendo-navigation .yendo-menu {
	display: flex;
	margin: 0;
	padding: 0;
	align-items: center;
	justify-content: center;
	gap: clamp(18px, 2.5vw, 38px);
	list-style: none;
}

.yendo-navigation a {
	position: relative;
	display: flex;
	min-height: 48px;
	align-items: center;
	color: var(--yendo-ink);
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
}

.yendo-navigation a::after {
	position: absolute;
	right: 0;
	bottom: 6px;
	left: 0;
	height: 2px;
	transform: scaleX(0);
	background: var(--yendo-teal);
	content: "";
	transition: transform 160ms ease;
}

.yendo-navigation a:hover::after,
.yendo-navigation a:focus-visible::after {
	transform: scaleX(1);
}

.yendo-header-actions {
	display: flex;
	align-items: center;
	gap: 6px;
}

.yendo-header-actions > a,
.yendo-menu-toggle {
	position: relative;
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--yendo-ink);
	text-decoration: none;
}

.yendo-header-actions > a:hover,
.yendo-menu-toggle:hover {
	background: var(--yendo-sand);
}

.yendo-header-actions .dashicons,
.yendo-menu-toggle .dashicons {
	width: 22px;
	height: 22px;
	font-size: 22px;
}

.yendo-cart-count {
	position: absolute;
	top: 0;
	right: -2px;
	display: grid;
	min-width: 19px;
	height: 19px;
	place-items: center;
	border: 2px solid var(--yendo-white);
	border-radius: 50%;
	background: var(--yendo-coral);
	color: var(--yendo-white);
	font-size: 9px;
	font-weight: 800;
}

.yendo-menu-toggle {
	display: none;
}

.yendo-hero {
	position: relative;
	display: grid;
	min-height: min(760px, calc(100vh - 122px));
	overflow: hidden;
	isolation: isolate;
}

.yendo-hero__media,
.yendo-hero__overlay {
	position: absolute;
	z-index: -2;
	inset: 0;
}

.yendo-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 55% center;
	filter: saturate(0.88) contrast(1.04);
}

.yendo-hero__overlay {
	z-index: -1;
	background:
		radial-gradient(circle at 22% 33%, rgba(25, 151, 164, 0.28), transparent 30rem),
		linear-gradient(90deg, rgba(2, 24, 43, 0.97) 0%, rgba(3, 31, 55, 0.82) 40%, rgba(3, 31, 55, 0.24) 70%, rgba(3, 31, 55, 0.04) 100%);
}

.yendo-hero__content {
	display: flex;
	padding-block: clamp(70px, 9vw, 140px);
	flex-direction: column;
	justify-content: center;
	color: var(--yendo-white);
}

.yendo-eyebrow {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 20px;
	align-items: center;
	gap: 10px;
	color: #76e5eb;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.yendo-eyebrow::before {
	width: 28px;
	height: 2px;
	background: var(--yendo-coral);
	content: "";
}

.yendo-hero h1 {
	max-width: 760px;
	margin-bottom: 26px;
	font-size: clamp(4.1rem, 8vw, 7.4rem);
	font-weight: 780;
	letter-spacing: -0.075em;
	line-height: 0.91;
	text-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.yendo-hero__lead {
	max-width: 660px;
	margin-bottom: 14px;
	font-size: clamp(1.35rem, 2.2vw, 2rem);
	font-weight: 520;
	line-height: 1.3;
}

.yendo-hero__support {
	max-width: 620px;
	margin-bottom: 34px;
	color: rgba(255, 255, 255, 0.85);
}

.yendo-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.yendo-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--yendo-coral);
	border-radius: 8px;
	background: var(--yendo-coral);
	color: var(--yendo-white);
	padding: 0 24px;
	font-weight: 800;
	text-decoration: none;
	transition: transform 160ms ease, background 160ms ease;
}

.yendo-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	transform: translateY(-2px);
	background: #942f25;
	color: var(--yendo-white);
}

.yendo-button--ghost {
	border-color: rgba(255, 255, 255, 0.72);
	background: rgba(3, 31, 55, 0.16);
	backdrop-filter: blur(10px);
}

.yendo-hero__facts {
	display: flex;
	width: fit-content;
	margin-top: 58px;
	padding-top: 20px;
	gap: 34px;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	font-size: 11px;
}

.yendo-hero__facts span {
	display: grid;
	gap: 2px;
}

.yendo-hero__facts strong {
	font-size: 16px;
	text-transform: uppercase;
}

.yendo-trust {
	display: grid;
	border-bottom: 1px solid var(--yendo-line);
	background: var(--yendo-white);
	grid-template-columns: repeat(4, 1fr);
}

.yendo-trust > div {
	display: flex;
	min-height: 112px;
	align-items: center;
	gap: 14px;
	border-right: 1px solid var(--yendo-line);
	padding: 18px clamp(18px, 2.5vw, 38px);
}

.yendo-trust > div:last-child {
	border-right: 0;
}

.yendo-trust > div > .dashicons {
	display: grid;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	place-items: center;
	border-radius: 50%;
	background: rgba(25, 151, 164, 0.1);
	color: var(--yendo-teal-dark);
	font-size: 21px;
}

.yendo-trust p {
	display: grid;
	margin: 0;
	line-height: 1.35;
}

.yendo-trust small {
	color: var(--yendo-muted);
}

.yendo-section {
	padding-block: clamp(80px, 10vw, 150px);
}

.yendo-section .yendo-eyebrow,
.yendo-finder .yendo-eyebrow,
.yendo-story .yendo-eyebrow,
.yendo-faq .yendo-eyebrow {
	color: var(--yendo-teal-dark);
}

.yendo-section > h2,
.yendo-finder h2 {
	max-width: 820px;
	margin-bottom: 24px;
	font-size: clamp(2.6rem, 5vw, 5.4rem);
}

.yendo-section__intro {
	max-width: 700px;
	margin-bottom: 48px;
	color: var(--yendo-muted);
	font-size: 1.15rem;
}

.yendo-uses {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.yendo-use {
	display: flex;
	min-height: 470px;
	padding: 28px;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
	border-radius: 14px;
	box-shadow: 0 16px 42px rgba(3, 31, 55, 0.12);
	color: var(--yendo-white);
	text-decoration: none;
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.yendo-use:hover {
	transform: translateY(-8px);
	box-shadow: var(--yendo-shadow);
}

.yendo-use > span {
	margin-bottom: auto;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.yendo-use > i {
	display: grid;
	width: 110px;
	height: 110px;
	margin: 0 auto auto;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 50%;
	font-size: 44px;
}

.yendo-use h3 {
	margin-bottom: 10px;
	font-size: 2.5rem;
}

.yendo-use p {
	margin-bottom: 20px;
}

.yendo-use--ink {
	background: linear-gradient(145deg, #084976, #031f37 72%);
}

.yendo-use--teal {
	background: linear-gradient(145deg, #1ca8b5, #0c6772 74%);
}

.yendo-use--sand {
	border: 1px solid rgba(6, 52, 91, 0.08);
	background: linear-gradient(145deg, #f1eee7, #d9d2c5 76%);
	color: var(--yendo-ink);
}

.yendo-use--sand > i {
	border-color: rgba(6, 52, 91, 0.22);
}

.yendo-use--coral {
	background: linear-gradient(145deg, #d05442, #8c2f26 76%);
}

.yendo-products {
	padding-top: 40px;
}

.yendo-prelaunch-panel {
	display: grid;
	padding: clamp(32px, 5vw, 64px);
	grid-template-columns: 160px 1fr;
	align-items: center;
	gap: 38px;
	border: 1px solid rgba(6, 52, 91, 0.09);
	border-radius: 18px;
	background: var(--yendo-white);
	box-shadow: var(--yendo-shadow);
}

.yendo-prelaunch-panel img {
	border-radius: 32px;
}

.yendo-prelaunch-panel h3 {
	margin-bottom: 16px;
	font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.yendo-prelaunch-panel p {
	max-width: 720px;
	margin-bottom: 0;
	color: var(--yendo-muted);
}

.yendo-finder {
	background: var(--yendo-ink);
	color: var(--yendo-white);
	padding-block: clamp(72px, 9vw, 130px);
}

.yendo-finder__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	align-items: end;
	gap: clamp(40px, 8vw, 120px);
}

.yendo-finder__grid p {
	max-width: 700px;
	color: rgba(255, 255, 255, 0.78);
}

.yendo-finder__actions {
	display: grid;
}

.yendo-finder__actions a {
	display: flex;
	min-height: 68px;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 1.15rem;
	font-weight: 750;
	text-decoration: none;
}

.yendo-finder__actions a:hover span {
	transform: translateX(5px);
}

.yendo-finder__actions span {
	transition: transform 160ms ease;
}

.yendo-business {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 82% 12%, rgba(25, 151, 164, 0.28), transparent 24rem),
		linear-gradient(135deg, #021b30 0%, #06345b 58%, #0a5367 100%);
	color: var(--yendo-white);
	padding-block: clamp(84px, 10vw, 150px);
}

.yendo-business::after {
	position: absolute;
	width: 420px;
	height: 420px;
	right: -170px;
	bottom: -230px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	box-shadow: 0 0 0 56px rgba(255, 255, 255, 0.025), 0 0 0 112px rgba(255, 255, 255, 0.018);
	content: "";
}

.yendo-business__grid,
.yendo-business-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
	align-items: center;
	gap: clamp(54px, 8vw, 120px);
}

.yendo-business .yendo-eyebrow,
.yendo-business-hero .yendo-eyebrow,
.yendo-business-process .yendo-eyebrow {
	color: #85e1e5;
}

.yendo-business__intro h2,
.yendo-business-hero h1 {
	max-width: 800px;
	margin-bottom: 24px;
	font-size: clamp(3rem, 6.4vw, 6.9rem);
}

.yendo-business__intro > p:not(.yendo-eyebrow),
.yendo-business-hero__grid > div:first-child > p:not(.yendo-eyebrow) {
	max-width: 700px;
	color: rgba(255, 255, 255, 0.74);
	font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.yendo-button--light {
	background: var(--yendo-white);
	color: var(--yendo-ink);
}

.yendo-text-link {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	gap: 10px;
	color: var(--yendo-white);
	font-weight: 800;
	text-decoration: none;
}

.yendo-business__benefits {
	display: grid;
	position: relative;
	z-index: 1;
	gap: 14px;
}

.yendo-business__benefits article {
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 18px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.075);
	box-shadow: 0 18px 55px rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(10px);
	padding: 24px;
}

.yendo-business__benefits .dashicons {
	display: grid;
	width: 54px;
	height: 54px;
	border-radius: 14px;
	background: rgba(133, 225, 229, 0.14);
	color: #85e1e5;
	font-size: 27px;
	place-items: center;
}

.yendo-business__benefits h3 {
	margin-bottom: 6px;
	font-size: 1.12rem;
	letter-spacing: -0.02em;
}

.yendo-business__benefits p {
	margin: 0;
	color: rgba(255, 255, 255, 0.67);
	font-size: 0.92rem;
}

.yendo-business-page {
	background: var(--yendo-ivory);
}

.yendo-business-hero {
	background:
		radial-gradient(circle at 78% 16%, rgba(25, 151, 164, 0.28), transparent 22rem),
		linear-gradient(135deg, #021b30, #06345b 62%, #0a5367);
	color: var(--yendo-white);
	padding-block: clamp(80px, 10vw, 150px);
}

.yendo-business-hero__mark {
	display: grid;
	min-height: 410px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(14px);
	place-items: center;
	align-content: center;
	gap: 20px;
}

.yendo-business-hero__mark img {
	width: 150px;
	border-radius: 34px;
}

.yendo-business-hero__mark span {
	font-size: 0.8rem;
	font-weight: 850;
	letter-spacing: 0.24em;
	text-transform: uppercase;
}

.yendo-business-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 48px;
}

.yendo-business-cards article {
	min-height: 290px;
	border: 1px solid var(--yendo-line);
	border-radius: 18px;
	background: var(--yendo-white);
	box-shadow: 0 16px 45px rgba(3, 31, 55, 0.07);
	padding: 32px;
}

.yendo-business-cards article > span {
	display: block;
	margin-bottom: 70px;
	color: var(--yendo-teal-dark);
	font-size: 0.75rem;
	font-weight: 850;
	letter-spacing: 0.14em;
}

.yendo-business-cards h3 {
	font-size: 1.55rem;
}

.yendo-business-cards p {
	color: var(--yendo-muted);
}

.yendo-business-process {
	background: var(--yendo-navy);
	color: var(--yendo-white);
	padding-block: clamp(80px, 10vw, 140px);
}

.yendo-business-process h2 {
	max-width: 780px;
	font-size: clamp(2.7rem, 5vw, 5.4rem);
}

.yendo-business-process ol {
	display: grid;
	margin: 54px 0 0;
	padding: 0;
	list-style: none;
}

.yendo-business-process li {
	display: grid;
	grid-template-columns: minmax(260px, 0.7fr) 1fr;
	gap: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	padding-block: 26px;
}

.yendo-business-process li:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.yendo-business-process li strong {
	font-size: 1.18rem;
}

.yendo-business-process li span {
	color: rgba(255, 255, 255, 0.64);
}

.yendo-business-cta {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 42px;
}

.yendo-business-cta h2 {
	max-width: 850px;
}

.yendo-story {
	max-width: 1120px;
	text-align: center;
}

.yendo-story .yendo-eyebrow {
	margin-inline: auto;
}

.yendo-story h2 {
	margin-inline: auto;
}

.yendo-story > p:last-child {
	max-width: 780px;
	margin: 0 auto;
	color: var(--yendo-muted);
	font-size: 1.2rem;
}

.yendo-faq {
	padding-top: 30px;
}

.yendo-faq details {
	max-width: 900px;
	border-top: 1px solid var(--yendo-line);
	padding-block: 22px;
}

.yendo-faq details:last-child {
	border-bottom: 1px solid var(--yendo-line);
}

.yendo-faq summary {
	cursor: pointer;
	font-size: 1.15rem;
	font-weight: 750;
}

.yendo-faq details p {
	margin: 16px 0 0;
	color: var(--yendo-muted);
}

.yendo-footer {
	background: #021f35;
	color: var(--yendo-white);
	padding: 72px max(32px, calc((100vw - 1320px) / 2));
}

.yendo-footer__grid {
	display: grid;
	grid-template-columns: 2fr repeat(3, 1fr);
	gap: 44px;
}

.yendo-footer-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
}

.yendo-footer-brand img {
	width: 54px;
	height: 54px;
	border-radius: 13px;
}

.yendo-footer-brand strong {
	font-size: 2rem;
	letter-spacing: 0.12em;
}

.yendo-footer__grid > div > p {
	max-width: 360px;
	margin-top: 22px;
	color: rgba(255, 255, 255, 0.66);
}

.yendo-footer nav {
	display: grid;
	align-content: start;
	gap: 10px;
}

.yendo-footer nav h2 {
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.yendo-footer nav a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.9rem;
	text-decoration: none;
}

.yendo-footer nav a:hover {
	color: var(--yendo-white);
}

.yendo-footer__legal {
	display: flex;
	margin-top: 54px;
	padding-top: 24px;
	justify-content: space-between;
	gap: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.78rem;
}

.yendo-whatsapp-help {
	position: fixed;
	right: clamp(16px, 2.4vw, 34px);
	bottom: clamp(16px, 2.4vw, 32px);
	z-index: 160;
	display: inline-flex;
	min-height: 58px;
	align-items: center;
	gap: 11px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 999px;
	background: #087f68;
	box-shadow: 0 16px 38px rgba(3, 31, 55, 0.28);
	color: var(--yendo-white);
	padding: 9px 18px 9px 11px;
	font-size: 0.76rem;
	line-height: 1.15;
	text-decoration: none;
	transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.yendo-whatsapp-help:hover,
.yendo-whatsapp-help:focus-visible {
	transform: translateY(-3px);
	background: #066b58;
	box-shadow: 0 20px 44px rgba(3, 31, 55, 0.34);
	color: var(--yendo-white);
}

.yendo-whatsapp-help svg {
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	fill: currentColor;
}

.yendo-whatsapp-help span {
	display: grid;
	gap: 2px;
}

.yendo-whatsapp-help strong {
	font-size: 0.9rem;
}

.yendo-page {
	min-height: 60vh;
	padding-block: clamp(64px, 8vw, 120px);
}

.yendo-entry > h1,
.yendo-shop > h1,
.yendo-not-found h1 {
	max-width: 880px;
	font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	display: flex;
	width: 100% !important;
	overflow: hidden;
	min-width: 0;
	margin: 0 !important;
	float: none !important;
	clear: none !important;
	flex-direction: column;
	border: 1px solid rgba(6, 52, 91, 0.08);
	border-radius: 12px;
	background: var(--yendo-white);
	box-shadow: 0 12px 35px rgba(3, 31, 55, 0.07);
}

.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid;
	max-width: 1040px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(20px, 3vw, 34px);
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
	display: none;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
	display: flex;
	min-height: 100%;
	flex: 1;
	flex-direction: column;
}

.woocommerce ul.products li.product a img {
	width: 100%;
	margin: 0 0 18px;
	aspect-ratio: 1;
	object-fit: cover;
	transition: transform 220ms ease;
}

.woocommerce ul.products li.product:hover a img {
	transform: scale(1.025);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
	margin-inline: 18px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: clamp(1.18rem, 2vw, 1.55rem);
	line-height: 1.18;
}

.woocommerce ul.products li.product .button {
	margin-bottom: 18px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--yendo-ink);
	font-weight: 800;
}

.woocommerce div.product .summary {
	padding: clamp(8px, 2vw, 24px) 0;
}

.woocommerce div.product .product_title {
	max-width: 680px;
	margin-bottom: 18px;
	color: var(--yendo-ink);
	font-size: clamp(2rem, 4.6vw, 4.5rem);
	letter-spacing: -0.045em;
	line-height: 0.98;
}

.woocommerce div.product .woocommerce-product-details__short-description {
	max-width: 620px;
	color: var(--yendo-graphite);
	font-size: 1.04rem;
	line-height: 1.75;
}

.woocommerce div.product form.cart {
	display: flex;
	margin-top: 28px;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 12px;
}

.woocommerce div.product form.cart .variations {
	width: 100%;
	margin-bottom: 4px;
}

.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
	padding: 0 0 10px;
	vertical-align: middle;
}

.woocommerce div.product form.cart .variations label {
	display: inline-block;
	margin-right: 14px;
	color: var(--yendo-ink);
	font-weight: 800;
}

.woocommerce div.product form.cart .variations select,
.woocommerce div.product form.cart .quantity .qty {
	min-height: 48px;
	border: 1px solid var(--yendo-line);
	border-radius: 8px;
	background: var(--yendo-white);
	color: var(--yendo-graphite);
	font: inherit;
}

.woocommerce div.product form.cart .variations select {
	min-width: min(100%, 280px);
	padding: 0 42px 0 14px;
}

.woocommerce div.product form.cart .quantity .qty {
	width: 72px;
	padding-inline: 8px;
}

.woocommerce div.product form.cart .reset_variations {
	margin-left: 12px;
	color: var(--yendo-teal-dark);
	font-weight: 700;
}

.woocommerce div.product form.cart .single_add_to_cart_button.button.alt {
	min-height: 52px;
	border: 1px solid var(--yendo-coral);
	border-radius: 8px;
	background: var(--yendo-coral);
	color: var(--yendo-white);
	padding-inline: 26px;
	font-weight: 800;
	opacity: 1;
}

.woocommerce div.product form.cart .single_add_to_cart_button.button.alt:hover,
.woocommerce div.product form.cart .single_add_to_cart_button.button.alt:focus-visible {
	background: #942f25;
	color: var(--yendo-white);
}

.woocommerce div.product .stock {
	color: var(--yendo-teal-dark);
	font-weight: 800;
}

.woocommerce div.product .product_meta {
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid var(--yendo-line);
	color: var(--yendo-muted);
	font-size: 0.88rem;
	line-height: 1.8;
}

.yendo-product-assurances {
	display: grid;
	margin: 24px 0 0;
	padding: 18px 0 0;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	border-top: 1px solid var(--yendo-line);
	list-style: none;
}

.yendo-product-assurances li {
	display: grid;
	min-width: 0;
	grid-template-columns: 24px 1fr;
	column-gap: 6px;
	color: var(--yendo-muted);
	font-size: 0.75rem;
	line-height: 1.35;
}

.yendo-product-assurances .dashicons {
	grid-row: 1 / 3;
	color: var(--yendo-teal-dark);
}

.yendo-product-assurances strong {
	color: var(--yendo-ink);
	font-size: 0.78rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	padding-left: 0;
	flex-wrap: wrap;
	gap: 8px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	border-color: var(--yendo-line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin: 0;
	border-color: var(--yendo-line);
	border-radius: 8px 8px 0 0;
	background: var(--yendo-white);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	border-bottom-color: var(--yendo-white);
	background: var(--yendo-white);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	color: var(--yendo-ink);
}

/*
 * Selector curvo para la galería nativa de WooCommerce.
 * La mejora conserva Flexslider, el zoom y el cambio de imagen por variación.
 */
.woocommerce div.product div.images .flex-control-thumbs.yendo-product-gallery-nav {
	position: relative;
	display: flex;
	overflow-x: auto;
	margin: -10px 0 0;
	padding: 28px 12px 16px;
	align-items: center;
	justify-content: flex-start;
	gap: clamp(8px, 1.2vw, 14px);
	border-radius: 0 0 28px 28px;
	background:
		radial-gradient(ellipse at 50% 0%, rgba(25, 151, 164, 0.12), transparent 68%),
		linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.88));
	list-style: none;
}

.woocommerce div.product div.images .flex-control-thumbs.yendo-product-gallery-nav::before {
	position: absolute;
	top: 16px;
	right: 14%;
	left: 14%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(25, 151, 164, 0.32), transparent);
	content: "";
}

.woocommerce div.product div.images .flex-control-thumbs.yendo-product-gallery-nav li {
	width: clamp(64px, 8vw, 82px);
	margin: 0;
	flex: 0 0 auto;
	transform: none;
	transition: transform 180ms ease;
}

.woocommerce div.product div.images .flex-control-thumbs.yendo-product-gallery-nav img {
	width: 100%;
	aspect-ratio: 1;
	border: 2px solid transparent;
	border-radius: 12px;
	background: var(--yendo-white);
	object-fit: cover;
	opacity: 0.72;
	box-shadow: 0 8px 24px rgba(3, 31, 55, 0.13);
	cursor: pointer;
	transition: border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.woocommerce div.product div.images .flex-control-thumbs.yendo-product-gallery-nav img:hover,
.woocommerce div.product div.images .flex-control-thumbs.yendo-product-gallery-nav img:focus-visible {
	border-color: var(--yendo-teal);
	opacity: 1;
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(3, 31, 55, 0.2);
}

.woocommerce div.product div.images .flex-control-thumbs.yendo-product-gallery-nav img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs.yendo-product-gallery-nav img[aria-pressed="true"] {
	border-color: var(--yendo-coral);
	opacity: 1;
	box-shadow: 0 0 0 4px rgba(184, 63, 48, 0.12), 0 12px 30px rgba(3, 31, 55, 0.17);
}

/*
 * En escritorio, mantiene las miniaturas completas a la vista junto a la
 * fotografía principal. Así la galería no queda oculta bajo el primer pliegue.
 */
@media (min-width: 1101px) {
	.woocommerce div.product div.images.woocommerce-product-gallery {
		position: relative;
		padding-left: 96px;
	}

	.woocommerce div.product div.images .flex-control-thumbs.yendo-product-gallery-nav {
		position: absolute;
		top: 0;
		left: 0;
		display: flex;
		overflow-y: auto;
		width: 80px;
		max-height: 100%;
		margin: 0;
		padding: 10px 8px 14px;
		align-items: center;
		flex-direction: column;
		justify-content: flex-start;
		gap: 10px;
		border: 1px solid var(--yendo-line);
		border-radius: 20px;
		background: rgba(255, 255, 255, 0.88);
		box-shadow: 0 16px 36px rgba(3, 31, 55, 0.08);
		scrollbar-width: thin;
	}

	.woocommerce div.product div.images .flex-control-thumbs.yendo-product-gallery-nav::before {
		position: static;
		width: auto;
		height: auto;
		background: none;
		color: var(--yendo-teal-dark);
		content: attr(data-yendo-gallery-count) " FOTOS";
		font-size: 0.66rem;
		font-weight: 800;
		letter-spacing: 0.12em;
		line-height: 1;
		white-space: nowrap;
	}

	.woocommerce div.product div.images .flex-control-thumbs.yendo-product-gallery-nav li {
		width: 60px;
		transform: none;
	}
}

@media (max-width: 700px) {
	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: 1fr;
	}

	.yendo-product-assurances {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

.woocommerce-message,
.woocommerce-info {
	border-top-color: var(--yendo-teal);
}

.woocommerce-message::before,
.woocommerce-info::before {
	color: var(--yendo-teal-dark);
}

@media (max-width: 1100px) {
	.yendo-header__inner {
		grid-template-columns: auto 1fr auto;
	}

	.yendo-menu-toggle {
		display: grid;
	}

	.yendo-brand {
		justify-self: center;
	}

	.yendo-navigation {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		border-top: 1px solid var(--yendo-line);
		background: var(--yendo-white);
		box-shadow: var(--yendo-shadow);
		padding: 18px 32px 30px;
	}

	.yendo-navigation.is-open {
		display: block;
	}

	.yendo-navigation .yendo-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.yendo-navigation a {
		border-bottom: 1px solid var(--yendo-line);
	}

	.yendo-uses {
		grid-template-columns: repeat(2, 1fr);
	}

	.yendo-trust {
		grid-template-columns: repeat(2, 1fr);
	}

	.yendo-trust > div:nth-child(2) {
		border-right: 0;
	}

	.yendo-footer__grid {
		grid-template-columns: 2fr 1fr 1fr;
	}

	.yendo-business__grid,
	.yendo-business-hero__grid {
		grid-template-columns: 1fr;
	}

	.yendo-business__benefits {
		grid-template-columns: repeat(3, 1fr);
	}

	.yendo-business__benefits article {
		grid-template-columns: 1fr;
	}

	.yendo-footer__grid nav:last-child {
		grid-column: 2 / -1;
	}
}

@media (max-width: 700px) {
	body.admin-bar .yendo-header {
		top: 46px;
	}

	.yendo-container {
		width: min(100% - 32px, 1320px);
	}

	.yendo-prelaunch-bar {
		gap: 8px;
		padding-inline: 12px;
		text-align: center;
	}

	.yendo-prelaunch-bar span {
		display: none;
	}

	.yendo-header__inner {
		min-height: 70px;
		padding-inline: 14px;
		gap: 8px;
	}

	.yendo-brand {
		width: 132px;
	}

	.yendo-header-actions > a:nth-child(-n+2) {
		display: none;
	}

	.yendo-hero {
		min-height: 690px;
	}

	.yendo-hero__media img {
		object-position: 61% center;
	}

	.yendo-hero__overlay {
		background:
			radial-gradient(circle at 20% 28%, rgba(25, 151, 164, 0.24), transparent 24rem),
			linear-gradient(90deg, rgba(2, 24, 43, 0.95), rgba(3, 31, 55, 0.76) 72%, rgba(3, 31, 55, 0.45));
	}

	.yendo-hero h1 {
		font-size: clamp(3.7rem, 18vw, 5.6rem);
		line-height: 0.94;
	}

	.yendo-hero__lead {
		font-size: 1.18rem;
	}

	.yendo-hero__facts {
		width: 100%;
		gap: 18px;
	}

	.yendo-hero__facts strong {
		font-size: 0.8rem;
	}

	.yendo-trust {
		grid-template-columns: 1fr 1fr;
	}

	.yendo-trust > div {
		min-height: 104px;
		padding: 14px;
	}

	.yendo-trust > div > .dashicons {
		width: 36px;
		height: 36px;
		flex-basis: 36px;
	}

	.yendo-section {
		padding-block: 78px;
	}

	.yendo-uses {
		grid-template-columns: 1fr;
	}

	.yendo-use {
		min-height: 390px;
	}

	.yendo-prelaunch-panel {
		grid-template-columns: 82px 1fr;
		gap: 20px;
		padding: 24px;
	}

	.yendo-prelaunch-panel img {
		border-radius: 20px;
	}

	.yendo-finder__grid {
		grid-template-columns: 1fr;
	}

	.yendo-business__intro h2,
	.yendo-business-hero h1 {
		font-size: clamp(3.2rem, 16vw, 5rem);
	}

	.yendo-business__benefits,
	.yendo-business-cards {
		grid-template-columns: 1fr;
	}

	.yendo-business__benefits article {
		grid-template-columns: 54px 1fr;
	}

	.yendo-business-hero__mark {
		min-height: 300px;
	}

	.yendo-business-process li {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.yendo-business-cta {
		align-items: flex-start;
		flex-direction: column;
	}

	.yendo-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.yendo-footer__grid > div {
		grid-column: 1 / -1;
	}

	.yendo-footer__grid nav:last-child {
		grid-column: auto;
	}

	.yendo-footer__legal {
		align-items: flex-start;
		flex-direction: column;
	}

	.yendo-whatsapp-help {
		right: 14px;
		bottom: 14px;
		min-height: 52px;
		padding: 7px 13px 7px 9px;
	}

	.yendo-whatsapp-help svg {
		width: 34px;
		height: 34px;
		flex-basis: 34px;
	}

	.yendo-whatsapp-help span {
		max-width: 112px;
	}

	.woocommerce div.product div.images .flex-control-thumbs.yendo-product-gallery-nav {
		overflow-x: auto;
		margin-top: 8px;
		padding: 12px 4px 18px;
		justify-content: flex-start;
		gap: 10px;
		border-radius: 0;
		background: transparent;
		scroll-snap-type: x proximity;
		scrollbar-width: thin;
	}

	.woocommerce div.product div.images .flex-control-thumbs.yendo-product-gallery-nav::before {
		display: none;
	}

	.woocommerce div.product div.images .flex-control-thumbs.yendo-product-gallery-nav li {
		width: 64px;
		transform: none;
		scroll-snap-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
