/* =========================================
   SIN NOMBRE — Tema a medida
   Ropa / Suplementos / Asesorías fitness
   ========================================= */

:root {
	--c-black: #000000;
	--c-dark: #141416;
	--c-white: #ffffff;
	--c-offwhite: #f4f4f2;
	--c-gray: #6b6b70;
	--c-gray-light: #e2e2e0;
	--c-accent: #c7ccd4;
	--c-accent-dark: #9a9fa8;
	--c-on-accent: #0b0b0c;
	--c-chrome: linear-gradient(180deg, #ffffff 0%, #d4d7db 30%, #86898f 52%, #eef0f2 74%, #ffffff 100%);

	/* Tema oscuro: negro puro como color principal, igual al fondo de los productos */
	--c-bg: #000000;
	--c-bg-alt: #000000;
	--c-surface: #000000;
	--c-text: #f5f5f4;
	--c-text-muted: #a3a3a8;
	--c-border: #2b2b2e;
	--c-pop-bg: #ffffff;
	--c-pop-text: #0b0b0c;

	--font-display: "Bebas Neue", Impact, sans-serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--radius: 2px;
	--container: 1240px;
}

* { box-sizing: border-box; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--c-white);
	outline-offset: 3px;
}
html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--c-text);
	background: var(--c-bg);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

/* Evita que los bloques "alignwide"/"alignfull" de WooCommerce Blocks
   (carrito/checkout) rompan el padding del contenedor de la página. */
.entry-content .alignwide,
.entry-content .alignfull {
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: 100% !important;
	width: 100% !important;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	letter-spacing: 0.5px;
	line-height: 1.05;
	margin: 0;
	text-transform: uppercase;
}

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 30px;
	font-family: var(--font-display);
	font-size: 18px;
	letter-spacing: 1px;
	border: 2px solid transparent;
	border-radius: var(--radius);
	cursor: pointer;
	overflow: hidden;
	transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: -60%;
	width: 40%;
	height: 100%;
	background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
	transform: skewX(-20deg);
	transition: left 0.55s ease;
	pointer-events: none;
}
.btn:hover::after { left: 130%; }

.btn-primary {
	background: var(--c-chrome);
	background-size: 100% 220%;
	background-position: 0 30%;
	color: var(--c-black);
	box-shadow: 0 0 16px rgba(255,255,255,0.55), 0 0 38px rgba(255,255,255,0.22);
	animation: sn-btn-glow 3s ease-in-out infinite;
}
.btn-primary:hover {
	background-position: 0 70%;
	box-shadow: 0 0 22px rgba(255,255,255,0.85), 0 0 55px rgba(255,255,255,0.4);
}

.btn-dark {
	background: var(--c-pop-bg);
	color: var(--c-pop-text);
	box-shadow: 0 0 14px rgba(255,255,255,0.4), 0 0 32px rgba(255,255,255,0.16);
}
.btn-dark:hover { background: var(--c-accent); color: var(--c-on-accent); box-shadow: 0 0 20px rgba(255,255,255,0.7); }

.btn-outline { border-color: var(--c-text); color: var(--c-text); background: transparent; }
.btn-outline:hover { background: var(--c-text); color: var(--c-bg); }

.btn-outline-light {
	border-color: var(--c-white);
	color: var(--c-white);
	background: transparent;
	box-shadow: 0 0 12px rgba(255,255,255,0.35), inset 0 0 10px rgba(255,255,255,0.06);
	animation: sn-btn-glow-outline 3s ease-in-out infinite;
}
.btn-outline-light:hover {
	background: var(--c-white);
	color: var(--c-black);
	box-shadow: 0 0 24px rgba(255,255,255,0.75);
}

@keyframes sn-btn-glow {
	0%, 100% { box-shadow: 0 0 16px rgba(255,255,255,0.55), 0 0 38px rgba(255,255,255,0.22); }
	50% { box-shadow: 0 0 22px rgba(255,255,255,0.8), 0 0 48px rgba(255,255,255,0.32); }
}
@keyframes sn-btn-glow-outline {
	0%, 100% { box-shadow: 0 0 12px rgba(255,255,255,0.35), inset 0 0 10px rgba(255,255,255,0.06); }
	50% { box-shadow: 0 0 20px rgba(255,255,255,0.55), inset 0 0 14px rgba(255,255,255,0.12); }
}
@media (prefers-reduced-motion: reduce) {
	.btn-primary, .btn-outline-light { animation: none; }
	.btn::after { display: none; }
}

.eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--c-accent);
	margin-bottom: 14px;
}

/* ===== Announce bar ===== */
.announce-bar {
	position: relative;
	background: linear-gradient(180deg, #f4f5f6 0%, #dcdfe2 50%, #eef0f1 100%);
	color: #14161a;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	padding: 10px 0;
	overflow-x: auto;
	scrollbar-width: none;
}
.announce-bar::-webkit-scrollbar { display: none; }
.announce-bar::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 110px;
	background: linear-gradient(115deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.4) 50%, transparent 75%);
	clip-path: polygon(0 0, 110px 0, 96px 100%, 0 100%);
	pointer-events: none;
}
.announce-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 24px;
	white-space: nowrap;
}
.announce-list {
	display: flex;
	align-items: center;
	gap: 22px;
}
.announce-list li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding-right: 22px;
	border-right: 1px solid rgba(20,22,26,0.2);
}
.announce-list li:last-child { border-right: none; padding-right: 0; }
.announce-list svg { flex-shrink: 0; opacity: 0.8; }
.announce-tagline {
	margin-left: auto;
	padding-left: 22px;
	border-left: 1px solid rgba(20,22,26,0.2);
	font-weight: 800;
	letter-spacing: 1.5px;
}
@media (max-width: 780px) {
	.announce-tagline { display: none; }
}

/* ===== Header ===== */
.site-header {
	background: #020202;
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid var(--c-border);
	transition: padding 0.25s ease, box-shadow 0.25s ease;
	overflow: hidden;
}
.site-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 110px;
	height: 100%;
	background: linear-gradient(115deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.4) 50%, transparent 75%);
	clip-path: polygon(0 0, 110px 0, 67px 100%, 0 100%);
	pointer-events: none;
}
.site-header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, #9a9fa8 20%, #ffffff 50%, #9a9fa8 80%, transparent 100%);
	opacity: 0.8;
}
.site-header.is-scrolled {
	box-shadow: 0 12px 30px rgba(0,0,0,0.55);
}
.site-header.is-scrolled .site-logo-img { height: 52px; }
.site-header.is-scrolled .header-inner { padding-top: 6px; padding-bottom: 6px; }

.header-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 10px;
	padding-bottom: 10px;
	gap: 24px;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	position: relative;
}
.site-logo::before {
	content: "";
	position: absolute;
	left: 10%;
	right: 10%;
	top: 50%;
	height: 60%;
	transform: translateY(-50%);
	background: radial-gradient(ellipse at center, rgba(255,255,255,0.22) 0%, transparent 70%);
	filter: blur(6px);
	z-index: -1;
	pointer-events: none;
}
.site-logo-img {
	height: 92px;
	width: auto;
	transition: height 0.25s ease;
}

.primary-nav { margin-left: auto; }
.primary-nav ul { display: flex; gap: 32px; }
.primary-nav a {
	position: relative;
	display: inline-block;
	padding-bottom: 4px;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.primary-nav a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--c-accent);
	transition: width 0.25s ease, left 0.25s ease;
}
.primary-nav a:hover { color: var(--c-accent); }
.primary-nav a:hover::after { width: 100%; left: 0; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	font: inherit;
	cursor: pointer;
	color: var(--c-text);
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.header-icon:hover {
	background: var(--c-accent);
	color: var(--c-on-accent);
	transform: translateY(-2px);
}
.cart-count {
	position: absolute;
	top: -8px;
	right: -10px;
	background: var(--c-accent);
	color: var(--c-on-accent);
	font-size: 11px;
	font-weight: 700;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}
.cart-count.is-bumped { animation: sn-cart-bump 0.5s ease; }
@keyframes sn-cart-bump {
	0% { transform: scale(1); }
	35% { transform: scale(1.6); }
	60% { transform: scale(0.9); }
	100% { transform: scale(1); }
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}
.nav-toggle span {
	width: 24px;
	height: 2px;
	background: var(--c-text);
	transform-origin: center;
	transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-slogan {
	padding-left: 24px;
	margin-left: 6px;
	border-left: 1px solid var(--c-border);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	line-height: 1.5;
	color: var(--c-text-muted);
	white-space: nowrap;
}
@media (max-width: 1100px) {
	.header-slogan { display: none; }
}

.search-panel {
	background: #0c0c0d;
	border-bottom: 1px solid var(--c-border);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}
.search-panel.is-open { max-height: 140px; }
.search-form {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 22px;
	padding-bottom: 22px;
}
.search-form-icon { flex-shrink: 0; color: var(--c-text-muted); }
.search-input {
	flex-grow: 1;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--c-border);
	color: var(--c-white);
	font-family: var(--font-body);
	font-size: 18px;
	padding: 10px 0;
	outline: none;
}
.search-input::placeholder { color: var(--c-text-muted); }
.search-input:focus { border-bottom-color: var(--c-white); }
.search-submit {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--c-white);
	color: var(--c-black);
	border: none;
	font-size: 18px;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}
.search-submit:hover { background: var(--c-accent); transform: translateX(2px); }

/* ===== Hero ===== */
.hero {
	position: relative;
	background: var(--c-black);
	color: var(--c-white);
	padding: 150px 0 110px;
	overflow: hidden;
}
.hero-video-wrap {
	position: absolute;
	inset: 0;
	animation: sn-hero-zoom 18s ease-in-out infinite alternate;
	will-change: transform;
}
.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
@keyframes sn-hero-zoom {
	from { transform: scale(1); }
	to { transform: scale(1.09); }
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(2,2,2,0.94) 0%, rgba(2,2,2,0.78) 42%, rgba(2,2,2,0.4) 75%, rgba(2,2,2,0.55) 100%);
}
.hero-inner { position: relative; max-width: 820px; }
.hero-inner > * {
	opacity: 0;
	transform: translateY(24px);
	animation: sn-hero-in 0.7s ease forwards;
}
.hero-inner > .eyebrow { animation-delay: 0.1s; }
.hero-inner > h1 { animation-delay: 0.25s; }
.hero-inner > .hero-sub { animation-delay: 0.4s; }
.hero-inner > .hero-actions { animation-delay: 0.55s; }
@keyframes sn-hero-in {
	to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
	.hero-video-wrap { animation: none; }
	.hero-inner > * { animation: none; opacity: 1; transform: none; }
}
.hero h1 {
	font-size: clamp(38px, 6.2vw, 74px);
	color: var(--c-white);
	text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.hero h1 .chrome-text {
	background: var(--c-chrome);
	background-size: 100% 200%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: sn-chrome-shine 5s ease-in-out infinite;
}
@keyframes sn-chrome-shine {
	0%, 100% { background-position: 0 0; }
	50% { background-position: 0 100%; }
}
.hero-sub {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--c-accent);
	margin: 24px 0 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-arrow { display: inline-block; margin-left: 6px; transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.hero-side-tag {
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 18px;
	padding-left: 18px;
	border-left: 1px solid rgba(255,255,255,0.35);
}
.hero-side-caption {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	line-height: 1.6;
	color: rgba(255,255,255,0.75);
}
.hero-side-signature {
	font-family: "Dancing Script", cursive;
	font-size: 26px;
	color: var(--c-white);
	transform: rotate(-4deg);
}
@media (max-width: 1200px) {
	.hero-side-tag { display: none; }
}
@media (prefers-reduced-motion: reduce) {
	.hero h1 .chrome-text { animation: none; }
}

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 36px;
}
.section-head h2 { font-size: 40px; }
.section-link {
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	border-bottom: 2px solid var(--c-accent);
}

.split-block { background: var(--c-bg-alt); }
.split-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.split-block.reverse .split-inner { direction: rtl; }
.split-block.reverse .split-content,
.split-block.reverse .split-media { direction: ltr; }
.split-media {
	background: linear-gradient(135deg, var(--c-surface), #232326);
	border: 1px solid var(--c-border);
	aspect-ratio: 3/4;
	border-radius: var(--radius);
	overflow: hidden;
}
.split-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 10%;
}
.split-content h2 { font-size: 38px; margin: 0 0 18px; }
.split-content p { color: var(--c-text-muted); font-size: 16px; margin-bottom: 26px; max-width: 420px; }

/* ===== Suplementos (feature) ===== */
.supplements-feature {
	position: relative;
	background: var(--c-black);
	overflow: hidden;
}
.ghost-text {
	position: absolute;
	top: -0.35em;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--font-display);
	font-size: clamp(70px, 14vw, 220px);
	white-space: nowrap;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255,255,255,0.06);
	letter-spacing: 4px;
	pointer-events: none;
	z-index: 0;
}
.supp-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 0.9fr 1fr;
	gap: 70px;
	align-items: center;
}
.supp-media {
	position: relative;
}
.supp-media-backdrop {
	position: absolute;
	inset: 18px -18px -18px 18px;
	background: var(--c-accent);
	clip-path: polygon(0 6%, 100% 0, 100% 94%, 0% 100%);
	z-index: 0;
}
.supp-media img {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	object-position: center 15%;
	border-radius: var(--radius);
	filter: contrast(1.12) saturate(1.05);
}
.supp-media::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: var(--radius);
	background: linear-gradient(0deg, rgba(11,11,12,0.55) 0%, rgba(11,11,12,0) 35%);
	pointer-events: none;
}
.supp-badge {
	position: absolute;
	z-index: 2;
	top: -16px;
	right: -16px;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: var(--c-white);
	color: var(--c-black);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transform: rotate(8deg);
	text-align: center;
	font-weight: 800;
	font-size: 11px;
	letter-spacing: 0.5px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.supp-badge span {
	font-family: var(--font-display);
	font-size: 22px;
	line-height: 1;
}
.supp-content h2 { font-size: 40px; margin: 0 0 18px; }
.supp-content p { color: var(--c-text-muted); font-size: 16px; margin-bottom: 24px; max-width: 440px; }
.trust-chips { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.trust-chips li { font-size: 15px; font-weight: 600; color: var(--c-text); }

/* ===== Coach / Entrenador ===== */
.coach-section { background: var(--c-bg-alt); }
.coach-inner {
	display: grid;
	grid-template-columns: 0.85fr 1fr;
	gap: 70px;
	align-items: center;
}
.coach-media {
	position: relative;
	border-radius: var(--radius);
	overflow: visible;
}
.coach-slider {
	position: relative;
	width: 100%;
	aspect-ratio: 3/4;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--c-border);
	background: var(--c-surface);
}
.coach-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.6s ease;
}
.coach-slide.is-active { opacity: 1; }
.coach-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}
.coach-slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: none;
	background: rgba(11,11,12,0.55);
	color: var(--c-white);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	opacity: 0;
	transition: opacity 0.2s ease, background 0.2s ease;
}
.coach-slider:hover .coach-slider-nav { opacity: 1; }
.coach-slider-nav:hover { background: var(--c-accent); color: var(--c-on-accent); }
.coach-slider-prev { left: 12px; }
.coach-slider-next { right: 12px; }
.coach-slider-dots {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 2;
}
.coach-slider-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	padding: 0;
	background: rgba(255,255,255,0.4);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}
.coach-slider-dot.is-active { background: var(--c-white); transform: scale(1.2); }
.coach-content h2 { font-size: 46px; margin-bottom: 18px; }
.coach-lead { color: var(--c-text-muted); font-size: 17px; max-width: 480px; margin-bottom: 26px; }
.coach-content p:not(.coach-lead) { color: var(--c-text-muted); font-size: 15px; max-width: 480px; margin: 0 0 22px; }
.coach-badges { margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.coach-badges li { font-size: 15px; font-weight: 600; }
.coach-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Page header (subpáginas como Asesorías) ===== */
.page-header {
	position: relative;
	padding: 200px 0 90px;
	background-color: var(--c-black);
	background-image: var(--page-header-img);
	background-position: center 20%;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}
.page-header::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(6,6,7,0.88) 0%, rgba(6,6,7,0.93) 100%);
}
.page-header-inner { position: relative; max-width: 700px; }
.page-header-inner .eyebrow { text-shadow: 0 2px 14px rgba(0,0,0,0.7); }
.page-header-inner h1 {
	font-size: clamp(44px, 7vw, 80px);
	color: var(--c-white);
	margin: 10px 0 18px;
	text-shadow: 0 4px 24px rgba(0,0,0,0.75);
}
.page-header-sub { color: var(--c-text); font-size: 17px; max-width: 520px; text-shadow: 0 2px 14px rgba(0,0,0,0.7); }
.page-header-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}
.page-header-chips span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border: 1px solid rgba(255,255,255,0.25);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	color: var(--c-white);
	background: rgba(0,0,0,0.4);
	backdrop-filter: blur(4px);
}
.page-header-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.coach-quote {
	margin: 0 0 22px;
	padding: 16px 22px;
	border-left: 3px solid var(--c-white);
	background: rgba(255,255,255,0.04);
	font-size: 15px;
	font-style: italic;
	color: var(--c-text);
	max-width: 480px;
}
.how-it-works { background: var(--c-bg-alt); }

/* ===== Galería de fotos (Asesorías) ===== */
.coach-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.coach-gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	aspect-ratio: 3/4;
	background: var(--c-surface);
}
.coach-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.coach-gallery-item:hover img { transform: scale(1.06); }
@media (max-width: 900px) {
	.coach-gallery { grid-template-columns: repeat(2, 1fr); }
}

.plans-section { background: var(--c-black); color: var(--c-white); }
.section-head.centered { display: block; text-align: center; max-width: 560px; margin: 0 auto 50px; }
.section-head.centered h2 { font-size: 42px; }
.section-sub { color: var(--c-gray-light); margin-top: 14px; font-size: 16px; }

.plans-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.plan-card {
	position: relative;
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	padding: 34px 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.plan-card-featured {
	border-color: var(--c-white);
	box-shadow: 0 0 0 1px var(--c-white), 0 0 30px rgba(255,255,255,0.15);
	transform: scale(1.03);
}
.plan-badge {
	position: absolute;
	top: -13px;
	left: 28px;
	background: var(--c-white);
	color: var(--c-black);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 999px;
}
@media (max-width: 900px) {
	.plan-card-featured { transform: none; }
}
.plan-card h3 {
	font-family: var(--font-body);
	text-transform: none;
	font-size: 21px;
	font-weight: 700;
	letter-spacing: 0;
}
.plan-card p { color: #b7b7ba; font-size: 15px; margin: 0; flex-grow: 1; }
.plan-price {
	font-family: var(--font-display);
	font-size: 20px;
	color: var(--c-accent);
	letter-spacing: 0.5px;
}
.plan-card .btn { width: 100%; }

.plans-steps {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 60px;
	flex-wrap: wrap;
}
.plan-step {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	font-size: 15px;
	color: var(--c-gray-light);
}
.plan-step span {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--c-accent);
	color: var(--c-on-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 15px;
}

.cta-band {
	background: var(--c-black);
	color: var(--c-white);
	text-align: center;
	padding: 90px 0;
	border-top: 1px solid var(--c-border);
	border-bottom: 1px solid var(--c-border);
}
.cta-inner h2 { font-size: 44px; color: var(--c-white); }
.cta-inner p { margin: 16px 0 30px; font-size: 17px; color: var(--c-text-muted); }
.cta-band .btn-outline-light { border-color: var(--c-white); color: var(--c-white); }
.cta-band .btn-outline-light:hover { background: var(--c-white); color: var(--c-black); }

/* ===== Category showcase (Ropa / Suplementos / Tienda) ===== */
.category-showcase {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.cat-card {
	position: relative;
	height: 420px;
	overflow: hidden;
	background: var(--c-black) var(--cat-img) center / cover no-repeat;
	display: flex;
	align-items: flex-end;
	border-right: 1px solid var(--c-border);
}
.cat-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.15) 100%);
	transition: background 0.35s ease;
}
.cat-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--c-accent);
	mix-blend-mode: multiply;
	opacity: 0;
	transition: opacity 0.35s ease;
}
.cat-card:hover::after { opacity: 0.35; }
.cat-card img { display: none; }
.cat-number {
	position: absolute;
	top: 24px;
	left: 24px;
	z-index: 2;
	font-family: var(--font-display);
	font-size: 15px;
	letter-spacing: 2px;
	color: rgba(255,255,255,0.7);
}
.cat-card-body {
	position: relative;
	z-index: 2;
	padding: 30px 28px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	transition: transform 0.35s ease;
}
.cat-card-body h3 {
	font-size: 32px;
	color: var(--c-white);
	margin-bottom: 8px;
	transition: transform 0.35s ease;
}
.cat-tagline {
	margin: 0;
	font-size: 13px;
	color: rgba(255,255,255,0.65);
	max-width: 220px;
}
.cat-cta {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.5);
	color: var(--c-white);
	transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.cat-arrow { transition: transform 0.3s ease; }
.cat-card:hover .cat-cta { background: var(--c-white); border-color: var(--c-white); color: var(--c-black); transform: scale(1.06); }
.cat-card:hover .cat-arrow { transform: translateX(3px); }
.cat-card:hover .cat-card-body h3 { transform: translateY(-4px); }
.cat-card:hover::before { background: linear-gradient(0deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.25) 100%); }

.trust-bar {
	background: var(--c-black);
	border-bottom: 1px solid var(--c-border);
	padding: 18px 0;
}
.trust-bar-inner {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
}
.trust-bar-list {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
}
.trust-bar-list li {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--c-text-muted);
}
.trust-bar-list svg { flex-shrink: 0; color: var(--c-accent); }
.trust-bar-tag {
	margin-left: auto;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--c-text);
	padding-left: 20px;
	border-left: 1px solid var(--c-border);
}
@media (max-width: 900px) {
	.trust-bar-tag { display: none; }
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.cat-card.reveal:nth-child(1) { transition-delay: 0s; }
.cat-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.cat-card.reveal:nth-child(3) { transition-delay: 0.24s; }
.plan-card.reveal:nth-child(1) { transition-delay: 0s; }
.plan-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.plan-card.reveal:nth-child(3) { transition-delay: 0.24s; }

/* ===== Products grid (shop shortcode + archive) ===== */
ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}
ul.products li.product {
	list-style: none;
	text-align: left;
	position: relative;
}
ul.products li.product img {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: contain;
	background: var(--c-surface);
	border-radius: var(--radius);
	margin-bottom: 14px;
}
.product-gallery {
	position: relative;
	width: 100%;
	padding-top: 133.33%;
	overflow: hidden;
	background: var(--c-surface);
	border-radius: var(--radius);
	margin-bottom: 14px;
}
.product-gallery img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	margin-bottom: 0;
	display: none;
	background: none;
	border-radius: 0;
	transition: transform 0.45s ease;
}
.product-gallery img.gallery-img.active { display: block; }
.product-gallery:hover img.gallery-img.active { transform: scale(1.08); }
.gallery-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: none;
	background: rgba(11,11,12,0.6);
	color: var(--c-white);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.15s ease, background 0.15s ease;
}
.product-gallery:hover .gallery-nav { opacity: 1; }
.gallery-nav:hover { background: var(--c-accent); }
.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }
ul.products li.product h2,
ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--font-body);
	text-transform: none;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0;
	margin: 0 0 6px;
	color: var(--c-text);
}
ul.products li.product .price {
	display: block;
	font-weight: 700;
	color: var(--c-text);
	font-size: 17px;
	margin: 2px 0 14px;
}
ul.products li.product .price del { color: var(--c-text-muted); opacity: 0.7; font-weight: 400; font-size: 14px; }
ul.products li.product .price ins { text-decoration: none; }
ul.products li.product .button {
	position: relative;
	display: block;
	width: 100%;
	margin-top: 0;
	padding: 13px 18px;
	background: var(--c-pop-bg);
	color: var(--c-pop-text);
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 0 12px rgba(255,255,255,0.35), 0 0 28px rgba(255,255,255,0.14);
	transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.25s ease;
}
ul.products li.product .button::after {
	content: "";
	position: absolute;
	top: 0;
	left: -60%;
	width: 40%;
	height: 100%;
	background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
	transform: skewX(-20deg);
	transition: left 0.55s ease;
	pointer-events: none;
}
ul.products li.product .button:hover {
	background: var(--c-accent);
	color: var(--c-on-accent);
	transform: translateY(-2px);
	box-shadow: 0 0 20px rgba(255,255,255,0.65);
}
ul.products li.product .button:hover::after { left: 130%; }
ul.products li.product .button.loading {
	color: transparent !important;
	pointer-events: none;
	box-shadow: 0 0 12px rgba(255,255,255,0.35);
}
ul.products li.product .button.loading::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 18px;
	margin: -9px 0 0 -9px;
	border: 2px solid rgba(11,11,12,0.25);
	border-top-color: var(--c-pop-text);
	border-radius: 50%;
	animation: sn-btn-spin 0.6s linear infinite;
}
ul.products li.product .added_to_cart {
	display: inline-block;
	margin-top: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	text-decoration: underline;
	color: var(--c-text);
}
@keyframes sn-btn-spin { to { transform: rotate(360deg); } }
ul.products li.product .onsale {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--c-accent);
	color: var(--c-on-accent);
	font-size: 11px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: var(--radius);
	text-transform: uppercase;
}
ul.products li.product .star-rating { display: none; }

/* ===== Shop archive ===== */
.woo-container { padding: 60px 0; }
.woocommerce-products-header__title {
	font-family: var(--font-display);
	font-size: 44px;
	margin-bottom: 30px;
}
.cat-filter { display: flex; flex-wrap: wrap; gap: 10px; }
.cat-filter-pill {
	display: inline-flex;
	align-items: center;
	padding: 11px 24px;
	border: 1px solid var(--c-border);
	border-radius: 999px;
	background: transparent;
	color: var(--c-text-muted);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.cat-filter-pill:hover { border-color: var(--c-white); color: var(--c-white); transform: translateY(-1px); }
.cat-filter-pill.is-active { background: var(--c-white); border-color: var(--c-white); color: var(--c-black); }
.woo-container .cat-filter { margin-bottom: 36px; }
.woo-container .cat-filter:has(+ .cat-filter-sub) { margin-bottom: 28px; }
.cat-filter-sub {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}
.cat-filter-sub .cat-filter-pill { padding: 8px 18px; font-size: 12px; }
.cat-filter-count { opacity: 0.6; font-weight: 600; }
.cat-filter-sub .cat-filter-pill.is-active .cat-filter-count { opacity: 0.5; }
.cat-filter-row { margin-bottom: 36px; }

.shop-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--c-border);
	font-size: 14px;
	color: var(--c-text-muted);
}
.shop-toolbar select {
	border: 1px solid var(--c-border);
	background: var(--c-surface);
	color: var(--c-text);
	padding: 8px 12px;
	border-radius: var(--radius);
	font-family: var(--font-body);
}
.woocommerce-pagination ul { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 50px; justify-content: center; }
.woocommerce-pagination a, .woocommerce-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	color: var(--c-text);
}
.woocommerce-pagination .current { background: var(--c-pop-bg); color: var(--c-pop-text); border-color: var(--c-pop-bg); }

/* ===== Single product ===== */
.single-product div.product {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-top: 20px;
}
.single-product div.images {
	background: var(--c-surface);
	border-radius: var(--radius);
	overflow: hidden;
}
.single-product div.images img { border-radius: var(--radius); }
.single-product .product_title {
	font-size: 38px;
	margin-bottom: 10px;
}
.single-product .price {
	font-family: var(--font-body);
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 20px;
	display: block;
	color: var(--c-text);
}
.single-product .woocommerce-product-details__short-description {
	color: var(--c-text-muted);
	margin-bottom: 24px;
}
.single-product form.cart {
	display: flex;
	gap: 14px;
	align-items: center;
	flex-wrap: wrap;
}
.single-product .quantity input {
	width: 64px;
	padding: 12px;
	border: 1px solid var(--c-border);
	background: var(--c-surface);
	color: var(--c-text);
	border-radius: var(--radius);
	text-align: center;
}
.single-product .single_add_to_cart_button {
	background: var(--c-pop-bg);
	color: var(--c-pop-text);
	border: none;
	padding: 15px 34px;
	font-family: var(--font-display);
	font-size: 17px;
	letter-spacing: 1px;
	border-radius: var(--radius);
	cursor: pointer;
}
.single-product .single_add_to_cart_button:hover { background: var(--c-accent); color: var(--c-on-accent); }
.woocommerce-tabs { margin-top: 60px; border-top: 1px solid var(--c-border); padding-top: 30px; color: var(--c-text-muted); }
.woocommerce-tabs ul.tabs { display: flex; gap: 26px; margin-bottom: 24px; }
.woocommerce-tabs ul.tabs li a { font-weight: 700; text-transform: uppercase; font-size: 14px; color: var(--c-text); }

/* ===== Cart & Checkout (WooCommerce Blocks — cart/checkout modernos) ===== */
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
	color: var(--c-text);
}
.wc-block-components-panel,
.wc-block-components-totals-item,
.wc-block-cart-items,
.wc-block-components-product-name,
.wc-block-components-totals-footer-item,
.wc-block-components-radio-control__label,
.wc-block-checkout__main,
.wc-block-checkout__sidebar {
	color: var(--c-text) !important;
}
.wc-block-components-button.wp-element-button,
.wc-block-cart__submit-button,
a.wc-block-components-button {
	background: var(--c-pop-bg) !important;
	color: var(--c-pop-text) !important;
	border-radius: var(--radius) !important;
	border: none !important;
	font-family: var(--font-display) !important;
	letter-spacing: 1px;
}
.wc-block-components-button.wp-element-button:hover,
a.wc-block-components-button:hover {
	background: var(--c-accent) !important;
	color: var(--c-on-accent) !important;
}
.wc-block-components-text-input input,
.wc-block-components-text-input textarea,
.wc-block-components-combobox input,
.wc-block-components-radio-control input {
	background: var(--c-surface) !important;
	color: var(--c-text) !important;
	border-color: var(--c-border) !important;
}
.wc-block-components-totals-wrapper,
.wc-block-cart-items__row,
.wc-block-components-panel {
	border-color: var(--c-border) !important;
}
.wc-block-components-quantity-selector,
.wc-block-components-quantity-selector__button {
	background: var(--c-surface) !important;
	color: var(--c-text) !important;
	border-color: var(--c-border) !important;
}
.wc-blocks-components-select__select {
	background: var(--c-surface) !important;
	color: var(--c-text) !important;
	border-color: var(--c-border) !important;
}
.wc-blocks-components-select__label { color: var(--c-text-muted) !important; }
.wc-blocks-components-select__container svg,
.wc-blocks-components-select__container .wc-blocks-components-select__expand { color: var(--c-text) !important; fill: var(--c-text) !important; }

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 30px;
}
.shop_table th, .shop_table td {
	padding: 16px 10px;
	border-bottom: 1px solid var(--c-border);
	text-align: left;
}
#coupon_code {
	padding: 12px;
	border: 1px solid var(--c-border);
	background: var(--c-surface);
	color: var(--c-text);
	border-radius: var(--radius);
}
.woocommerce-cart-form .quantity input {
	width: 60px;
	padding: 8px;
	border: 1px solid var(--c-border);
	background: var(--c-surface);
	color: var(--c-text);
}
.wc-proceed-to-checkout .checkout-button,
.checkout-button,
#place_order {
	background: var(--c-pop-bg) !important;
	color: var(--c-pop-text) !important;
	font-family: var(--font-display);
	font-size: 18px;
	letter-spacing: 1px;
	padding: 16px 30px !important;
	border-radius: var(--radius) !important;
	border: none !important;
	width: 100%;
	text-align: center;
	cursor: pointer;
}
.wc-proceed-to-checkout .checkout-button:hover,
#place_order:hover { background: var(--c-accent) !important; color: var(--c-on-accent) !important; }
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--c-border);
	background: var(--c-surface);
	color: var(--c-text);
	border-radius: var(--radius);
	font-family: var(--font-body);
}
.woocommerce-checkout label { font-size: 14px; font-weight: 600; }
#order_review { background: var(--c-bg-alt); border: 1px solid var(--c-border); padding: 26px; border-radius: var(--radius); }

.woocommerce-message, .woocommerce-info, .woocommerce-error {
	border-top-color: var(--c-accent) !important;
	padding: 16px 20px !important;
	background: var(--c-bg-alt) !important;
	color: var(--c-text) !important;
	border-radius: var(--radius);
}

/* ===== Mi cuenta / Login / Registro ===== */
.woocommerce-form-row { margin-bottom: 18px; }
.woocommerce-form-row label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--c-text); }
.woocommerce-form .input-text,
.woocommerce-form select,
.woocommerce-form textarea,
.woocommerce-EditAccountForm input.input-text,
.woocommerce-EditAccountForm select,
.woocommerce-ResetPassword input.input-text {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--c-border);
	background: var(--c-surface);
	color: var(--c-text);
	border-radius: var(--radius);
	font-family: var(--font-body);
}
.password-input { position: relative; display: block; }
.password-input input.input-text { padding-right: 46px; }
.show-password-input {
	position: absolute;
	top: 50%;
	right: 6px;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	border: none;
	background: transparent;
	cursor: pointer;
	opacity: 0.6;
}
.show-password-input::before {
	content: "";
	position: absolute;
	inset: 8px;
	background: var(--c-text);
	-webkit-mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5c-7 0-10 7-10 7s3 7 10 7 10-7 10-7-3-7-10-7Zm0 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8Z'/%3E%3C/svg%3E");
	mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5c-7 0-10 7-10 7s3 7 10 7 10-7 10-7-3-7-10-7Zm0 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8Z'/%3E%3C/svg%3E");
}
.show-password-input:hover { opacity: 1; }
.woocommerce-form__input-checkbox,
input[type="checkbox"],
input[type="radio"] { accent-color: var(--c-white); }
.woocommerce-form-login__rememberme { display: flex; align-items: center; gap: 8px; margin-bottom: 0; }
.woocommerce-form-login .form-row:has(.woocommerce-form-login__submit) { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.woocommerce-LostPassword { margin-top: 16px; }
.woocommerce-LostPassword a, .woocommerce-form-login .lost_password a { color: var(--c-text-muted); text-decoration: underline; font-size: 14px; }
.woocommerce-LostPassword a:hover { color: var(--c-white); }
.woocommerce-button.button,
.woocommerce-form-login__submit,
.woocommerce-form-register__submit,
.woocommerce-Button,
.woocommerce-account .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--c-chrome) !important;
	color: var(--c-on-accent) !important;
	font-family: var(--font-display) !important;
	letter-spacing: 1px;
	font-size: 14px;
	padding: 13px 28px !important;
	border-radius: var(--radius) !important;
	border: none !important;
	cursor: pointer;
	text-transform: uppercase;
}
.woocommerce-button.button:hover,
.woocommerce-form-login__submit:hover,
.woocommerce-form-register__submit:hover,
.woocommerce-account .button:hover { filter: brightness(1.1); }
.woocommerce-MyAccount-navigation ul { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.woocommerce-MyAccount-navigation li a {
	display: inline-flex;
	padding: 10px 18px;
	border: 1px solid var(--c-border);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--c-text-muted);
}
.woocommerce-MyAccount-navigation li.is-active a { background: var(--c-white); color: var(--c-black); border-color: var(--c-white); }
.woocommerce-MyAccount-content table.shop_table { color: var(--c-text); }

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

/* ===== Login / Registro (pantalla completa) ===== */
.page-title:has(+ .entry-content .sn-auth) { display: none; }
.sn-auth {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: stretch;
	gap: 64px;
	padding: 50px 0;
}
.sn-auth-panel {
	display: flex;
	flex-direction: column;
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: 20px;
	padding: 56px 52px;
}
.sn-auth-panel form { display: flex; flex-direction: column; flex: 1; }
.sn-auth-panel .sn-auth-divider { margin-top: auto; padding-top: 26px; }
.sn-auth-eyebrow {
	display: block;
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--c-text-muted);
	margin-bottom: 10px;
}
.sn-auth-title {
	font-family: var(--font-display);
	font-size: 44px;
	text-align: center;
	background: var(--c-chrome);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 12px;
}
.sn-auth-sub {
	text-align: center;
	color: var(--c-text-muted);
	font-size: 14px;
	margin-bottom: 38px;
}
.sn-auth-benefits {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 34px;
	padding: 24px 24px;
	background: var(--c-bg-alt);
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
}
.sn-auth-benefits li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	font-weight: 600;
	color: var(--c-text);
	line-height: 1.5;
}
.sn-auth-benefit-icon { flex-shrink: 0; font-size: 16px; line-height: 1.4; }
.sn-auth-panel .sn-field { position: relative; margin-bottom: 22px; }
.sn-auth-panel .sn-field-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--c-text-muted);
	pointer-events: none;
	display: flex;
	z-index: 1;
}
.sn-auth-panel .sn-field input.input-text {
	width: 100%;
	padding: 16px 16px 16px 46px;
	font-size: 15px;
	border: 1px solid var(--c-border);
	background: var(--c-bg-alt);
	color: var(--c-text);
	border-radius: var(--radius);
	font-family: var(--font-body);
}
.sn-auth-panel .password-input .sn-field-icon { z-index: 2; }
.sn-login-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 22px;
}
.sn-login-row .woocommerce-form-login__rememberme { margin-bottom: 0; }
.sn-login-row .lost_password { font-size: 13px; }
.sn-auth-submit.btn { width: 100%; justify-content: center; text-align: center; }
.sn-auth-divider {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 26px 0 18px;
	color: var(--c-text-muted);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.sn-auth-divider::before, .sn-auth-divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--c-border);
}
.sn-social-row { display: flex; gap: 14px; }
.sn-social-btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 16px;
	border: 1px solid var(--c-border);
	background: transparent;
	color: var(--c-text);
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: border-color 0.2s ease, transform 0.15s ease;
}
.sn-social-btn:hover { border-color: var(--c-white); transform: translateY(-1px); }
.sn-terms-row { margin-bottom: 22px; }
.sn-terms-row label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--c-text-muted); cursor: pointer; }
.sn-terms-row input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }
.sn-terms-row a { color: var(--c-text); text-decoration: underline; }
.sn-auth-center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 0 12px;
}
.sn-auth-logo { width: 130px; height: auto; }
.sn-auth-center-line { width: 1px; flex: 1; max-height: 140px; background: var(--c-border); }
.sn-auth-slogan {
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--c-text-muted);
	line-height: 1.7;
}
@media (max-width: 960px) {
	.sn-auth { grid-template-columns: 1fr; gap: 0; padding: 40px 20px; }
	.sn-auth-center { flex-direction: row; padding: 24px 0; }
	.sn-auth-center-line { width: auto; height: 1px; flex: 1; max-height: none; }
	.sn-auth-logo { width: 70px; }
	.sn-auth-panel { padding: 32px 24px; }
}

/* ===== Mis Puntos (referidos) ===== */
.sn-points-page { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); }
.sn-points-card {
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	padding: 28px;
}
.sn-points-card-code { grid-column: 1 / -1; }
.sn-points-eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--c-text-muted);
	margin-bottom: 14px;
}
.sn-referral-code-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.sn-referral-code {
	font-family: var(--font-display);
	font-size: 30px;
	letter-spacing: 2px;
	background: var(--c-chrome);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.sn-points-sub { color: var(--c-text-muted); font-size: 14px; margin-bottom: 18px; }
.sn-points-balance { font-family: var(--font-display); font-size: 40px; color: var(--c-white); margin-bottom: 14px; }
.sn-points-balance span { font-size: 16px; color: var(--c-text-muted); font-family: var(--font-body); }
.sn-points-bar { height: 10px; border-radius: 999px; background: var(--c-bg-alt); border: 1px solid var(--c-border); overflow: hidden; margin-bottom: 14px; }
.sn-points-bar-fill { height: 100%; background: var(--c-chrome); }
.sn-rewards-list { display: flex; flex-direction: column; gap: 10px; }
.sn-rewards-list li {
	display: flex;
	justify-content: space-between;
	padding: 12px 16px;
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	background: var(--c-bg-alt);
}
.sn-reward-code { font-weight: 700; letter-spacing: 1px; }
.sn-reward-amount { color: var(--c-text-muted); }
@media (max-width: 720px) {
	.sn-points-page { grid-template-columns: 1fr; }
}

/* ===== Botón de favoritos ===== */
.sn-favorite-btn {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--c-border);
	border-radius: 50%;
	background: rgba(0,0,0,0.55);
	color: var(--c-white);
	cursor: pointer;
	transition: transform 0.15s ease, color 0.2s ease, border-color 0.2s ease;
}
.sn-favorite-btn:hover { transform: scale(1.08); border-color: var(--c-white); }
.sn-favorite-btn.is-active { color: #ff4d6d; border-color: #ff4d6d; }
.sn-favorite-btn.is-loading { opacity: 0.6; pointer-events: none; }
.single-product .sn-favorite-btn { position: static; width: auto; height: auto; border-radius: var(--radius); padding: 12px 18px; gap: 8px; margin-top: 14px; }
.single-product .sn-favorite-btn::after { content: "Añadir a favoritos"; font-size: 13px; font-weight: 600; margin-left: 8px; }
.single-product .sn-favorite-btn.is-active::after { content: "En tus favoritos"; }

/* ===== Estado vacío (favoritos, etc.) ===== */
.sn-empty-state { text-align: center; padding: 60px 20px; color: var(--c-text-muted); }
.sn-empty-state p { margin-bottom: 20px; font-size: 15px; }

/* ===== Escritorio de Mi Cuenta ===== */
.sn-dashboard-welcome {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 30px;
}
.sn-community-badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--c-bg-alt);
	border: 1px solid var(--c-border);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: var(--c-text);
	margin-bottom: 12px;
}
.sn-dashboard-hello { font-family: var(--font-display); font-size: 32px; margin-bottom: 8px; }
.sn-dashboard-sub { color: var(--c-text-muted); font-size: 14px; max-width: 480px; }
.sn-dashboard-logout { font-size: 13px; color: var(--c-text-muted); text-decoration: underline; white-space: nowrap; }
.sn-dashboard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 28px; }
.sn-dash-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 24px;
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	transition: border-color 0.2s ease, transform 0.15s ease;
}
.sn-dash-card:hover { border-color: var(--c-white); transform: translateY(-2px); }
.sn-dash-card-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--c-text-muted); }
.sn-dash-card-value { font-family: var(--font-display); font-size: 34px; color: var(--c-white); }
.sn-dash-card-link { font-size: 12px; color: var(--c-text-muted); margin-top: 6px; }
.sn-dashboard-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 18px;
	padding: 26px 28px;
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
}
@media (max-width: 900px) {
	.sn-dashboard-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.sn-dashboard-grid { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.site-footer {
	background: var(--c-black);
	color: var(--c-gray-light);
	padding-top: 70px;
}
.footer-inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 50px;
	border-bottom: 1px solid var(--c-border);
}
.footer-logo-img { max-width: 220px; height: auto; margin-bottom: 18px; }
.footer-brand p { max-width: 320px; color: #9c9ca0; margin-bottom: 18px; }
.social-link { font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; border-bottom: 2px solid var(--c-accent); padding-bottom: 3px; }
.footer-widget-title { color: var(--c-white); font-size: 16px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--c-white); }
.footer-bottom {
	padding: 22px 0;
	text-align: center;
	font-size: 13px;
	color: #7a7a7e;
}

/* ===== WhatsApp float button ===== */
.whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	width: 58px;
	height: 58px;
	background: #25d366;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.6);
	z-index: 999;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	animation: sn-whatsapp-pulse 2.4s infinite;
}
.whatsapp-float:hover {
	transform: scale(1.08);
	color: #fff;
}
@keyframes sn-whatsapp-pulse {
	0% { box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.55); }
	70% { box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 600px) {
	.whatsapp-float {
		right: 16px;
		bottom: 16px;
		width: 52px;
		height: 52px;
	}
}

/* ===== Generic pages ===== */
.page-content { padding-top: 70px; padding-bottom: 70px; max-width: 820px; }
.page-content:has(.sn-auth) { max-width: 1560px; }
.page-title { font-size: 42px; margin-bottom: 24px; }
.entry-content { color: var(--c-text-muted); line-height: 1.7; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
	.split-inner { grid-template-columns: 1fr; }
	.split-block.reverse .split-inner { direction: ltr; }
	.footer-inner { grid-template-columns: 1fr 1fr; }
	ul.products { grid-template-columns: repeat(3, 1fr); }
	.single-product div.product { grid-template-columns: 1fr; }
	.plans-grid { grid-template-columns: 1fr; }
	.coach-inner { grid-template-columns: 1fr; gap: 50px; }
	.coach-media { max-width: 380px; margin: 0 auto; }
	.supp-inner { grid-template-columns: 1fr; gap: 60px; }
	.supp-media { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 720px) {
	.nav-toggle { display: flex; }
	.primary-nav {
		position: fixed;
		inset: 0 0 0 auto;
		width: 78%;
		height: 100vh;
		background: var(--c-black);
		transform: translateX(100%);
		transition: transform 0.25s ease;
		padding: 100px 30px;
	}
	.primary-nav.is-open { transform: translateX(0); }
	.primary-nav ul { flex-direction: column; gap: 26px; }
	.primary-nav a { color: var(--c-white); font-size: 18px; }
	ul.products { grid-template-columns: repeat(2, 1fr); gap: 18px; }
	.footer-inner { grid-template-columns: 1fr; }
	.hero { padding: 70px 0 60px; }
	.section { padding: 56px 0; }
	.category-showcase { grid-template-columns: 1fr; }
	.cat-card { height: 280px; border-right: none; border-bottom: 1px solid var(--c-border); }
	.cat-card .cat-cta { opacity: 1; transform: none; }
}
