/* ============================================================
   Play and Toys — main.css
   Tokens de marca + base de diseño. Mobile-first.
   ============================================================ */

:root {
	/* --- Marca --- */
	--pt-brand:        #e5305f; /* Magenta corporativo (del logo) */
	--pt-brand-600:    #c21f4c; /* Hover / estados activos */
	--pt-brand-50:     #fdeef3; /* Fondos suaves de marca */
	--pt-teal:         #22a8a8; /* Turquesa corporativo (del logo) */
	--pt-teal-600:     #127c7c; /* Turquesa oscuro: fondos y texto sobre claro */
	--pt-teal-50:      #e6f6f6; /* Fondo suave turquesa */
	--pt-yellow:       #e8d828; /* Amarillo corporativo (del logo) */
	--pt-yellow-2:     #f0e24a; /* Amarillo claro (degradados) */
	--pt-yellow-ink:   #544b06; /* Texto oscuro SOLO sobre amarillo */
	--pt-plum:         #2a1522; /* Ciruela: fondo oscuro de marca (bandas/footer) */
	--pt-plum-700:     #3d1f30; /* Ciruela un paso más claro (hover sobre ciruela) */

	/* --- Neutros (matiz ciruela: se sienten "elegidos", no grises de stock) --- */
	--pt-ink:          #241827; /* Texto principal */
	--pt-ink-soft:     #6b5f6b; /* Texto secundario */
	--pt-ink-3:        #a595a1; /* Texto tenue: metadatos, tachados, captions */
	--pt-line:         #efe5ec; /* Bordes / divisores */
	--pt-bg:           #ffffff;
	--pt-bg-soft:      #faf5f8; /* Fondo suave (secciones alternas, chips) */
	--pt-bg-tint:      #f7f3f6; /* Fondo con más presencia de marca (bandas suaves) */
	--pt-success:      #12a150;
	--pt-warning:      #f59e0b;

	/* --- Tipografía --- */
	--pt-font:         system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--pt-fs-base:      clamp(13.5px, 0.4vw + 12.4px, 15px);
	--pt-lh:           1.6;

	/* --- Radios y sombras --- */
	--pt-radius:       12px;
	--pt-radius-sm:    8px;
	/* Sombras con matiz ciruela (más cohesión de marca que el gris neutro). */
	--pt-shadow:       0 2px 10px rgba(42, 21, 34, .07);
	--pt-shadow-lg:    0 16px 44px -14px rgba(42, 21, 34, .20);

	/* --- Espaciado / contenedor --- */
	--pt-gap:          clamp(16px, 3vw, 28px);
	--pt-maxw:         1200px;

	/* --- Transiciones --- */
	--pt-t:            .18s ease;
}

/* ---------- Base ---------- */
body {
	font-family: var(--pt-font);
	font-size: var(--pt-fs-base);
	line-height: var(--pt-lh);
	color: var(--pt-ink);
	background: var(--pt-bg);
}

a {
	color: var(--pt-brand);
	transition: color var(--pt-t);
}
a:hover { color: var(--pt-brand-600); }

/* ---------- Barra de beneficios (sobre el header, estilo Shopify) ---------- */
.pt-benefits {
	background: var(--pt-plum); /* Ciruela oscuro: contrasta con el header blanco y el botón Buscar. */
	color: #fff;
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .2px;
}
.pt-benefits__icon { color: var(--pt-yellow); } /* Iconos en amarillo de marca sobre el fondo oscuro. */
.pt-benefits__track {
	max-width: var(--pt-maxw);
	margin: 0 auto;
	padding: 8px var(--pt-gap);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
}
.pt-benefits__item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
}
.pt-benefits__icon { display: inline-flex; }
.pt-benefits__icon svg { width: 16px; height: 16px; }

/* En móvil: scroll horizontal suave para no apretar ni romper a 2 líneas. */
@media (max-width: 640px) {
	.pt-benefits__track {
		justify-content: flex-start;
		gap: 20px;
		overflow-x: auto;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}
	.pt-benefits__track::-webkit-scrollbar { display: none; }
}

/* ---------- Botones (incluye WooCommerce) ---------- */
.button,
button,
input[type="submit"],
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce #respond input#submit,
.woocommerce .button.alt {
	background-color: var(--pt-brand);
	border-color: var(--pt-brand);
	color: #fff;
	border-radius: var(--pt-radius-sm);
	font-weight: 600;
	transition: background-color var(--pt-t), transform var(--pt-t);
}

.button:hover,
button:hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .button.alt:hover {
	background-color: var(--pt-brand-600);
	border-color: var(--pt-brand-600);
	color: #fff;
	transform: translateY(-1px);
}

/* ---------- Precios WooCommerce ---------- */
.woocommerce span.price,
.woocommerce ul.products li.product .price {
	color: var(--pt-ink);
	font-weight: 700;
}
.woocommerce span.price del { color: var(--pt-ink-soft); font-weight: 400; }
.woocommerce span.price ins  { text-decoration: none; color: var(--pt-brand-600); }

/* ---------- Tarjetas de producto ---------- */
.woocommerce ul.products li.product {
	background: var(--pt-bg);
	border: 1px solid var(--pt-line);
	border-radius: var(--pt-radius);
	padding: 14px;
	transition: box-shadow var(--pt-t), transform var(--pt-t);
}
.woocommerce ul.products li.product:hover {
	box-shadow: var(--pt-shadow-lg);
	transform: translateY(-2px);
}

/* ---------- Badge de oferta tipo píldora (Shopify-style) ---------- */
.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale {
	background: var(--pt-brand);
	color: #fff;
	border-radius: 999px;
	font-weight: 700;
	font-size: .78rem;
	letter-spacing: .2px;
	padding: 4px 12px;
	min-height: 0;
	min-width: 0;
	line-height: 1.4;
	box-shadow: var(--pt-shadow);
}

/* ---------- Catálogo: tarjetas parejas tipo Shopify ----------
   Blocksy ya entrega el grid, el hover-reveal del botón (.ct-woo-card-actions
   data-add-to-cart="auto-hide") y el AJAX. Aquí solo afinamos consistencia:
   imagen 4:3 que SIEMPRE llena su caja, título a 2 líneas (alturas parejas) y
   el botón "Agregar" de la tarjeta con color de marca y ancho completo. */

/* La foto llena el contenedor 4:3 sin deformar (red de seguridad para fotos
   cuyo origen no sea exactamente 4:3). */
.woocommerce ul.products li.product .ct-media-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Título a 2 líneas máximo → todas las tarjetas quedan a la misma altura. */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.6em;
	line-height: 1.3;
	font-size: .98rem;
}

/* Botón "Agregar al carrito" de la tarjeta: marca + ancho completo (táctil). */
.woocommerce ul.products li.product .ct-woo-card-actions .button,
.woocommerce ul.products li.product .add_to_cart_button {
	display: block;
	width: 100%;
	text-align: center;
}

/* Info extra en la tarjeta: transferencia (−X%) + disponibilidad. */
.pt-card-extra {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 6px;
}
.pt-card-transfer {
	display: inline-flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px;
	font-size: .86rem;
}
.pt-card-transfer__badge {
	background: var(--pt-brand);
	color: #fff;
	font-weight: 800;
	font-size: clamp(9px, 1.7cqi, 13px);
	padding: 1px 7px;
	border-radius: 999px;
	align-self: center;
}
.pt-card-transfer__val { font-weight: 700; color: var(--pt-brand-600); }
.pt-card-transfer__tag { color: var(--pt-ink-soft); font-size: .78rem; }
.pt-card-avail {
	align-self: flex-start;
	font-size: .76rem;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 999px;
}
.pt-card-avail--ok {
	color: var(--pt-success);
	background: color-mix(in srgb, var(--pt-success) 12%, transparent);
}
.pt-card-avail--fab {
	color: #b45309;
	background: color-mix(in srgb, var(--pt-warning) 16%, transparent);
}

/* ---------- Cantidad (quantity) más usable y táctil ---------- */
.woocommerce .quantity .qty {
	border: 1px solid var(--pt-line);
	border-radius: var(--pt-radius-sm);
	padding: 10px;
	font-weight: 600;
	text-align: center;
}

/* ---------- Señales de confianza bajo el botón de compra ---------- */
.pt-trust {
	list-style: none;
	margin: 18px 0 0;
	padding: 16px 0 0;
	border-top: 1px solid var(--pt-line);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}
.pt-trust__item {
	display: flex;
	align-items: center;
	gap: 10px;
}
.pt-trust__icon {
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--pt-brand-50);
	color: var(--pt-brand-600);
}
.pt-trust__icon svg { width: 19px; height: 19px; }
.pt-trust__text { display: flex; flex-direction: column; line-height: 1.25; }
.pt-trust__text strong { font-size: .9rem; color: var(--pt-ink); }
.pt-trust__text span { font-size: .78rem; color: var(--pt-ink-soft); }

/* En móvil: apilado vertical para no apretar el contenido */
@media (max-width: 600px) {
	.pt-trust {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

/* ---------- Estimador de despacho (ficha de producto) ---------- */
.pt-ship {
	margin: 18px 0 0;
	padding: 0;
	border: 1px solid var(--pt-line);
	border-radius: 18px;
	background: #fff;
	overflow: hidden;
}
.pt-ship__head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px 18px;
	border-bottom: 1px solid var(--pt-line);
}
.pt-ship__headtxt { display: grid; gap: 1px; }
.pt-ship__head strong { font-size: .97rem; color: var(--pt-ink); line-height: 1.2; }
.pt-ship__sub { font-size: .78rem; color: var(--pt-ink-soft); }
.pt-ship__icon {
	width: 34px;
	height: 34px;
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	border-radius: 10px;
	background: var(--pt-brand-50);
	color: var(--pt-brand-600);
}
.pt-ship__icon svg { width: 19px; height: 19px; }
/* Selector inline en dos pasos: Región → Comuna (pills lado a lado, acordeón) */
.pt-geo {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 16px 18px 6px;
}

.pt-geo__step {
	flex: 1 1 0;
	min-width: 0;
	border: 1px solid var(--pt-line);
	border-radius: 12px;
	background: var(--pt-bg-soft);
	overflow: hidden;
	transition: border-color var(--pt-t), box-shadow var(--pt-t), background-color var(--pt-t);
}
.pt-geo__step.is-open {
	background: #fff;
	border-color: var(--pt-brand);
	box-shadow: 0 0 0 3px var(--pt-brand-50);
}
.pt-geo__step.is-disabled { opacity: .55; }

.pt-geo__trigger {
	display: flex;
	align-items: center;
	gap: 9px;
	width: 100%;
	padding: 10px 11px;
	background: transparent;
	border: 0;
	font: inherit;
	color: var(--pt-ink);
	text-align: left;
	cursor: pointer;
}
.pt-geo__step.is-disabled .pt-geo__trigger { cursor: not-allowed; }
.pt-geo__trigger:disabled { cursor: not-allowed; }
/* El tema padre (Blocksy) rellena de magenta cualquier <button>:hover. Lo anulamos:
   el encabezado de región/comuna se mantiene neutro y con texto oscuro (nada rosado). */
.pt-geo__step .pt-geo__trigger:hover,
.pt-geo__step .pt-geo__trigger:focus,
.pt-geo__step .pt-geo__trigger:focus-visible,
.pt-geo__step .pt-geo__trigger:active {
	background: var(--pt-bg-soft) !important;
	background-color: var(--pt-bg-soft) !important;
	color: var(--pt-ink) !important;
	box-shadow: none !important;
	outline: none !important;
}
.pt-geo__step.is-open .pt-geo__trigger:hover,
.pt-geo__step.is-open .pt-geo__trigger:focus { background: transparent !important; background-color: transparent !important; }
.pt-geo__step.is-disabled .pt-geo__trigger:hover { background: transparent !important; background-color: transparent !important; }
/* Los textos internos nunca se vuelven blancos por el hover del padre. */
.pt-geo__trigger:hover .pt-geo__caption { color: var(--pt-ink-soft) !important; }
.pt-geo__trigger:hover .pt-geo__value { color: var(--pt-ink) !important; }
.pt-geo__trigger:hover .pt-geo__value--empty { color: var(--pt-ink-soft) !important; }
.pt-geo__trigger:hover .pt-geo__chev { color: var(--pt-ink-soft) !important; }

.pt-geo__num {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--pt-brand);
	color: #fff;
	font-size: .72rem;
	font-weight: 700;
}

.pt-geo__field {
	flex: 1 1 auto;
	min-width: 0;
	display: grid;
	gap: 1px;
}
.pt-geo__caption {
	font-size: .72rem;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: var(--pt-ink-soft);
}
.pt-geo__value {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: .94rem;
	font-weight: 600;
	color: var(--pt-ink);
}
.pt-geo__value--empty { color: var(--pt-ink-soft); font-weight: 400; }

.pt-geo__chev {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	color: var(--pt-ink-soft);
	transition: transform var(--pt-t);
}
.pt-geo__step.is-open .pt-geo__chev { transform: rotate(180deg); }

/* Cajón inline: se expande dentro de la misma sección (sin overlay) */
.pt-geo__drawer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .22s ease;
}
.pt-geo__step.is-open .pt-geo__drawer { grid-template-rows: 1fr; }
.pt-geo__drawer-inner {
	min-height: 0;
	overflow: hidden;
	border-top: 1px solid transparent;
}
.pt-geo__step.is-open .pt-geo__drawer-inner { border-top-color: var(--pt-line); }

.pt-geo__search {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 11px;
	border-bottom: 1px solid var(--pt-line);
}
.pt-geo__search svg { width: 15px; height: 15px; color: var(--pt-ink-soft); flex: 0 0 auto; }
.pt-geo__searchinput {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	outline: none;
	background: transparent;
	font: inherit;
	font-size: .9rem;
	color: var(--pt-ink);
}
.pt-geo__list {
	list-style: none;
	margin: 0;
	padding: 5px;
	max-height: 240px;
	overflow-y: auto;
	overscroll-behavior: contain;
}
.pt-geo__opt {
	padding: 9px 11px;
	border-radius: var(--pt-radius-sm);
	cursor: pointer;
	font-size: .92rem;
	line-height: 1.3;
	transition: background-color var(--pt-t), color var(--pt-t);
}
.pt-geo__opt { color: var(--pt-ink) !important; }
.pt-geo__opt:hover,
.pt-geo__opt.is-active {
	background: #e6f6f6 !important;   /* tinte turquesa claro (NADA rosado) */
	color: var(--pt-teal-600) !important; /* texto turquesa oscuro: alto contraste */
}
.pt-geo__opt.is-selected { font-weight: 700; color: var(--pt-teal-600) !important; }
.pt-geo__opt.is-selected::after { content: "✓"; float: right; color: var(--pt-teal-600); font-weight: 700; }
.pt-geo__opt.is-selected:hover { color: var(--pt-teal-600) !important; }

/* Buscador: foco con color corporativo (elimina el borde azul del navegador) */
.pt-geo__search { border: 1px solid transparent; border-bottom-color: var(--pt-line); border-radius: 10px 10px 0 0; transition: border-color var(--pt-t), box-shadow var(--pt-t); }
.pt-geo__search:focus-within { border-color: var(--pt-teal); box-shadow: inset 0 0 0 1px var(--pt-teal); }
.pt-geo__searchinput:focus { outline: none !important; box-shadow: none !important; border: 0 !important; }
.pt-geo__searchinput::placeholder { color: var(--pt-ink-3); }
.pt-geo__empty {
	padding: 16px 11px;
	text-align: center;
	color: var(--pt-ink-soft);
	font-size: .88rem;
}

/* Resultado: tarjeta con beneficio (verde) o precio white-label */
.pt-ship__result { padding: 6px 18px 4px; font-size: .92rem; }
.pt-ship__result:empty { padding: 0; }
.pt-ship__ok {
	display: grid;
	gap: 8px;
	padding: 13px 15px;
	background: var(--pt-bg-soft);
	border: 1px solid var(--pt-line);
	border-radius: 14px;
}
.pt-ship__ok--free, .pt-ship__ok--promo {
	background: #f2fbf6;
	border-color: #cdeede;
}
.pt-ship__okrow { display: flex; align-items: center; gap: 10px; }
.pt-ship__check {
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--pt-brand-50);
	color: var(--pt-brand-600);
}
.pt-ship__ok--free .pt-ship__check, .pt-ship__ok--promo .pt-ship__check { background: #12a45a; color: #fff; }
.pt-ship__check svg { width: 15px; height: 15px; }
.pt-ship__okmain { flex: 1 1 auto; min-width: 0; line-height: 1.35; display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.pt-ship__range strong { color: var(--pt-brand-600); font-size: 1.1rem; font-weight: 700; }
.pt-ship__ok--free .pt-ship__range strong, .pt-ship__free { color: #0f7a43; }
.pt-ship__to { color: var(--pt-ink-soft); font-size: .9rem; }
.pt-ship__promo {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	justify-self: start;
	margin-left: 36px;
	background: #e2f6ec;
	color: #0f7a43;
	font-size: .8rem;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 20px;
}
.pt-ship__promo svg { width: 13px; height: 13px; }
.pt-ship__meta { padding-left: 36px; }
.pt-ship__days { color: var(--pt-ink-soft); font-size: .86rem; }
.pt-ship__note {
	margin: 2px 0 0;
	padding-left: 36px;
	color: var(--pt-ink-soft);
	font-size: .75rem;
	line-height: 1.45;
}
.pt-ship__manual { color: var(--pt-ink-soft); }
.pt-ship__err { color: #c0392b; }
.pt-ship__loading { color: var(--pt-ink-soft); }

/* ============================================================
   Home (front-page.php) — colores corporativos del logo
   Regla de contraste: texto oscuro SOLO sobre claro/amarillo;
   texto blanco SOLO sobre magenta/turquesa/ciruela.
   ============================================================ */
.pt-home {
	--pt-home-pad: clamp(38px, 6vw, 72px);
	overflow-x: clip; /* contiene las bandas full-bleed: nunca scroll horizontal. */
}

/* Botones de la home (control total de color y contraste) */
.pt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-weight: 800;
	font-size: 1rem;
	line-height: 1;
	padding: 14px 22px;
	border-radius: var(--pt-radius);
	border: 0;
	cursor: pointer;
	transition: transform .12s ease, background-color var(--pt-t), border-color var(--pt-t);
}
.pt-btn svg { width: 18px; height: 18px; }
.pt-btn--mag { background: var(--pt-brand); color: #fff; }
.pt-btn--mag:hover { background: var(--pt-brand-600); color: #fff; transform: translateY(-2px); }
.pt-btn--y { background: var(--pt-yellow); color: var(--pt-yellow-ink); }
.pt-btn--y:hover { color: var(--pt-yellow-ink); transform: translateY(-2px); }
.pt-btn--ghost { background: #fff; border: 1.6px solid var(--pt-line); color: var(--pt-brand-600); }
.pt-btn--ghost:hover { border-color: var(--pt-brand); color: var(--pt-brand-600); }
.pt-btn--wout { background: rgba(255,255,255,.14); border: 1.6px solid rgba(255,255,255,.42); color: #fff; }
.pt-btn--wout:hover { background: rgba(255,255,255,.24); color: #fff; }

/* Bandas full-bleed: rompen el ancho del <main> de Blocksy sin JS. */
.pt-hero,
.pt-usp {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* ---------- Hero (luminoso, texto oscuro sobre claro) ---------- */
.pt-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(150deg, #fff 0%, var(--pt-brand-50) 55%, var(--pt-teal-50) 100%);
	border-bottom: 1px solid var(--pt-line);
}
.pt-hero::before {
	content: "";
	position: absolute;
	right: -90px;
	top: -90px;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232,216,40,.5), transparent 66%);
}
.pt-hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--pt-maxw);
	margin: 0 auto;
	padding: var(--pt-home-pad) var(--pt-gap);
	display: grid;
	grid-template-columns: 1.02fr .98fr;
	gap: clamp(24px, 4vw, 40px);
	align-items: center;
}
.pt-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	background: #fff;
	border: 1px solid var(--pt-line);
	color: var(--pt-brand-600);
	font-weight: 800;
	font-size: .78rem;
	padding: 7px 14px;
	border-radius: 999px;
	box-shadow: var(--pt-shadow);
}
.pt-hero__eyebrow svg { width: 14px; height: 14px; color: var(--pt-yellow-ink); }
.pt-hero__stars {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 14px 0 0;
	font-size: .84rem;
	font-weight: 700;
	color: var(--pt-ink-soft);
}
.pt-hero__starrow { display: inline-flex; gap: 1px; color: #f6b21b; }
.pt-hero__starrow svg { width: 16px; height: 16px; fill: currentColor; stroke: none; filter: drop-shadow(0 1px 1px rgba(246,178,27,.35)); }
.pt-hero__title {
	margin: 16px 0 0;
	max-width: 16ch;
	font-size: clamp(2rem, 4.4vw, 3.3rem);
	line-height: 1.04;
	font-weight: 900;
	letter-spacing: -.5px;
	color: var(--pt-ink);
}
.pt-hero__title mark {
	background: linear-gradient(transparent 60%, rgba(232,216,40,.85) 60%);
	color: inherit;
	padding: 0 .05em;
}
.pt-hero__sub {
	margin: 16px 0 24px;
	max-width: 34ch;
	font-size: clamp(1rem, 1.4vw, 1.18rem);
	color: var(--pt-ink-soft);
}
.pt-hero__cta {
	display: flex;
	gap: 13px;
	flex-wrap: wrap;
	margin-bottom: 22px;
}
.pt-chips {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	font-size: .86rem;
	color: var(--pt-ink);
	font-weight: 600;
}
.pt-chips span { display: inline-flex; align-items: center; gap: 7px; }
.pt-chips svg { width: 16px; height: 16px; color: var(--pt-teal-600); }
.pt-hero__media { position: relative; }
.pt-hero__photo {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--pt-shadow-lg);
	aspect-ratio: 4 / 3;
	background: var(--pt-teal-50);
}
.pt-hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pt-fcard {
	position: absolute;
	left: -14px;
	bottom: -22px;
	background: rgba(255,255,255,.92);
	backdrop-filter: saturate(1.4) blur(6px);
	border: 1px solid rgba(255,255,255,.7);
	border-radius: 18px;
	box-shadow: 0 18px 40px -14px rgba(38,25,42,.4), 0 2px 8px rgba(38,25,42,.08);
	padding: 13px 15px;
	display: flex;
	align-items: center;
	gap: 13px;
	max-width: 300px;
	text-decoration: none;
	transition: transform .25s ease, box-shadow .25s ease;
}
.pt-fcard:hover { transform: translateY(-3px); box-shadow: 0 26px 50px -14px rgba(38,25,42,.48), 0 3px 10px rgba(38,25,42,.1); }
.pt-fcard__th {
	width: 60px;
	height: 60px;
	border-radius: 13px;
	overflow: hidden;
	flex: 0 0 auto;
	background: var(--pt-bg-soft);
}
.pt-fcard__th img { width: 100%; height: 100%; object-fit: cover; }
.pt-fcard__info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.pt-fcard b { font-size: .88rem; display: block; line-height: 1.18; color: var(--pt-ink); font-weight: 800; }
.pt-fcard__rate { display: inline-flex; color: #f6b21b; margin: 1px 0; }
.pt-fcard__stars { display: inline-flex; gap: 1px; }
.pt-fcard__rate svg { width: 12px; height: 12px; fill: currentColor; stroke: none; }
.pt-fcard__p { color: var(--pt-brand-600); font-weight: 900; font-size: 1.08rem; margin-top: 1px; }
.pt-fcard__p .amount,
.pt-fcard__p .woocommerce-Price-amount { font-weight: 900; }
.pt-fcard__free { font-size: .7rem; color: var(--pt-success); font-weight: 800; margin-top: 2px; }
.pt-fcard__k { font-size: .66rem; font-weight: 800; color: var(--pt-brand); text-transform: uppercase; letter-spacing: .04em; }
.pt-fcard__was { color: var(--pt-ink-3, #a99fad); text-decoration: line-through; font-weight: 600; font-size: .82em; margin-left: 6px; }
.pt-fcard__go { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--pt-brand); color: #fff; display: grid; place-items: center; box-shadow: 0 6px 14px -4px rgba(229,48,95,.6); transition: transform .25s ease; }
.pt-fcard__go svg { width: 16px; height: 16px; }
.pt-fcard:hover .pt-fcard__go { transform: translateX(2px); }
@media (max-width: 860px) {
	.pt-hero__inner { grid-template-columns: 1fr; gap: 40px; }
	.pt-fcard { left: 12px; }
}

/* ===== Estilos de hero / slider (elegibles desde la intranet) ===== */
/* Impacto: imagen a pantalla completa con velo y texto centrado */
.pt-hero--centered { background: var(--hero-bg, linear-gradient(150deg, #fff, var(--pt-brand-50))) center/cover no-repeat; position: relative; }
.pt-hero--centered::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(38,25,42,.32), rgba(38,25,42,.74)); }
.pt-hero--centered .pt-hero__inner { position: relative; z-index: 1; grid-template-columns: 1fr; max-width: 920px; text-align: center; }
.pt-hero--centered .pt-hero__col { display: flex; flex-direction: column; align-items: center; }
.pt-hero--centered .pt-hero__title, .pt-hero--centered .pt-hero__sub { color: #fff; }
.pt-hero--centered .pt-hero__sub { max-width: 46ch; }
.pt-hero--centered .pt-hero__eyebrow { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.32); color: #fff; }
.pt-hero--centered .pt-hero__eyebrow svg { color: var(--pt-yellow); }
.pt-hero--centered .pt-chips { color: #fff; justify-content: center; }
.pt-hero--centered .pt-chips svg { color: var(--pt-yellow); }
.pt-hero--centered .pt-hero__cta { justify-content: center; }

/* Minimalista: degradado de marca, sin foto */
.pt-hero--minimal .pt-hero__inner { grid-template-columns: 1fr; max-width: 840px; text-align: center; }
.pt-hero--minimal .pt-hero__col { display: flex; flex-direction: column; align-items: center; }
.pt-hero--minimal .pt-hero__sub { max-width: 48ch; }
.pt-hero--minimal .pt-chips, .pt-hero--minimal .pt-hero__cta { justify-content: center; }

/* Beneficios: 3 cajas en la columna derecha */
.pt-hero__benefits { display: flex; flex-direction: column; gap: 14px; }
.pt-hbx { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--pt-line); border-radius: 16px; padding: 18px 20px; box-shadow: var(--pt-shadow); }
.pt-hbx__ic { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 12px; background: var(--pt-brand-50); color: var(--pt-brand); display: grid; place-items: center; }
.pt-hbx__ic svg { width: 22px; height: 22px; }
.pt-hbx b { display: block; font-size: 15px; }
.pt-hbx span { font-size: 13px; color: var(--pt-ink-soft); }

/* Tarjeta flotante sobre imagen */
.pt-hero--card { background: var(--hero-bg, linear-gradient(150deg, #fff, var(--pt-brand-50))) center/cover no-repeat; position: relative; }
.pt-hero--card::after { content: ""; position: absolute; inset: 0; background: rgba(38,25,42,.34); }
.pt-hero--card .pt-hero__inner { position: relative; z-index: 1; grid-template-columns: minmax(0, 560px); }
.pt-hero__col--card { background: #fff; border-radius: 22px; padding: clamp(26px, 4vw, 44px); box-shadow: var(--pt-shadow-lg); }

/* Banner ancho de fondo (compacto, moderno) */
.pt-hero--banner { background: var(--hero-bg, linear-gradient(150deg, #fff, var(--pt-brand-50))) center/cover no-repeat; position: relative; }
.pt-hero--banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(38,25,42,.8), rgba(38,25,42,.18)); }
.pt-hero--banner .pt-hero__inner { position: relative; z-index: 1; grid-template-columns: minmax(0, 640px); padding-top: 44px; padding-bottom: 44px; }
.pt-hero--banner .pt-hero__title { color: #fff; font-size: clamp(28px, 4vw, 46px); }
.pt-hero--banner .pt-hero__sub { color: #fff; }
.pt-hero--banner .pt-hero__eyebrow { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.3); color: #fff; }
.pt-hero--banner .pt-chips { color: #fff; }
.pt-hero--banner .pt-chips svg { color: var(--pt-yellow); }

/* Dúo — dos paneles */
.pt-hero__duo { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pt-hero__duop { position: relative; border-radius: 18px; overflow: hidden; background: var(--pt-teal-50) center/cover no-repeat; aspect-ratio: 3 / 4; box-shadow: var(--pt-shadow); display: flex; align-items: flex-end; padding: 14px; }
.pt-hero__duop .pt-fcard { position: static; width: auto; }

/* Collage — mosaico de 3 imágenes */
.pt-hero__collage { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; aspect-ratio: 1 / 1; }
.pt-hero__cg { border-radius: 16px; background: var(--pt-brand-50) center/cover no-repeat; box-shadow: var(--pt-shadow); }
.pt-hero__cg--1 { grid-row: 1 / 3; }

/* ==========================================================================
   Slider principal (banners con texto animado o solo imágenes, estilo Easy)
   ========================================================================== */
/* El banner se adapta al tamaño real de la imagen (sin recorte, alta calidad). */
.pt-herowrap { position: relative; }
.pt-hero--slider { position: relative; overflow: hidden; background: var(--pt-plum); border-radius: 0; transition: height .45s cubic-bezier(.4,.02,.2,1); }
.pt-hero__img { display: block; width: 100%; height: auto; }
.pt-hero__slide--link { display: block; cursor: pointer; }

/* Modo DESVANECER: apilados; la 1ª imagen (en flujo) define el alto, el resto encima */
.pt-hero--fade .pt-hero__track { position: relative; }
.pt-hero--fade .pt-hero__slide { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; transition: opacity .8s ease; }
.pt-hero--fade .pt-hero__slide:first-child { position: relative; }
.pt-hero--fade .pt-hero__slide.is-on { opacity: 1; z-index: 1; }

/* Modo DESLIZAR: pista horizontal que se corre (estilo Easy) */
.pt-hero--slide .pt-hero__track { display: flex; transition: transform .6s cubic-bezier(.4,.02,.2,1); align-items: flex-start; }
.pt-hero--slide .pt-hero__slide { flex: 0 0 100%; width: 100%; position: relative; }

/* Puntitos indicadores — FUERA del banner (debajo), para no tapar los textos. */
.pt-hero__dots { display: flex; justify-content: center; align-items: center; gap: 9px; padding: 14px 0 2px; }
.pt-hero__dot { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--pt-ink-3); cursor: pointer; padding: 0; transition: width .25s ease, background .25s ease; }
.pt-hero__dot:hover { background: var(--pt-ink-soft); }
.pt-hero__dot.is-on { background: var(--pt-brand); width: 26px; border-radius: 999px; }

/* Flechas prev/next — botones circulares modernos, siempre visibles */
.pt-hero__arrow {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
	width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
	border: 1px solid rgba(255,255,255,.7);
	background: rgba(255,255,255,.86); color: var(--pt-plum);
	display: grid; place-items: center; padding: 0;
	box-shadow: 0 10px 28px -10px rgba(38,25,42,.6);
	backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
	opacity: .92; transition: opacity .2s ease, background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.pt-hero__arrow svg { width: 24px; height: 24px; transition: transform .2s ease; }
.pt-hero__arrow:hover { opacity: 1; background: var(--pt-brand); color: #fff; border-color: var(--pt-brand); box-shadow: 0 14px 32px -10px rgba(229,48,95,.7); }
.pt-hero__arrow:active { transform: translateY(-50%) scale(.94); }
.pt-hero__arrow--prev:hover svg { transform: translateX(-2px); }
.pt-hero__arrow--next:hover svg { transform: translateX(2px); }
.pt-hero__arrow--prev { left: 18px; }
.pt-hero__arrow--next { right: 18px; }

/* --------------------------------------------------------------------------
   Textos del slide — capa publicitaria con estilos modernos y animación
   -------------------------------------------------------------------------- */
.pt-sl { position: absolute; inset: 0; z-index: 2; display: flex; padding: clamp(24px, 5vw, 64px); pointer-events: none; }
.pt-sl__inner { max-width: 560px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.pt-sl__inner > * { pointer-events: auto; margin: 0; }
.pt-sl__badge { display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 7px 13px; border-radius: 999px; background: var(--pt-yellow); color: var(--pt-yellow-ink); box-shadow: 0 6px 16px -6px rgba(0,0,0,.4); }
.pt-sl__title { font-size: clamp(24px, 3.6vw, 44px); line-height: 1.06; font-weight: 700; letter-spacing: -.02em; color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.35); }
.pt-sl__sub { font-size: clamp(15px, 1.6vw, 20px); line-height: 1.4; color: rgba(255,255,255,.95); text-shadow: 0 1px 12px rgba(0,0,0,.4); max-width: 30em; }
.pt-sl__cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; padding: 13px 26px; border-radius: 999px; background: var(--pt-brand); color: #fff; font-weight: 800; font-size: 15.5px; text-decoration: none; box-shadow: 0 12px 26px -10px rgba(229,48,95,.7); transition: transform .18s ease, background .18s ease; }
.pt-sl__cta:hover { background: var(--pt-brand-600); transform: translateY(-2px); }

/* Alineación del bloque de texto */
.pt-sl--al-left { align-items: center; justify-content: flex-start; text-align: left; }
.pt-sl--al-center { align-items: center; justify-content: center; text-align: center; }
.pt-sl--al-center .pt-sl__inner { align-items: center; margin: 0 auto; }
.pt-sl--al-right { align-items: center; justify-content: flex-end; text-align: right; }
.pt-sl--al-right .pt-sl__inner { align-items: flex-end; margin-left: auto; }

/* Scrim para legibilidad, según alineación */
.pt-sl::before { content: ""; position: absolute; inset: 0; z-index: -1; }
.pt-sl--al-left::before { background: linear-gradient(90deg, rgba(20,10,18,.72) 0%, rgba(20,10,18,.30) 45%, transparent 72%); }
.pt-sl--al-right::before { background: linear-gradient(270deg, rgba(20,10,18,.72) 0%, rgba(20,10,18,.30) 45%, transparent 72%); }
.pt-sl--al-center::before { background: radial-gradient(120% 100% at 50% 50%, rgba(20,10,18,.62) 0%, rgba(20,10,18,.30) 55%, transparent 100%); }

/* Estilos de texto (presets) */
.pt-sl--glass .pt-sl__inner { background: rgba(30,16,26,.42); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.18); border-radius: 20px; padding: 26px 30px; box-shadow: 0 24px 60px -24px rgba(0,0,0,.6); }
.pt-sl--glass::before { background: linear-gradient(90deg, rgba(20,10,18,.34), transparent 80%); }
.pt-sl--billboard { text-align: center; }
.pt-sl--billboard .pt-sl__inner { align-items: center; max-width: 780px; margin: 0 auto; }
.pt-sl--billboard .pt-sl__title { font-size: clamp(32px, 6vw, 76px); }
.pt-sl--billboard::before { background: radial-gradient(120% 120% at 50% 50%, rgba(20,10,18,.6), rgba(20,10,18,.2) 60%, transparent); }
.pt-sl--ribbon .pt-sl__badge { border-radius: 4px; background: var(--pt-brand); color: #fff; letter-spacing: .12em; padding: 8px 16px; }
.pt-sl--ribbon .pt-sl__title { font-weight: 800; }
.pt-sl--minimal { align-items: flex-end !important; }
.pt-sl--minimal .pt-sl__inner { gap: 10px; }
.pt-sl--minimal .pt-sl__title { font-size: clamp(24px, 3.4vw, 40px); font-weight: 800; }
.pt-sl--minimal .pt-sl__badge { background: rgba(255,255,255,.92); color: var(--pt-plum); }
.pt-sl--minimal::before { background: linear-gradient(0deg, rgba(20,10,18,.75) 0%, rgba(20,10,18,.15) 45%, transparent 70%); }
.pt-sl--stripe { align-items: flex-end !important; padding-bottom: 0 !important; padding-left: 0 !important; padding-right: 0 !important; }
.pt-sl--stripe .pt-sl__inner { width: 100%; max-width: none; background: linear-gradient(90deg, var(--pt-brand), var(--pt-brand-600)); padding: 22px clamp(24px,5vw,64px); border-radius: 0; }
.pt-sl--stripe .pt-sl__badge { background: var(--pt-yellow); color: var(--pt-yellow-ink); }
.pt-sl--stripe .pt-sl__title { font-size: clamp(22px, 3vw, 36px); text-shadow: none; }
.pt-sl--stripe::before { display: none; }

/* Entrada animada de cada elemento cuando el slide se activa */
.pt-hero__slide .pt-sl__inner > * { opacity: 0; }
.pt-hero__slide.is-on .pt-sl__badge { animation: ptSlIn .6s cubic-bezier(.2,.7,.3,1) .05s both; }
.pt-hero__slide.is-on .pt-sl__title { animation: ptSlIn .6s cubic-bezier(.2,.7,.3,1) .14s both; }
.pt-hero__slide.is-on .pt-sl__sub { animation: ptSlIn .6s cubic-bezier(.2,.7,.3,1) .24s both; }
.pt-hero__slide.is-on .pt-sl__cta { animation: ptSlIn .6s cubic-bezier(.2,.7,.3,1) .34s both; }
@keyframes ptSlIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

@media (max-width: 860px) {
	.pt-hero__duo, .pt-hero__collage { aspect-ratio: auto; }
	.pt-hero--card .pt-hero__inner, .pt-hero--banner .pt-hero__inner { grid-template-columns: 1fr; }
	.pt-hero__collage { grid-template-rows: 160px 160px; }
	.pt-hero__duop { aspect-ratio: 4 / 3; }
	.pt-hero__arrow { opacity: 1; width: 40px; height: 40px; background: rgba(255,255,255,.82); }
	.pt-hero__arrow--prev { left: 8px; }
	.pt-hero__arrow--next { right: 8px; }
}
@media (max-width: 640px) {
	.pt-sl { padding: 22px; align-items: flex-end; }
	.pt-sl__inner { max-width: 100%; gap: 11px; }
	.pt-sl__title { font-size: clamp(23px, 7vw, 32px); }
	.pt-sl__sub { font-size: 14.5px; }
	.pt-sl__cta { padding: 12px 22px; font-size: 14.5px; }
	/* En móvil, oscurecemos abajo para que el texto se lea sobre cualquier imagen. */
	.pt-sl::before { background: linear-gradient(0deg, rgba(20,10,18,.82) 0%, rgba(20,10,18,.25) 45%, transparent 72%) !important; }
	.pt-sl--al-center, .pt-sl--al-right { align-items: flex-end; justify-content: flex-start; text-align: left; }
	.pt-sl--al-center .pt-sl__inner, .pt-sl--al-right .pt-sl__inner { align-items: flex-start; margin: 0; }
	.pt-sl--glass .pt-sl__inner { padding: 18px 20px; }
}
@media (prefers-reduced-motion: reduce) {
	.pt-hero__slide { transition: none; }
	.pt-hero--slide .pt-hero__track { transition: none; }
	.pt-hero__slide.is-on .pt-sl__badge, .pt-hero__slide.is-on .pt-sl__title, .pt-hero__slide.is-on .pt-sl__sub, .pt-hero__slide.is-on .pt-sl__cta { animation: none; }
	.pt-hero__slide .pt-sl__inner > * { opacity: 1; }
	.pt-fcard, .pt-fcard__go { transition: none; }
}

/* ---------- Franja de garantías (iconos turquesa) ---------- */
.pt-usp { background: #fff; border-bottom: 1px solid var(--pt-line); }
.pt-usp__inner {
	max-width: var(--pt-maxw);
	margin: 0 auto;
	padding: 18px var(--pt-gap);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.pt-usp__item { display: flex; align-items: center; gap: 11px; }
.pt-usp__ic {
	width: 40px;
	height: 40px;
	flex: 0 0 auto;
	border-radius: 11px;
	background: var(--pt-teal-50);
	display: grid;
	place-items: center;
	color: var(--pt-teal-600);
}
.pt-usp__ic svg { width: 20px; height: 20px; }
.pt-usp__item b { font-size: .88rem; display: block; color: var(--pt-ink); }
.pt-usp__item span { font-size: .76rem; color: var(--pt-ink-soft); }
@media (max-width: 820px) { .pt-usp__inner { grid-template-columns: 1fr 1fr; gap: 16px; } }

/* ---------- Secciones de la home ---------- */
.pt-section {
	max-width: var(--pt-maxw);
	margin: 0 auto;
	padding: var(--pt-home-pad) var(--pt-gap) 0;
}
.pt-section--last { padding-bottom: var(--pt-home-pad); }

/* Bandas de sección con tinte de marca (full-bleed, contenido centrado).
   Dan ritmo y presencia de marca alternando fondos muy suaves. */
.pt-section--tint { position: relative; z-index: 0; padding-bottom: var(--pt-home-pad); }
.pt-section--tint::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(-50vw + 50%);
	width: 100vw;
	z-index: -1;
}
.pt-section--tint-teal::before  { background: linear-gradient(180deg, #f1fbfb, #e7f6f6); }
.pt-section--tint-brand::before { background: linear-gradient(180deg, #fdf2f6, #fbf5f8); }

/* "Los más vendidos": banda limpia y moderna (blanco con destellos de marca). */
.pt-section--best { position: relative; z-index: 0; padding-top: calc(var(--pt-home-pad) + 6px); padding-bottom: var(--pt-home-pad); }
.pt-section--best::before {
	content: "";
	position: absolute; top: 0; bottom: 0; left: calc(-50vw + 50%); width: 100vw; z-index: -1;
	background:
		radial-gradient(46% 62% at 10% 6%, rgba(34,168,168,.12), transparent 60%),
		radial-gradient(46% 62% at 92% 2%, rgba(229,48,95,.10), transparent 60%),
		radial-gradient(40% 55% at 78% 100%, rgba(232,216,40,.10), transparent 60%),
		linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
}
/* Acento moderno bajo el título de la sección destacada. */
.pt-section--best .pt-section__title { position: relative; }
.pt-section--best .pt-section__head--center .pt-section__title::after {
	content: ""; display: block; width: 54px; height: 4px; border-radius: 999px; margin: 12px auto 0;
	background: linear-gradient(90deg, var(--pt-brand), var(--pt-yellow) 55%, var(--pt-teal));
}
.pt-section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
}
.pt-section__title {
	margin: 0;
	font-size: clamp(1.12rem, 1.8vw, 1.5rem);
	font-weight: 600;
	letter-spacing: -.2px;
	color: var(--pt-ink);
}
.pt-section:not(:has(.pt-section__head)) .pt-section__title { margin-bottom: 22px; }
.pt-section__more { flex: 0 0 auto; font-weight: 700; white-space: nowrap; }
.pt-section .products { margin-top: 0 !important; }

/* ---------- Dos bloques: Ofertas (amarillo) + Mayorista (magenta) ---------- */
.pt-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pt-tile {
	border-radius: 18px;
	overflow: hidden;
	min-height: 230px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(24px, 3vw, 32px);
	position: relative;
	color: #fff;
}
.pt-tile__k { font-weight: 900; font-size: .78rem; letter-spacing: .5px; text-transform: uppercase; }
.pt-tile h3 { font-size: clamp(1.4rem, 2.4vw, 1.7rem); margin: 8px 0 6px; color: inherit; }
.pt-tile p { font-size: .92rem; margin: 0 0 18px; max-width: 24em; }
.pt-tile .pt-btn { align-self: flex-start; }
.pt-tile__img {
	position: absolute;
	right: -10px;
	bottom: -10px;
	width: 42%;
	max-width: 220px;
	border-radius: 16px;
	box-shadow: var(--pt-shadow-lg);
	transform: rotate(-2deg);
}
.pt-tile--of { background: linear-gradient(135deg, var(--pt-yellow-2), var(--pt-yellow)); color: var(--pt-yellow-ink); }
.pt-tile--of .pt-tile__k { color: var(--pt-yellow-ink); }
.pt-tile--of p { color: #6a5f0a; }
.pt-tile--may { background: linear-gradient(130deg, var(--pt-brand), var(--pt-brand-600)); }
.pt-tile--may .pt-tile__k { color: var(--pt-yellow); }
.pt-tile--may p { color: #ffe0ea; }
@media (max-width: 720px) { .pt-duo { grid-template-columns: 1fr; } .pt-tile__img { display: none; } }

/* ---------- Categorías ---------- */
/* Categorías circulares (estilo "Nuestros Productos" de la referencia). */
/* "Explora por categoría" en modo CARRUSEL (deslizable con flechas). */
/* Subcategorías dentro de una categoría (carrusel de círculos). */
.pt-subcats { max-width: var(--pt-maxw); margin: 0 auto 6px; padding: 4px var(--pt-gap) 0; }
.pt-subcats__title { font-size: 1rem; font-weight: 800; color: var(--pt-ink); margin: 0 0 12px; }
.pt-catcar { position: relative; display: flex; align-items: center; gap: 10px; }
.pt-catcar > [data-catcar-track] { flex: 1 1 auto; min-width: 0; }
.pt-cats { position: relative; z-index: 3; display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x proximity; scroll-behavior: smooth; padding: 14px 4px 8px; margin: 0; scrollbar-width: none; -ms-overflow-style: none; }
.pt-cats::-webkit-scrollbar { display: none; }
.pt-catc {
	flex: 0 0 clamp(84px, 10%, 104px); /* círculos chicos para ahorrar espacio */
	width: auto;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 13px;
	text-align: center;
	color: var(--pt-ink);
	text-decoration: none;
	transition: transform .14s ease;
}
.pt-catc { position: relative; z-index: 1; }
.pt-catc:hover { transform: translateY(-5px); z-index: 6; }
.pt-catc__im {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 100%; /* cuadrado perfecto en TODOS los navegadores → círculo real */
	border-radius: 50%;
	overflow: hidden;
	background: var(--pt-bg-soft);
	border: 1px solid var(--pt-line);
	box-shadow: var(--pt-shadow);
	transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}
.pt-catc:hover .pt-catc__im { box-shadow: var(--pt-shadow-lg); transform: translateY(-4px); border-color: var(--pt-brand); }
.pt-catc__im img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: inherit; object-fit: cover; object-position: center; display: block; }
.pt-catc b { display: block; font-size: .78rem; font-weight: 400; color: var(--pt-ink); line-height: 1.2; }
/* Flechas del carrusel. */
.pt-catcar__nav { flex: 0 0 auto; position: static; transform: none; z-index: 3; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--pt-line); background: #fff; color: var(--pt-plum); display: grid; place-items: center; cursor: pointer; box-shadow: var(--pt-shadow-lg); transition: background .15s ease, transform .12s ease; padding: 0; }
.pt-catcar__nav svg { width: 22px; height: 22px; }
.pt-catcar__nav:hover { background: var(--pt-brand); color: #fff; border-color: var(--pt-brand); }
/* Sin overflow: no mostramos flechas (el track ocupa todo). */
.pt-catcar:not(.is-scrollable) .pt-catcar__nav { display: none; }
/* Con overflow: la flecha inactiva reserva su lugar (fuera del track), no lo tapa. */
.pt-catcar.is-scrollable .pt-catcar__nav[hidden] { display: grid; visibility: hidden; }
.pt-catcar__nav--prev { left: auto; }
.pt-catcar__nav--next { right: auto; }
@media (max-width: 1000px) { .pt-catc { flex-basis: calc((100% - 3 * 22px) / 4); } } /* 4 visibles en tablet */
@media (max-width: 560px)  { .pt-cats { gap: 16px; } .pt-catc { flex-basis: calc((100% - 2 * 16px) / 3); } } /* 3 visibles en móvil */

/* Slider principal estilo Easy: barra delgada de productos deslizable. */
.pt-probar { max-width: var(--pt-maxw); margin: 0 auto; padding: 22px var(--pt-gap) 6px; }
.pt-probar__lead { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 800; color: var(--pt-ink); margin-bottom: 12px; }
.pt-probar__lead svg { width: 16px; height: 16px; color: var(--pt-yellow-ink); }
.pt-probar__bar { position: relative; }
.pt-probar__track { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x proximity; scroll-behavior: smooth; padding: 4px 2px; scrollbar-width: none; -ms-overflow-style: none; }
.pt-probar__track::-webkit-scrollbar { display: none; }
.pt-probar__item { flex: 0 0 auto; width: 252px; scroll-snap-align: start; display: flex; align-items: center; gap: 12px; padding: 10px; background: #fff; border: 1px solid var(--pt-line); border-radius: 14px; text-decoration: none; transition: border-color .15s ease, box-shadow .15s ease, transform .12s ease; }
.pt-probar__item:hover { border-color: var(--pt-brand); box-shadow: var(--pt-shadow); transform: translateY(-2px); }
.pt-probar__im { position: relative; flex: 0 0 auto; width: 60px; height: 60px; border-radius: 10px; overflow: hidden; background: var(--pt-bg-soft, #faf5f8); }
.pt-probar__im img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.pt-probar__tag { position: absolute; top: 2px; left: 2px; z-index: 1; font-size: 8px; font-weight: 800; background: var(--pt-brand); color: #fff; padding: 1px 5px; border-radius: 5px; text-transform: uppercase; letter-spacing: .02em; }
.pt-probar__info { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.pt-probar__name { font-size: .82rem; font-weight: 700; color: var(--pt-ink); line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pt-probar__price { font-size: .92rem; font-weight: 900; color: var(--pt-brand-600); }
.pt-probar__price del { color: var(--pt-ink-3, #a595a1); font-weight: 500; font-size: .78em; margin-right: 4px; }
.pt-probar__price ins { text-decoration: none; }
.pt-probar__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--pt-line); background: #fff; color: var(--pt-plum); display: grid; place-items: center; cursor: pointer; box-shadow: var(--pt-shadow-lg); padding: 0; transition: background .15s ease; }
.pt-probar__nav svg { width: 20px; height: 20px; }
.pt-probar__nav:hover { background: var(--pt-brand); color: #fff; border-color: var(--pt-brand); }
.pt-probar__nav[hidden] { display: none; }
.pt-probar__nav--prev { left: -8px; }
.pt-probar__nav--next { right: -8px; }

/* Encabezado de sección centrado con líneas decorativas (estilo referencia). */
.pt-section__head--center { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.pt-section__head--center .pt-section__title {
	display: inline-flex;
	align-items: center;
	gap: clamp(14px, 3vw, 24px);
}
.pt-section__head--center .pt-section__title::before,
.pt-section__head--center .pt-section__title::after {
	content: "";
	width: clamp(28px, 7vw, 70px);
	height: 3px;
	border-radius: 3px;
	background: linear-gradient(90deg, transparent, var(--pt-brand));
}
.pt-section__head--center .pt-section__title::after { background: linear-gradient(90deg, var(--pt-brand), transparent); }
.pt-section__head--center .pt-section__more { order: 3; color: var(--pt-brand-600); }

/* ---------- Banda institucional (turquesa → ciruela, texto blanco) ---------- */
.pt-inst {
	position: relative;
	overflow: hidden;
	background: linear-gradient(120deg, var(--pt-teal-600), var(--pt-plum));
	color: #fff;
	border-radius: 22px;
	padding: clamp(28px, 4vw, 44px);
}
.pt-inst::after {
	content: "";
	position: absolute;
	right: -80px;
	top: -80px;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232,216,40,.32), transparent 66%);
}
.pt-inst__in {
	position: relative;
	display: grid;
	grid-template-columns: 1.4fr auto;
	gap: 28px;
	align-items: center;
}
.pt-inst__k { font-weight: 900; font-size: .78rem; letter-spacing: .5px; text-transform: uppercase; color: var(--pt-yellow); }
.pt-inst h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); margin: 10px 0 8px; color: #fff; }
.pt-inst p { color: #e7f4f4; margin: 0; }
.pt-inst__cta { display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 720px) { .pt-inst__in { grid-template-columns: 1fr; } }

/* ---------- Reseñas ---------- */
.pt-revs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pt-rev { background: #fff; border: 1px solid var(--pt-line); border-radius: 16px; padding: 20px; }
.pt-rev__st { display: flex; gap: 3px; margin-bottom: 10px; color: var(--pt-yellow-ink); }
.pt-rev__st svg { width: 16px; height: 16px; }
.pt-rev p { font-size: .95rem; margin: 0 0 12px; color: var(--pt-ink); }
.pt-rev__who { font-size: .8rem; color: var(--pt-ink-soft); font-weight: 700; }
@media (max-width: 820px) { .pt-revs { grid-template-columns: 1fr; } }

/* Móvil: permitir que las columnas de grid se encojan bajo su contenido
   (evita desborde horizontal y texto/botones cortados al borde). */
.pt-hero__col,
.pt-hero__media,
.pt-usp__item,
.pt-usp__item > span,
.pt-inst__in > * { min-width: 0; }
@media (max-width: 560px) {
	.pt-hero__cta { flex-direction: column; align-items: stretch; }
	.pt-hero__cta .pt-btn { width: 100%; }
}

/* ============================================================
   Campañas de temporada (Cyber, Navidad, Día del Niño, etc.)
   Las variables --ptc-* las inyecta el plugin según el preset.
   Todo va con clase .pt-campaign en el <body>: si no hay campaña,
   nada de esto aplica y la web queda normal.
   ============================================================ */

/* Barra superior de campaña (reemplaza la de beneficios) */
.pt-campbar { background: var(--ptc-bar-bg, var(--pt-brand)); color: var(--ptc-bar-ink, #fff); }
.pt-campbar__in {
	max-width: var(--pt-maxw);
	margin: 0 auto;
	padding: 9px var(--pt-gap);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	font-size: .86rem;
}
.pt-campbar__badge {
	background: var(--ptc-accent);
	color: var(--ptc-accent-ink);
	font-weight: 900;
	font-size: .72rem;
	letter-spacing: .04em;
	padding: 3px 11px;
	border-radius: 999px;
	white-space: nowrap;
}
.pt-campbar__msg { font-weight: 800; }
.pt-campbar__count { font-variant-numeric: tabular-nums; opacity: .92; white-space: nowrap; }
.pt-campbar__count b { color: var(--ptc-accent); font-weight: 900; }
.pt-campbar__coupon {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255,255,255,.16);
	border: 1px dashed rgba(255,255,255,.5);
	color: inherit;
	border-radius: 8px;
	padding: 3px 10px;
	font-weight: 800;
	font-family: inherit;
	font-size: .8rem;
	cursor: pointer;
}
.pt-campbar__coupon:hover { background: rgba(255,255,255,.26); }
.pt-campbar__preview { background: #000; color: #fff; border-radius: 6px; padding: 2px 8px; font-size: .72rem; font-weight: 800; }
@media (max-width: 640px) {
	.pt-campbar__in { gap: 10px 14px; padding: 8px var(--pt-gap); }
	.pt-campbar__msg { flex: 1 1 100%; text-align: center; order: -1; }
}

/* Re-skin del hero durante la campaña */
body.pt-campaign .pt-hero {
	background: linear-gradient(150deg, var(--ptc-hero-from), var(--ptc-hero-to));
	border-bottom: 0;
}
body.pt-campaign .pt-hero::before { opacity: .55; }
body.pt-campaign .pt-hero__title { color: var(--ptc-hero-ink); }
body.pt-campaign .pt-hero__sub { color: color-mix(in srgb, var(--ptc-hero-ink) 82%, transparent); }
body.pt-campaign .pt-hero__eyebrow {
	background: rgba(255,255,255,.14);
	border-color: rgba(255,255,255,.28);
	color: #fff;
}
body.pt-campaign .pt-hero__eyebrow svg { color: var(--ptc-accent); }
body.pt-campaign .pt-hero__title mark {
	background: linear-gradient(transparent 60%, color-mix(in srgb, var(--ptc-accent) 70%, transparent) 60%);
}
body.pt-campaign .pt-chips { color: color-mix(in srgb, var(--ptc-hero-ink) 88%, transparent); }
body.pt-campaign .pt-chips svg { color: var(--ptc-accent); }

/* Las llamadas a la acción y el badge de oferta adoptan el color de la campaña */
body.pt-campaign .pt-btn--mag,
body.pt-campaign .button.alt,
body.pt-campaign .woocommerce ul.products li.product .button,
body.pt-campaign .woocommerce a.button.add_to_cart_button {
	background: var(--ptc-accent);
	border-color: var(--ptc-accent);
	color: var(--ptc-accent-ink);
}
body.pt-campaign .pt-btn--mag:hover,
body.pt-campaign .button.alt:hover,
body.pt-campaign .woocommerce ul.products li.product .button:hover {
	background: color-mix(in srgb, var(--ptc-accent) 86%, #000);
	border-color: color-mix(in srgb, var(--ptc-accent) 86%, #000);
	color: var(--ptc-accent-ink);
}
body.pt-campaign .woocommerce span.onsale,
body.pt-campaign ul.products li.product .onsale,
body.pt-campaign .pt-onsale {
	background: var(--ptc-badge-bg);
	color: var(--ptc-badge-ink);
}

/* Banners de portada: se reparten el ancho en partes iguales según cuántos haya
   (1 = 100%, 2 = 50/50, 3 = 33/33/33, etc.) */
.pt-campbanners {
	max-width: var(--pt-maxw);
	margin: 0 auto;
	padding: clamp(24px, 4vw, 40px) var(--pt-gap) 0;
}
.pt-campbanners__track { display: flex; flex-wrap: wrap; gap: 16px; }
.pt-campbanner {
	position: relative;
	min-width: 0;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--pt-shadow);
	display: block;
	container-type: inline-size; /* el texto escala al ancho del banner (igual en editor y web) */
	flex: 1 1 100%;
}
/* Ancho por banner: separa los alargados (100%) de los de 2, 3 o 4 por fila.
   La fila se arma sola al combinar anchos (flex-wrap). */
.pt-campbanner.pt-c-full    { flex: 1 1 100%; }
.pt-campbanner.pt-c-half    { flex: 0 1 calc(50% - 8px); }
.pt-campbanner.pt-c-third   { flex: 0 1 calc(33.333% - 11px); }
.pt-campbanner.pt-c-quarter { flex: 0 1 calc(25% - 12px); }
/* Encaje: "Imagen completa" = proporción real (sin recorte). Los demás fijan una
   proporción de banner y la imagen la rellena (recorte suave con object-fit). */
.pt-campbanner img { width: 100%; height: auto; display: block; }
.pt-campbanner.pt-r-wide   { aspect-ratio: 24 / 9; }
.pt-campbanner.pt-r-banner { aspect-ratio: 16 / 6; }
.pt-campbanner.pt-r-photo  { aspect-ratio: 16 / 9; }
.pt-campbanner.pt-r-square { aspect-ratio: 1 / 1; }
.pt-r-wide img, .pt-r-banner img, .pt-r-photo img, .pt-r-square img { height: 100%; object-fit: cover; }
/* En banners más angostos el texto usa casi todo el ancho de su celda */
.pt-c-half .pt-campbanner__box,
.pt-c-third .pt-campbanner__box,
.pt-c-quarter .pt-campbanner__box { max-width: 90%; }
.pt-c-third .pt-campbanner__ov,
.pt-c-quarter .pt-campbanner__ov { padding: clamp(12px, 2.5cqi, 24px); }
@media (max-width: 720px) {
	.pt-campbanner.pt-c-half,
	.pt-campbanner.pt-c-third,
	.pt-campbanner.pt-c-quarter { flex: 1 1 100%; }
	.pt-campbanner__box { max-width: 88% !important; }
}

/* Overlay de título configurable sobre el banner */
.pt-campbanner__ov {
	position: absolute;
	inset: 0;
	display: flex;
	padding: clamp(12px, 5cqi, 48px);
	pointer-events: none;
}
.pt-campbanner__box { max-width: 52%; display: flex; flex-direction: column; gap: 1.6cqi; }
/* Alineación horizontal (dónde se ubica el bloque de texto) */
.pt-bnr--a-left   .pt-campbanner__ov { justify-content: flex-start; }
.pt-bnr--a-center .pt-campbanner__ov { justify-content: center; }
.pt-bnr--a-right  .pt-campbanner__ov { justify-content: flex-end; }
.pt-bnr--a-center .pt-campbanner__box { text-align: center; align-items: center; max-width: 70%; }
.pt-bnr--a-right  .pt-campbanner__box { text-align: right; align-items: flex-end; }
/* Alineación vertical */
.pt-bnr--v-top    .pt-campbanner__ov { align-items: flex-start; }
.pt-bnr--v-middle .pt-campbanner__ov { align-items: center; }
.pt-bnr--v-bottom .pt-campbanner__ov { align-items: flex-end; }

.pt-bnr__title { margin: 0; color: var(--bnr-color, #fff); font-weight: 800; line-height: 1.04; letter-spacing: -.01em; text-wrap: balance; }
.pt-bnr__sub { margin: 0; color: var(--bnr-color, #fff); opacity: .92; font-weight: 500; font-size: clamp(11px, 2.4cqi, 18px); }
.pt-bnr__tag {
	align-self: flex-start;
	background: var(--ptc-accent, var(--pt-brand));
	color: var(--ptc-accent-ink, #fff);
	font-weight: 800;
	font-size: .72rem;
	letter-spacing: .05em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 999px;
}
.pt-bnr--a-center .pt-bnr__tag { align-self: center; }
.pt-bnr--a-right  .pt-bnr__tag { align-self: flex-end; }

/* Precios (antes tachado + actual) */
.pt-bnr__prices { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-top: 2px; }
.pt-bnr--a-center .pt-bnr__prices { justify-content: center; }
.pt-bnr--a-right .pt-bnr__prices { justify-content: flex-end; }
.pt-bnr__pnow { color: var(--bnr-color, #fff); font-weight: 900; font-size: clamp(14px, 4.2cqi, 34px); line-height: 1; }
.pt-bnr__pold { color: var(--bnr-color, #fff); opacity: .68; text-decoration: line-through; font-weight: 600; font-size: clamp(11px, 2.6cqi, 18px); }

/* Tamaños del título */
.pt-bnr--s-sm .pt-bnr__title { font-size: clamp(12px, 3cqi, 26px); }
.pt-bnr--s-md .pt-bnr__title { font-size: clamp(15px, 4cqi, 36px); }
.pt-bnr--s-lg .pt-bnr__title { font-size: clamp(18px, 5.2cqi, 48px); }
.pt-bnr--s-xl .pt-bnr__title { font-size: clamp(22px, 7cqi, 64px); }

/* Tipografías */
.pt-bnr--f-sans    .pt-bnr__title, .pt-bnr--f-sans    .pt-bnr__sub { font-family: var(--pt-sans, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif); }
.pt-bnr--f-poppins .pt-bnr__title, .pt-bnr--f-poppins .pt-bnr__sub { font-family: "Poppins", system-ui, sans-serif; }
.pt-bnr--f-baloo   .pt-bnr__title, .pt-bnr--f-baloo   .pt-bnr__sub { font-family: "Baloo 2", "Trebuchet MS", system-ui, sans-serif; }
.pt-bnr--f-archivo .pt-bnr__title { font-family: "Archivo Black", "Arial Black", system-ui, sans-serif; letter-spacing: 0; }
.pt-bnr--f-serif   .pt-bnr__title, .pt-bnr--f-serif   .pt-bnr__sub { font-family: Georgia, "Times New Roman", serif; }

/* Plantillas */
.pt-bnr--panel .pt-campbanner__box {
	background: rgba(20, 10, 18, .55);
	backdrop-filter: blur(3px);
	padding: clamp(12px, 3cqi, 26px);
	border-radius: 14px;
	max-width: 60%;
}
.pt-bnr--offer .pt-bnr__title { text-transform: uppercase; }
.pt-bnr--editorial .pt-bnr__title { font-weight: 700; }
.pt-bnr--editorial .pt-campbanner__box::after {
	content: "";
	width: 54px;
	height: 3px;
	background: var(--ptc-accent, var(--pt-brand));
	border-radius: 3px;
	margin-top: 4px;
}
.pt-bnr--a-center.pt-bnr--editorial .pt-campbanner__box::after { align-self: center; }

/* Plantillas nuevas (variedad) */
.pt-bnr--scrim .pt-campbanner__ov { background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.15) 45%, transparent 72%); }
.pt-bnr--boxbrand .pt-campbanner__box { background: var(--ptc-accent, var(--pt-brand)); padding: clamp(10px, 3cqi, 22px); border-radius: 14px; max-width: 68%; }
.pt-bnr--boxbrand .pt-bnr__title,
.pt-bnr--boxbrand .pt-bnr__sub,
.pt-bnr--boxbrand .pt-bnr__pnow,
.pt-bnr--boxbrand .pt-bnr__pold { color: #fff; }
.pt-bnr--boxbrand .pt-bnr__tag { background: #fff; color: var(--ptc-accent, var(--pt-brand)); }
.pt-bnr--ribbon .pt-bnr__title { background: var(--ptc-accent, var(--pt-brand)); color: #fff; display: inline; padding: .04em .28em; -webkit-box-decoration-break: clone; box-decoration-break: clone; line-height: 1.34; }
.pt-bnr--centered .pt-campbanner__ov { background: rgba(0,0,0,.34); }
.pt-bnr--outline .pt-bnr__title { -webkit-text-stroke: 2px rgba(0,0,0,.55); paint-order: stroke fill; }

@media (max-width: 640px) {
	.pt-campbanner__box, .pt-bnr--a-center .pt-campbanner__box, .pt-bnr--panel .pt-campbanner__box { max-width: 88%; }
}

/* Sección de ofertas de la campaña */
.pt-campoffers .pt-section__title { color: var(--pt-ink); }

/* ---------- Decoraciones temáticas (CSS puro) ---------- */
.pt-decorlayer {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 60;
	overflow: hidden;
}
.pt-decorlayer span {
	position: absolute;
	top: -6vh;
	width: 10px;
	height: 10px;
	will-change: transform;
}
/* Reparte 18 piezas en X con retardos/duraciones variados */
.pt-decorlayer span:nth-child(1)  { left: 4%;  animation-delay: 0s;    animation-duration: 9s;  }
.pt-decorlayer span:nth-child(2)  { left: 10%; animation-delay: 1.5s;  animation-duration: 11s; }
.pt-decorlayer span:nth-child(3)  { left: 16%; animation-delay: 3s;    animation-duration: 8s;  }
.pt-decorlayer span:nth-child(4)  { left: 22%; animation-delay: .6s;   animation-duration: 12s; }
.pt-decorlayer span:nth-child(5)  { left: 28%; animation-delay: 2.2s;  animation-duration: 10s; }
.pt-decorlayer span:nth-child(6)  { left: 34%; animation-delay: 4s;    animation-duration: 9s;  }
.pt-decorlayer span:nth-child(7)  { left: 40%; animation-delay: 1s;    animation-duration: 13s; }
.pt-decorlayer span:nth-child(8)  { left: 46%; animation-delay: 3.4s;  animation-duration: 8.5s;}
.pt-decorlayer span:nth-child(9)  { left: 52%; animation-delay: .3s;   animation-duration: 11s; }
.pt-decorlayer span:nth-child(10) { left: 58%; animation-delay: 2.8s;  animation-duration: 10s; }
.pt-decorlayer span:nth-child(11) { left: 64%; animation-delay: 4.6s;  animation-duration: 9.5s;}
.pt-decorlayer span:nth-child(12) { left: 70%; animation-delay: 1.8s;  animation-duration: 12s; }
.pt-decorlayer span:nth-child(13) { left: 76%; animation-delay: 3.2s;  animation-duration: 8s;  }
.pt-decorlayer span:nth-child(14) { left: 82%; animation-delay: .9s;   animation-duration: 11.5s;}
.pt-decorlayer span:nth-child(15) { left: 88%; animation-delay: 2.5s;  animation-duration: 10s; }
.pt-decorlayer span:nth-child(16) { left: 92%; animation-delay: 4.2s;  animation-duration: 9s;  }
.pt-decorlayer span:nth-child(17) { left: 96%; animation-delay: 1.3s;  animation-duration: 12.5s;}
.pt-decorlayer span:nth-child(18) { left: 99%; animation-delay: 3.7s;  animation-duration: 8.8s;}

/* Nieve: círculos blancos que caen */
.pt-decor--snow .pt-decorlayer span {
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 6px rgba(255,255,255,.8);
	opacity: .9;
	animation-name: pt-fall;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
/* Confeti: cuadrados de colores que caen girando */
.pt-decor--confetti .pt-decorlayer span {
	background: var(--ptc-accent, #e5305f);
	animation-name: pt-fall-spin;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.pt-decor--confetti .pt-decorlayer span:nth-child(3n)   { background: var(--ptc-badge-bg, #e8d828); }
.pt-decor--confetti .pt-decorlayer span:nth-child(3n+1) { background: var(--ptc-hero-to, #22a8a8); }
/* Destellos: puntos que titilan (no caen) */
.pt-decor--sparkles .pt-decorlayer span {
	top: auto;
	border-radius: 50%;
	background: var(--ptc-accent, #ffd54a);
	box-shadow: 0 0 8px currentColor;
	color: var(--ptc-accent, #ffd54a);
	animation-name: pt-twinkle;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}
.pt-decor--sparkles .pt-decorlayer span:nth-child(2n)  { top: 30%; }
.pt-decor--sparkles .pt-decorlayer span:nth-child(3n)  { top: 55%; }
.pt-decor--sparkles .pt-decorlayer span:nth-child(4n)  { top: 78%; }

@keyframes pt-fall {
	0%   { transform: translateY(0) translateX(0); }
	100% { transform: translateY(112vh) translateX(20px); }
}
@keyframes pt-fall-spin {
	0%   { transform: translateY(0) rotate(0); }
	100% { transform: translateY(112vh) rotate(540deg); }
}
@keyframes pt-twinkle {
	0%, 100% { opacity: .2; transform: scale(.6); }
	50%      { opacity: 1;  transform: scale(1.2); }
}

/* Guirnalda de luces bajo la barra de campaña */
.pt-garland {
	position: sticky;
	top: 0;
	z-index: 19;
	display: flex;
	justify-content: space-between;
	padding: 0 10px;
	height: 14px;
	background: var(--ptc-bar-bg, #0a0f2c);
	overflow: hidden;
}
.pt-garland span {
	width: 8px;
	height: 8px;
	margin-top: 4px;
	border-radius: 50%;
	background: var(--ptc-accent, #ffd54a);
	box-shadow: 0 0 8px currentColor;
	color: var(--ptc-accent, #ffd54a);
	animation: pt-blink 1.4s infinite ease-in-out;
}
.pt-garland span:nth-child(3n)   { background: var(--ptc-badge-bg, #e8d828); color: var(--ptc-badge-bg, #e8d828); animation-delay: .2s; }
.pt-garland span:nth-child(3n+1) { background: var(--ptc-hero-to, #d1122b); color: var(--ptc-hero-to, #d1122b); animation-delay: .5s; }
@keyframes pt-blink { 0%,100% { opacity: .35; } 50% { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
	.pt-decorlayer span, .pt-garland span { animation: none !important; }
	.pt-decorlayer { display: none; }
}

/* ============================================================
   Ficha de producto enriquecida (datos solicitados por el cliente)
   ============================================================ */

/* ---------- Layout de la ficha (estilo Shopify) ---------- */
/* Galería fija mientras se hace scroll por la columna de compra (desktop). */
@media (min-width: 1000px) {
	.single-product .ct-product-gallery-container {
		position: sticky;
		top: 96px;
		align-self: flex-start;
	}
}

/* ---------- Galería enriquecida (estilo Shopify) ---------- */
.single-product .ct-product-gallery-container { position: relative; }
/* Visor del carrusel: recorta y cada imagen ocupa el ancho completo (para que
   el deslizador propio funcione aunque Blocksy no inicialice su JS). */
.single-product .ct-product-gallery-container .flexy { overflow: hidden; }
.single-product .ct-product-gallery-container .flexy-items { flex-wrap: nowrap; }
.single-product .ct-product-gallery-container .flexy-item { flex: 0 0 100%; max-width: 100%; }
/* Imagen principal: redondeada, con sombra suave y cursor de zoom. */
.single-product .ct-product-gallery-container .ct-media-container {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--pt-shadow);
	background: var(--pt-bg-soft);
	cursor: zoom-in;
}
.single-product .ct-product-gallery-container .ct-media-container img {
	transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.single-product .ct-product-gallery-container .ct-media-container:hover img {
	transform: scale(1.05);
}
/* Pista visual de "ampliar" (no intercepta el clic → sigue abriendo el lightbox). */
.single-product .ct-product-gallery-container .ct-media-container::after {
	content: "";
	position: absolute;
	right: 12px;
	bottom: 12px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,.92) url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23c21f4c' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4-4M11 8v6M8 11h6'/%3E%3C/svg%3E") no-repeat center;
	box-shadow: var(--pt-shadow);
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .2s ease, transform .2s ease;
	pointer-events: none;
	z-index: 2;
}
.single-product .ct-product-gallery-container .ct-media-container:hover::after {
	opacity: 1;
	transform: translateY(0);
}
/* Badge OFERTA sobre la galería (píldora de marca, bien ubicada). */
.single-product .ct-product-gallery-container > .onsale {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 3;
	margin: 0;
}
/* Miniaturas de la galería (Blocksy .flexy-pills): las pintábamos con `overflow`
   y borde pero Blocksy las deja como lista en bloque con li más altos que su
   contenedor → se cortaban. Las forzamos a una fila flex limpia de cuadrados,
   con la imagen en `cover` y la activa con borde de marca. */
.single-product .ct-product-gallery-container .flexy-pills {
	display: flex !important;
	flex-wrap: wrap;
	gap: 10px !important;
	padding: 14px 0 0 !important;
	margin: 0 !important;
	list-style: none !important;
	height: auto !important;
	max-height: none !important;
	overflow: visible !important;
}
.single-product .ct-product-gallery-container .flexy-pills li {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 74px !important;
	height: 74px !important;
	flex: 0 0 auto !important;
	border-radius: 12px;
	overflow: hidden;
	border: 2px solid transparent;
	opacity: .6;
	cursor: pointer;
	transition: border-color .15s ease, transform .12s ease, opacity .15s ease;
}
.single-product .ct-product-gallery-container .flexy-pills li img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block;
	border-radius: 0;
}
.single-product .ct-product-gallery-container .flexy-pills li:hover {
	opacity: 1;
	transform: translateY(-2px);
}
.single-product .ct-product-gallery-container .flexy-pills li.active,
.single-product .ct-product-gallery-container .flexy-pills li.ct-active {
	opacity: 1;
	border-color: var(--pt-brand);
}

/* Título más contundente. */
.single-product .product_title.entry-title {
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	line-height: 1.08;
	letter-spacing: -.01em;
	margin-bottom: 12px;
}
/* Módulo de compra cohesionado (contiene precio → avisos). */
.pt-buybox {
	background: #fff;
	border: 1px solid var(--pt-line);
	border-radius: 18px;
	padding: 22px 24px;
	box-shadow: var(--pt-shadow);
	max-width: 100%;
	min-width: 0;
}
.pt-buybox > * { min-width: 0; }
/* Precio grande y claro dentro del módulo. */
.single-product .pt-buybox > .price {
	display: block;
	font-size: 1.95rem;
	font-weight: 900;
	color: var(--pt-brand-600);
	margin: 0 0 4px;
	line-height: 1.1;
}
.single-product .pt-buybox > .price del { font-size: 1.05rem; font-weight: 500; color: var(--pt-ink-3, #a99fad); margin-left: 8px; }
.single-product .pt-buybox > .price ins { text-decoration: none; }
.single-product .pt-buybox .cart { margin-bottom: 0; }
/* Ocultamos el "N disponibles" nativo: pt-avail ya lo comunica mejor. */
.single-product .entry-summary p.stock { display: none; }
/* Badge de ahorro bajo el precio. */
.pt-save { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 14px; }
.pt-save__pct { background: var(--pt-brand); color: #fff; font-weight: 800; font-size: .82rem; padding: 3px 10px; border-radius: 999px; }
.pt-save__txt { font-weight: 700; color: var(--pt-success); font-size: .9rem; }
/* SKU / Categoría como pie discreto, fuera del módulo. */
.single-product .product_meta {
	font-size: .85rem; color: var(--pt-ink-soft);
	display: flex; flex-wrap: wrap; gap: 6px 20px;
	margin: 18px 2px 0; padding: 0;
}
.single-product .product_meta > span { display: inline-flex; gap: 6px; }
.single-product .product_meta a { color: var(--pt-brand-600); font-weight: 600; }
/* Móvil: módulo más compacto y fila cantidad + comprar apilada. */
@media (max-width: 520px) {
	.pt-buybox { padding: 16px; border-radius: 16px; }
	.single-product .pt-buybox .cart { flex-wrap: wrap; gap: 10px; }
	.single-product .pt-buybox .cart .single_add_to_cart_button { flex: 1 1 100%; width: 100%; }
}

/* ---------- Urgencia por stock bajo ---------- */
.pt-urgency { margin: 0 0 16px; }
.pt-urgency__row { display: flex; align-items: center; gap: 7px; font-weight: 800; font-size: .9rem; color: #c2410c; margin-bottom: 7px; }
.pt-urgency__fire { font-size: 1rem; line-height: 1; }
.pt-urgency__track { height: 7px; border-radius: 99px; background: #f3e2d8; overflow: hidden; }
.pt-urgency__fill { display: block; height: 100%; background: linear-gradient(90deg, #f97316, #ef4444); border-radius: 99px; }

/* ---------- Botón "Comprar ahora" (compra directa) ---------- */
.pt-buynow {
	display: flex; align-items: center; justify-content: center; gap: 9px;
	width: 100%; margin: 12px 0 0; padding: 14px 20px;
	background: var(--pt-plum); color: #fff; border: 0; border-radius: 12px;
	font-weight: 800; font-size: 1rem; text-decoration: none; cursor: pointer;
	transition: transform .1s ease, background .15s ease, box-shadow .15s ease;
	box-shadow: 0 10px 22px -12px rgba(42,21,34,.7);
}
.pt-buynow svg { width: 18px; height: 18px; color: var(--pt-yellow); }
.pt-buynow:hover { background: #3d1f30; color: #fff; transform: translateY(-1px); box-shadow: 0 14px 26px -12px rgba(42,21,34,.8); }

/* ---------- Medios de pago ---------- */
.pt-pays { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 10px; margin: 14px 0 2px; }
.pt-pays__lock { display: inline-flex; color: var(--pt-success); }
.pt-pays__lock svg { width: 16px; height: 16px; }
.pt-pays__txt { font-size: .82rem; font-weight: 700; color: var(--pt-ink-soft); }
.pt-pays__list { display: inline-flex; flex-wrap: wrap; gap: 6px; }
.pt-pays__pill { font-size: .72rem; font-weight: 700; color: var(--pt-ink); background: var(--pt-bg-soft, #f4eff2); border: 1px solid var(--pt-line); border-radius: 7px; padding: 3px 8px; }

/* ---------- Barra de compra flotante (sticky) ---------- */
.pt-stickybuy {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 999;
	background: rgba(255,255,255,.97); backdrop-filter: saturate(1.3) blur(8px);
	border-top: 1px solid var(--pt-line); box-shadow: 0 -8px 30px -14px rgba(42,21,34,.35);
	transform: translateY(100%); transition: transform .28s cubic-bezier(.2,.7,.3,1);
	padding: 10px 16px; padding-bottom: max(10px, env(safe-area-inset-bottom));
}
.pt-stickybuy.is-on { transform: translateY(0); }
.pt-stickybuy__inner { max-width: var(--pt-maxw); margin: 0 auto; display: flex; align-items: center; gap: 14px; }
.pt-stickybuy__img { width: 50px; height: 50px; border-radius: 11px; object-fit: cover; flex: 0 0 auto; background: var(--pt-bg-soft); }
.pt-stickybuy__info { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.pt-stickybuy__name { font-size: .95rem; font-weight: 800; color: var(--pt-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pt-stickybuy__price { font-size: .95rem; font-weight: 800; color: var(--pt-brand-600); }
.pt-stickybuy__price del { color: var(--pt-ink-3, #a99fad); font-weight: 500; font-size: .85em; margin-right: 5px; }
.pt-stickybuy__price ins { text-decoration: none; }
.pt-stickybuy__btn {
	flex: 0 0 auto; background: var(--pt-brand); color: #fff; border: 0; border-radius: 11px;
	padding: 12px 24px; font-weight: 800; font-size: .95rem; cursor: pointer; white-space: nowrap;
	transition: background .15s ease, transform .1s ease;
}
.pt-stickybuy__btn:hover { background: var(--pt-brand-600); transform: translateY(-1px); }
@media (max-width: 520px) {
	.pt-stickybuy__name { font-size: .85rem; }
	.pt-stickybuy__price { font-size: .85rem; }
	.pt-stickybuy__btn { padding: 11px 16px; font-size: .88rem; }
	.pt-stickybuy__img { width: 42px; height: 42px; }
}
@media (prefers-reduced-motion: reduce) {
	.pt-stickybuy { transition: none; }
}

/* ---------- Popup "agregado al carro" ---------- */
.pt-cartpop { position: fixed; inset: 0; z-index: 100000; display: grid; place-items: center; padding: 20px; }
.pt-cartpop[hidden] { display: none; }
.pt-cartpop__backdrop { position: absolute; inset: 0; background: rgba(42,21,34,.5); backdrop-filter: blur(3px); opacity: 0; transition: opacity .25s ease; }
.pt-cartpop.is-on .pt-cartpop__backdrop { opacity: 1; }
.pt-cartpop__box { position: relative; z-index: 1; width: 100%; max-width: 400px; background: #fff; border-radius: 20px; padding: 30px 26px 24px; text-align: center; box-shadow: var(--pt-shadow-lg); transform: translateY(14px) scale(.97); opacity: 0; transition: transform .28s cubic-bezier(.2,.7,.3,1), opacity .28s ease; }
.pt-cartpop.is-on .pt-cartpop__box { transform: none; opacity: 1; }
.pt-cartpop__x { position: absolute; top: 12px; right: 14px; width: 30px; height: 30px; border: 0; background: transparent; color: var(--pt-ink-soft); font-size: 24px; line-height: 1; cursor: pointer; border-radius: 8px; }
.pt-cartpop__x:hover { background: var(--pt-bg-soft, #faf5f8); color: var(--pt-ink); }
.pt-cartpop__check { display: inline-grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%; background: color-mix(in srgb, var(--pt-success) 14%, #fff); color: var(--pt-success); }
.pt-cartpop__check svg { width: 28px; height: 28px; }
.pt-cartpop__title { margin: 0; font-size: 1.3rem; font-weight: 900; color: var(--pt-ink); }
.pt-cartpop__name { margin: 6px 0 0; font-size: .95rem; color: var(--pt-ink-soft); }
.pt-cartpop__actions { display: flex; gap: 10px; margin: 20px 0 0; }
.pt-cartpop__btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: .95rem; padding: 13px 16px; border-radius: 12px; text-decoration: none; border: 0; cursor: pointer; transition: background .15s ease, transform .1s ease; }
.pt-cartpop__btn--primary { background: var(--pt-brand); color: #fff; box-shadow: 0 10px 22px -10px rgba(229,48,95,.6); }
.pt-cartpop__btn--primary:hover { background: var(--pt-brand-600); color: #fff; transform: translateY(-1px); }
.pt-cartpop__btn--ghost { background: #fff; color: var(--pt-ink); border: 1.5px solid var(--pt-line); }
.pt-cartpop__btn--ghost:hover { border-color: var(--pt-brand); color: var(--pt-brand-600); }
.pt-cartpop__cart { display: inline-block; margin-top: 14px; font-size: .85rem; font-weight: 700; color: var(--pt-teal-600); text-decoration: none; }
.pt-cartpop__cart:hover { text-decoration: underline; }
@media (prefers-reduced-motion: reduce) { .pt-cartpop__box, .pt-cartpop__backdrop { transition: none; } }

/* ---------- Precio por transferencia (−X%) ---------- */
.pt-transfer {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 4px 0 14px;
	padding: 10px 14px;
	background: var(--pt-brand-50);
	border: 1px solid color-mix(in srgb, var(--pt-brand) 22%, transparent);
	border-radius: var(--pt-radius-sm);
	font-size: .95rem;
}
.pt-transfer__badge {
	flex: 0 0 auto;
	background: var(--pt-brand);
	color: #fff;
	font-weight: 800;
	font-size: .82rem;
	padding: 3px 9px;
	border-radius: 999px;
}
.pt-transfer__text { color: var(--pt-ink); }
.pt-transfer__text strong { color: var(--pt-brand-600); font-size: 1.08rem; }
.pt-transfer__save {
	display: inline-block;
	margin-left: 4px;
	color: var(--pt-ink-soft);
	font-size: .85rem;
}

/* ---------- Disponibilidad (entrega inmediata / fabricación) ---------- */
.pt-avail {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 16px;
}
.pt-avail__chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	font-size: .85rem;
	padding: 5px 12px;
	border-radius: 999px;
}
.pt-avail__chip svg { width: 15px; height: 15px; }
.pt-avail__chip--ok {
	color: var(--pt-success);
	background: color-mix(in srgb, var(--pt-success) 12%, transparent);
}
.pt-avail__chip--fab {
	color: #b45309;
	background: color-mix(in srgb, var(--pt-warning) 16%, transparent);
}
.pt-avail__stock { font-size: .85rem; color: var(--pt-ink-soft); }
.pt-avail__stock--out { color: #c0392b; }

/* ---------- Instalación (chip) ---------- */
.pt-install {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 12px 0 0;
	padding: 10px 14px;
	border: 1px solid var(--pt-line);
	border-radius: 12px;
	background: var(--pt-bg-soft);
	font-size: .9rem;
	color: var(--pt-ink);
}
.pt-install svg { width: 18px; height: 18px; color: var(--pt-brand-600); flex: 0 0 auto; }
.pt-install.is-included {
	background: #f2fbf6;
	border-color: #d7efe2;
	color: #0f7a43;
	font-weight: 600;
}
.pt-install.is-included svg { color: #12a45a; }
/* Beneficio de despacho en la ficha (valor real tachado + gratis/promo). */
.pt-ship__was { color: #9aa0a8; text-decoration: line-through; font-weight: 600; }
.pt-ship__free { color: #0f7a43; font-weight: 700; }

/* ---------- Avisos suaves (48 h / consultar tiempos) ---------- */
.pt-notes {
	list-style: none;
	margin: 14px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.pt-notes__item {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: .88rem;
	color: var(--pt-ink-soft);
	line-height: 1.45;
}
.pt-notes__item svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px; color: var(--pt-ink-soft); }

/* ---------- Ficha técnica con iconos (bajo la galería) ---------- */
.pt-specs {
	margin: 36px 0 0;
	padding: 24px;
	border: 1px solid var(--pt-line);
	border-radius: var(--pt-radius);
	background: var(--pt-bg-soft);
}
.pt-specs__title {
	margin: 0 0 18px;
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: -.2px;
}
.pt-specs__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px 22px;
}
.pt-specs__item {
	display: flex;
	align-items: center;
	gap: 12px;
}
.pt-specs__icon {
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--pt-brand-50);
	color: var(--pt-brand-600);
}
.pt-specs__icon svg { width: 22px; height: 22px; }
.pt-specs__text { display: flex; flex-direction: column; line-height: 1.3; }
.pt-specs__label { font-size: .78rem; color: var(--pt-ink-soft); }
.pt-specs__value { font-size: .96rem; color: var(--pt-ink); }

@media (max-width: 720px) {
	.pt-specs__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
	.pt-specs__grid { grid-template-columns: 1fr; }
	.pt-specs { padding: 18px; }
}

/* ---------- Checkout: campos más limpios y consistentes ---------- */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-checkout #customer_details input,
.woocommerce-checkout #customer_details select,
.woocommerce-checkout #customer_details textarea {
	border: 1px solid var(--pt-line);
	border-radius: var(--pt-radius-sm);
	padding: 12px 14px;
	transition: border-color var(--pt-t), box-shadow var(--pt-t);
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce-checkout #customer_details input:focus,
.woocommerce-checkout #customer_details select:focus {
	border-color: var(--pt-brand);
	box-shadow: 0 0 0 3px var(--pt-brand-50);
	outline: none;
}

/* =====================================================================
 * CHECKOUT DE BLOQUES — estilo Shopify (moderno, 2 columnas, resumen sticky)
 * ===================================================================== */
.woocommerce-checkout .wc-block-checkout { max-width: 1120px; margin: 0 auto; gap: clamp(24px, 4vw, 48px); padding: 8px 0 48px; }
.wc-block-checkout__main { min-width: 0; }
/* Forzamos 2 columnas en escritorio (sin depender de la clase is-large que agrega el JS) */
@media (min-width: 1000px) {
	.woocommerce-checkout .wc-block-checkout { display: flex !important; flex-wrap: nowrap; align-items: flex-start; }
	.woocommerce-checkout .wc-block-checkout__main { flex: 1 1 auto; min-width: 0; }
	.woocommerce-checkout .wc-block-checkout__sidebar { flex: 0 0 380px; max-width: 380px; }
}

/* Pasos del formulario como bloques limpios con buena respiración */
.wc-block-components-checkout-step { border: 0 !important; padding: 0 0 26px !important; margin: 0 0 26px !important; border-bottom: 1px solid var(--pt-line) !important; }
.wc-block-components-checkout-step:last-child { border-bottom: 0 !important; }
.wc-block-components-checkout-step__title { font-size: 1.18rem !important; font-weight: 800 !important; color: var(--pt-ink) !important; letter-spacing: -.01em; }
.wc-block-components-checkout-step__heading-content { color: var(--pt-brand) !important; font-weight: 700; }
.wc-block-components-checkout-step__description { color: var(--pt-ink-soft) !important; }

/* Campos: redondeados, limpios, foco de marca (alta especificidad para ganar a WooCommerce Blocks) */
.woocommerce-checkout .wc-block-checkout .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-checkout .wc-block-components-text-input textarea,
.woocommerce-checkout .wc-block-checkout .wc-block-components-select select,
.woocommerce-checkout .wc-block-checkout .wc-block-components-address-form input,
.woocommerce-checkout .wc-block-checkout .wc-block-components-combobox input {
	border: 1.5px solid var(--pt-line) !important;
	border-radius: 11px !important;
	background: #fff !important;
	transition: border-color .15s, box-shadow .15s !important;
}
.wc-block-components-text-input input:focus,
.wc-block-components-text-input textarea:focus,
.wc-block-checkout .wc-block-components-select select:focus,
.wc-block-components-combobox input:focus {
	border-color: var(--pt-brand) !important;
	box-shadow: 0 0 0 3px var(--pt-brand-50) !important;
	outline: none !important;
}
.wc-block-components-text-input.is-active label,
.wc-block-components-text-input input:focus + label { color: var(--pt-brand) !important; }

/* Resumen del pedido: tarjeta STICKY a la derecha */
.wc-block-checkout__sidebar { align-self: start; }
@media (min-width: 1000px) {
	.wc-block-checkout__sidebar { position: sticky; top: 90px; }
}
.wc-block-checkout__sidebar > .is-large,
.wc-block-checkout__sidebar .wc-block-components-order-summary,
.wc-block-checkout__sidebar .wc-block-components-totals-wrapper,
.wc-block-checkout__sidebar .wc-block-components-checkout-order-summary {
	background: var(--pt-bg-soft) !important;
	border: 1px solid var(--pt-line) !important;
	border-radius: 18px !important;
}
.wc-block-checkout__sidebar .wc-block-components-checkout-order-summary { padding: 8px 20px !important; box-shadow: var(--pt-shadow); }
.wc-block-components-order-summary__title, .wc-block-components-checkout-order-summary__title { font-weight: 800 !important; font-size: 1.05rem !important; color: var(--pt-ink) !important; }

/* Items del resumen con miniatura */
.wc-block-components-order-summary-item__image img { border-radius: 10px !important; border: 1px solid var(--pt-line); }
.wc-block-components-order-summary-item__quantity { background: var(--pt-brand) !important; color: #fff !important; }
.wc-block-components-order-summary-item__description .wc-block-components-product-name { font-weight: 700 !important; color: var(--pt-ink) !important; }

/* Totales */
.wc-block-components-totals-item { color: var(--pt-ink-soft); }
.wc-block-components-totals-footer-item, .wc-block-components-totals-item--total { font-weight: 800 !important; color: var(--pt-ink) !important; }
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value { color: var(--pt-brand) !important; font-size: 1.35rem !important; }

/* Botón de pago: grande, marca, protagonista */
.wc-block-components-checkout-place-order-button,
.wc-block-components-button.wc-block-components-checkout-place-order-button {
	background: var(--pt-brand) !important;
	color: #fff !important;
	border-radius: 12px !important;
	min-height: 56px !important;
	font-weight: 800 !important;
	font-size: 1.05rem !important;
	box-shadow: 0 14px 30px -12px rgba(229,48,95,.7) !important;
	transition: background .15s, transform .15s !important;
}
.wc-block-components-checkout-place-order-button:hover { background: var(--pt-brand-600) !important; transform: translateY(-1px); }

/* Métodos de pago como tarjetas seleccionables */
.wc-block-components-radio-control__option { border: 1.5px solid var(--pt-line); border-radius: 12px; padding: 14px 16px 14px 44px !important; margin-bottom: 10px; transition: border-color .15s, background .15s; }
.wc-block-components-radio-control__option--checked-option-highlighted,
.wc-block-components-radio-control__option:has(input:checked) { border-color: var(--pt-brand); background: var(--pt-brand-50); }

/* Nota de seguridad bajo el botón (Shopify) */
.wc-block-checkout__actions::after {
	content: "🔒 Pago 100% seguro · Despacho e instalación a todo Chile";
	display: block; text-align: center; margin-top: 12px; font-size: .82rem; color: var(--pt-ink-soft);
}

@media (max-width: 999px) {
	.woocommerce-checkout .wc-block-checkout { flex-direction: column; }
	.wc-block-checkout__sidebar { order: -1; }
}

/* ================================================================
 * HEADER
 * ================================================================ */
.pt-no-scroll { overflow: hidden; }

.pt-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid var(--pt-line);
	transition: box-shadow var(--pt-t);
}
.pt-header.is-stuck { box-shadow: var(--pt-shadow); }

.pt-header__bar { width: 100%; }
.pt-header__inner {
	max-width: var(--pt-maxw);
	margin: 0 auto;
	padding: 0 clamp(16px, 3vw, 28px);
	min-height: 72px;
	display: flex;
	align-items: center;
	gap: clamp(12px, 2vw, 28px);
}
/* Tres zonas: logo (izq) · botón Buscar (centro) · iconos (der). */
.pt-header__left { display: flex; align-items: center; gap: 10px; flex: 1 1 0; min-width: 0; }
.pt-header__center { flex: 0 1 auto; display: flex; justify-content: center; }

/* Botón "Buscar" al centro: contorno delgado (sin fondo), letra pequeña como el botón "Categorías". */
.pt-searchbtn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	min-width: 300px; max-width: 44vw;
	padding: 8px 18px; border: 1.5px solid var(--pt-line); border-radius: 999px; cursor: pointer;
	background: transparent; color: var(--pt-ink-soft);
	font-family: inherit; font-weight: 600; font-size: .84rem; letter-spacing: .2px;
	box-shadow: none;
	transition: border-color .15s, color .15s;
}
.pt-searchbtn:hover { background: transparent; border-color: var(--pt-brand); color: var(--pt-brand); }
.pt-searchbtn__ic { display: inline-flex; }
.pt-searchbtn__ic svg { width: 16px; height: 16px; }

/* Buscador que se despliega EN EL MISMO LUGAR del botón (in-place). */
.pt-header__center { position: relative; }
.pt-header__center.is-search-open .pt-searchbtn { display: none; }
.pt-searchinline { position: relative; }
.pt-searchinline[hidden] { display: none; }
.pt-searchinline__form {
	display: flex; align-items: center; gap: 8px;
	width: 480px; max-width: 48vw;
	border: 1.5px solid var(--pt-brand); border-radius: 999px;
	padding: 4px 6px 4px 16px; background: #fff;
	box-shadow: 0 8px 24px -10px rgba(42, 21, 34, .22);
	transform-origin: center;
	animation: ptInlineIn .22s cubic-bezier(.2, .7, .2, 1);
}
@keyframes ptInlineIn { from { opacity: 0; transform: scaleX(.55); } to { opacity: 1; transform: scaleX(1); } }
.pt-searchinline__ic { color: var(--pt-brand); display: inline-flex; flex: 0 0 auto; }
.pt-searchinline__ic svg { width: 18px; height: 18px; }
.pt-searchinline .pt-search-input { flex: 1 1 auto; min-width: 0; border: 0; outline: none; background: transparent; padding: 9px 2px; font-size: .95rem; color: var(--pt-ink); }
.pt-searchinline__close { flex: 0 0 auto; width: 34px; height: 34px; border: 0; background: var(--pt-bg-soft); border-radius: 50%; cursor: pointer; display: grid; place-items: center; color: var(--pt-ink-soft); }
.pt-searchinline__close:hover { background: var(--pt-line); }
.pt-searchinline__close svg { width: 16px; height: 16px; }
.pt-searchinline .pt-search-results {
	position: absolute; top: calc(100% + 8px); left: 0; right: 0;
	max-height: 70vh; overflow-y: auto;
	border: 1px solid var(--pt-line); border-radius: 14px; background: #fff;
	box-shadow: var(--pt-shadow-lg); padding: 6px; z-index: 95; text-align: left;
}

/* Marca */
.pt-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--pt-ink);
	flex: 0 0 auto;
}
.pt-brand__mark { display: block; width: 44px; height: 44px; object-fit: contain; }
.pt-brand--logo { display: inline-flex; align-items: center; }
.pt-header__inner .custom-logo,
.pt-brand .custom-logo { display: block !important; height: auto !important; max-height: 42px !important; width: auto !important; max-width: 200px !important; }
@media (max-width: 600px) { .pt-header__inner .custom-logo, .pt-brand .custom-logo { max-height: 32px !important; max-width: 160px !important; } }
.pt-brand__name {
	font-weight: 800;
	font-size: 1.15rem;
	letter-spacing: -0.01em;
	line-height: 1;
	white-space: nowrap;
}

/* Navegación principal */
.pt-nav { flex: 1 1 auto; display: flex; justify-content: center; }
.pt-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(8px, 1.6vw, 22px);
	margin: 0;
	padding: 0;
	list-style: none;
}
.pt-nav__list li { position: relative; }
.pt-nav__list a {
	display: inline-block;
	padding: 8px 6px;
	color: var(--pt-ink);
	font-weight: 600;
	font-size: .96rem;
	text-decoration: none;
	border-radius: var(--pt-radius-sm);
	transition: color var(--pt-t);
}
.pt-nav__list a:hover,
.pt-nav__list .current-menu-item > a { color: var(--pt-brand); }
.pt-nav__list a::after {
	content: "";
	display: block;
	height: 2px;
	width: 0;
	margin-top: 2px;
	background: var(--pt-brand);
	border-radius: 2px;
	transition: width var(--pt-t);
}
.pt-nav__list a:hover::after,
.pt-nav__list .current-menu-item > a::after { width: 100%; }

/* Submenús */
.pt-nav__list .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	margin: 0;
	padding: 8px;
	list-style: none;
	background: #fff;
	border: 1px solid var(--pt-line);
	border-radius: var(--pt-radius);
	box-shadow: var(--pt-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity var(--pt-t), transform var(--pt-t), visibility var(--pt-t);
	z-index: 20;
}
.pt-nav__list li:hover > .sub-menu,
.pt-nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.pt-nav__list .sub-menu a { display: block; padding: 8px 10px; }
.pt-nav__list .sub-menu a::after { display: none; }

.pt-nav__hint { font-size: .8rem; color: var(--pt-ink-soft); margin-left: 10px; }

/* Acciones del header */
.pt-header__actions { display: flex; align-items: center; gap: 4px; flex: 0 0 auto; }
.pt-hd__action {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--pt-ink);
	border-radius: 50%;
	cursor: pointer;
	text-decoration: none;
	transition: background var(--pt-t), color var(--pt-t);
}
.pt-hd__action:hover { background: var(--pt-bg-soft); color: var(--pt-brand); }
.pt-ic { width: 22px; height: 22px; display: block; }

.pt-cart__count {
	position: absolute;
	top: 4px;
	right: 2px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--pt-brand);
	color: #fff;
	font-size: .7rem;
	font-weight: 700;
	line-height: 1;
	border-radius: 999px;
}
.pt-cart__count:empty,
.pt-cart__count:not(:empty)[data-pt-cart-count="0"] { display: none; }

/* ---------- Header moderno de 2 filas (buscador siempre visible) ---------- */
.pt-searchbox { position: relative; }
/* Buscador compacto por defecto; al enfocarlo (clic) se expande al tamaño normal. */
.pt-searchbar { position: relative; flex: 0 0 auto; width: 200px; max-width: 40vw; margin: 0 4px 0 0; transition: width .28s cubic-bezier(.2,.7,.2,1); }
.pt-searchbar.is-search-open, .pt-searchbar:focus-within { width: 460px; max-width: 52vw; }
.pt-searchbar:not(.is-search-open) .pt-searchbar__go { opacity: 0; width: 0; padding: 0; overflow: hidden; pointer-events: none; }
.pt-searchbar__go { transition: background .15s, opacity .2s, width .2s, padding .2s; }
.pt-header__actions { display: flex; align-items: center; gap: 6px; flex: 1 1 0; justify-content: flex-end; }
.pt-searchbar__form { display: flex; align-items: center; gap: 8px; background: var(--pt-bg-soft); border: 1.5px solid var(--pt-line); border-radius: 999px; padding: 2px 2px 2px 14px; transition: border-color .15s, box-shadow .15s, background .15s; }
.pt-searchbar__form:focus-within { border-color: var(--pt-brand); box-shadow: 0 0 0 3px var(--pt-brand-50); background: #fff; }
.pt-searchbar__ic { color: var(--pt-ink-soft); display: inline-flex; flex: 0 0 auto; }
.pt-searchbar__ic svg { width: 19px; height: 19px; }
.pt-searchbar .pt-search-input { flex: 1 1 auto; min-width: 0; border: 0; outline: none; background: transparent; padding: 10px 4px; font-size: .98rem; color: var(--pt-ink); }
.pt-searchbar__go { flex: 0 0 auto; border: 0; cursor: pointer; background: var(--pt-brand); color: #fff; font-weight: 800; font-size: .9rem; padding: 10px 22px; border-radius: 999px; transition: background .15s; }
.pt-searchbar__go:hover { background: var(--pt-brand-600); }
.pt-searchbar .pt-search-results { position: absolute; top: calc(100% + 8px); left: 0; right: 0; max-height: 72vh; overflow-y: auto; border: 1px solid var(--pt-line); border-radius: 14px; background: #fff; box-shadow: var(--pt-shadow-lg); padding: 6px; z-index: 95; }

.pt-header__navrow { border-top: 1px solid var(--pt-line); background: #fff; }
.pt-header__navrow .pt-nav { display: flex; max-width: var(--pt-maxw); margin: 0 auto; padding: 0 clamp(16px, 3vw, 28px); align-items: center; gap: 22px; justify-content: flex-start; min-height: 50px; }

/* Fila de navegación con solo el botón "Categorías". */
.pt-nav--cats { justify-content: flex-start; }

@media (min-width: 1025px) { .pt-search-toggle { display: none; } }
@media (max-width: 1024px) { .pt-searchbar { display: none; } .pt-header__navrow { display: none; } .pt-header__center { display: none; } }

/* ---------- Mega-menú de categorías (escritorio) ---------- */
.pt-mega { position: relative; flex: 0 0 auto; }
.pt-mega__btn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 15px; border: 0; background: var(--pt-brand); color: #fff; border-radius: 999px; font-weight: 600; font-size: .84rem; cursor: pointer; font-family: inherit; box-shadow: 0 8px 18px -8px rgba(229,48,95,.6); transition: background .16s; }
.pt-mega__btn:hover { background: var(--pt-brand-600); }
.pt-mega__btn > svg { width: 16px; height: 16px; }
.pt-mega__chev { width: 13px; height: 13px; transition: transform .2s; }
.pt-mega.is-open .pt-mega__chev { transform: rotate(180deg); }

.pt-mega__panel { position: absolute; left: 0; top: 100%; margin-top: 7px; width: min(900px, 94vw); background: #fff; border: 1px solid var(--pt-line); border-radius: 14px; box-shadow: 0 24px 48px -18px rgba(38,25,42,.32); overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .18s ease, transform .18s ease, visibility .18s; z-index: 90; }
.pt-mega.is-open .pt-mega__panel { opacity: 1; visibility: visible; transform: none; }
.pt-mega__flex { display: flex; align-items: stretch; min-height: 300px; max-height: 74vh; }

/* Izquierda: lista de categorías (icono + nombre) */
.pt-mega__cats { flex: 0 0 240px; margin: 0; padding: 8px; list-style: none; overflow-y: auto; border-right: 1px solid var(--pt-line); background: var(--pt-bg-soft); }
.pt-mega__cat { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 9px; text-decoration: none; color: var(--pt-ink); font-size: .82rem; font-weight: 500; transition: background .12s, color .12s; }
.pt-mega__cat:hover, .pt-mega__cat.is-on { background: #fff; color: var(--pt-brand-600); box-shadow: 0 1px 6px -3px rgba(38,25,42,.22); }
.pt-mega__catic { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 7px; background: #fff center/cover no-repeat; border: 1px solid var(--pt-line); }
.pt-mega__catname { flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pt-mega__catchev { width: 13px; height: 13px; flex: none; color: var(--pt-ink-3); opacity: 0; transition: opacity .12s; }
.pt-mega__cat.is-on .pt-mega__catchev { opacity: 1; color: var(--pt-brand); }

/* Derecha: subcategorías de la categoría activa */
.pt-mega__flyouts { flex: 1 1 auto; position: relative; padding: 18px 22px; overflow-y: auto; }
.pt-mega__pane { display: none; }
.pt-mega__pane.is-on { display: block; animation: ptMegaFade .18s ease; }
@keyframes ptMegaFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.pt-mega__panehead { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.pt-mega__panehead b { font-size: 1rem; font-weight: 700; color: var(--pt-ink); }
.pt-mega__showall { font-size: .78rem; font-weight: 600; color: var(--pt-brand); text-decoration: none; white-space: nowrap; }
.pt-mega__showall:hover { text-decoration: underline; }
.pt-mega__subgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap: 3px 18px; }
.pt-mega__sub { display: block; padding: 5px 0; color: var(--pt-ink-soft); text-decoration: none; font-size: .8rem; line-height: 1.3; }
.pt-mega__sub:hover { color: var(--pt-brand); }
.pt-mega__sub--all { color: var(--pt-brand); font-weight: 600; }

@media (max-width: 1024px) { .pt-mega { display: none; } }

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

/* Panel de búsqueda */
.pt-search-panel {
	border-top: 1px solid var(--pt-line);
	background: #fff;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height var(--pt-t), opacity var(--pt-t);
}
.pt-search-panel.is-open { max-height: 80vh; opacity: 1; overflow: visible; box-shadow: var(--pt-shadow-lg); }
.pt-search-panel__inner { max-width: 760px; margin: 0 auto; padding: 20px clamp(16px, 3vw, 28px); position: relative; }
.pt-search-form { display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--pt-line); border-radius: 14px; padding: 4px 6px 4px 14px; background: #fff; }
.pt-search-form:focus-within { border-color: var(--pt-brand); box-shadow: 0 0 0 3px var(--pt-brand-50); }
.pt-search-form__ic { color: var(--pt-ink-soft); display: inline-flex; }
.pt-search-form__ic svg { width: 20px; height: 20px; }
.pt-search-input { flex: 1 1 auto; border: 0; outline: none; padding: 12px 4px; font-size: 1.05rem; background: transparent; color: var(--pt-ink); }
.pt-search-panel__close { flex: 0 0 auto; width: 40px; height: 40px; border: 0; background: var(--pt-bg-soft); border-radius: 50%; cursor: pointer; display: grid; place-items: center; color: var(--pt-ink-soft); }
.pt-search-panel__close:hover { background: var(--pt-line); }

/* Resultados en vivo */
.pt-search-results { margin-top: 10px; max-height: 62vh; overflow-y: auto; border: 1px solid var(--pt-line); border-radius: 14px; background: #fff; box-shadow: var(--pt-shadow-lg); padding: 6px; }
.pt-sres__group { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--pt-ink-3); padding: 10px 12px 6px; }
.pt-sres__cat { display: inline-flex; align-items: center; gap: 6px; margin: 0 6px 6px; padding: 7px 13px; border-radius: 999px; background: var(--pt-teal-50); color: var(--pt-teal-600); font-weight: 700; font-size: .88rem; text-decoration: none; }
.pt-sres__cat span { color: var(--pt-ink-3); font-weight: 600; }
.pt-sres__cat:hover { background: var(--pt-teal); color: #fff; }
.pt-sres__it { display: flex; align-items: center; gap: 12px; padding: 9px 12px; border-radius: 10px; text-decoration: none; color: var(--pt-ink); }
.pt-sres__it:hover { background: var(--pt-bg-soft); }
.pt-sres__it img { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; background: var(--pt-bg-soft); flex: 0 0 auto; }
.pt-sres__info { display: flex; flex-direction: column; min-width: 0; }
.pt-sres__info b { font-size: .95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pt-sres__price { font-size: .9rem; font-weight: 700; color: var(--pt-brand); }
.pt-sres__empty, .pt-sres__loading { padding: 18px; text-align: center; color: var(--pt-ink-soft); font-size: .92rem; }

/* Drawer móvil */
.pt-drawer { position: fixed; inset: 0; z-index: 200; }
.pt-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(31, 35, 41, .45);
	opacity: 0;
	transition: opacity var(--pt-t);
}
.pt-drawer.is-open .pt-drawer__backdrop { opacity: 1; }
.pt-drawer__panel {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: min(82vw, 340px);
	background: #fff;
	box-shadow: var(--pt-shadow-lg);
	transform: translateX(-100%);
	transition: transform var(--pt-t);
	display: flex;
	flex-direction: column;
	padding: 16px;
	overflow-y: auto;
}
.pt-drawer.is-open .pt-drawer__panel { transform: translateX(0); }
.pt-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--pt-line);
	margin-bottom: 10px;
}
.pt-drawer__list { list-style: none; margin: 0; padding: 0; }
.pt-drawer__list li { border-bottom: 1px solid var(--pt-line); }
.pt-drawer__list a {
	display: block;
	padding: 14px 6px;
	color: var(--pt-ink);
	font-weight: 600;
	text-decoration: none;
}
.pt-drawer__list a:hover { color: var(--pt-brand); }
.pt-drawer__list .sub-menu { list-style: none; margin: 0; padding-left: 14px; }
/* Categorías + subcategorías en el menú lateral */
.pt-drawer__cats { border-top: 8px solid var(--pt-bg-soft); padding: 14px 0 30px; }
.pt-drawer__catshead { display: block; padding: 6px 20px; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--pt-ink-3); }
.pt-drawer__catlist, .pt-drawer__sub { list-style: none; margin: 0; padding: 0; }
.pt-drawer__catlist > li { border-bottom: 1px solid var(--pt-line); }
.pt-drawer__cat { display: block; padding: 13px 20px; font-weight: 700; color: var(--pt-ink); text-decoration: none; }
.pt-drawer__cat:hover { color: var(--pt-brand); }
.pt-drawer__sub { padding: 0 0 8px; }
.pt-drawer__sub a { display: block; padding: 8px 20px 8px 34px; font-size: .92rem; color: var(--pt-ink-soft); text-decoration: none; }
.pt-drawer__sub a:hover { color: var(--pt-brand); }

/* Nav robusto con muchas secciones: no se rompe, se desplaza si no cabe. */
.pt-nav__list { flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -ms-overflow-style: none; max-width: 100%; }
.pt-nav__list::-webkit-scrollbar { display: none; }
.pt-nav__list a { white-space: nowrap; }

/* Responsive: con muchas secciones colapsamos antes al menú lateral (drawer) */
@media (max-width: 1024px) {
	.pt-nav { display: none; }
	.pt-menu-toggle { display: inline-flex; }
	.pt-header__inner { gap: 8px; }
	.pt-brand { margin-right: auto; }
	.pt-brand__name { font-size: 1.05rem; }
}
@media (max-width: 420px) {
	.pt-brand__name { display: none; }
}

/* --- Móvil tipo app: header fijo, drawer a pantalla completa, tap targets grandes --- */
@media (max-width: 1024px) {
	.pt-header { padding-top: env(safe-area-inset-top, 0); }
	.pt-header__inner { min-height: 60px; }
	.pt-drawer__panel { width: min(88vw, 400px); max-width: 100%; padding-bottom: env(safe-area-inset-bottom, 0); border-top-right-radius: 0; }
	.pt-drawer__list a { padding: 15px 20px; font-size: 1.05rem; font-weight: 700; }
	.pt-drawer__list li { border-bottom: 1px solid var(--pt-line); }
	.pt-drawer__list .sub-menu a { font-size: .98rem; font-weight: 600; color: var(--pt-ink-soft); padding: 11px 20px; }
	/* Acciones (buscar/cuenta) más grandes y táctiles en el header móvil */
	.pt-header__actions .pt-hd__action { width: 44px; height: 44px; }
	.pt-menu-toggle { width: 44px; height: 44px; }
}
@media (max-width: 560px) {
	.pt-drawer__panel { width: 100vw; border-radius: 0; }
}

/* ================================================================
 * FOOTER
 * ================================================================ */
.pt-footer {
	margin-top: clamp(40px, 6vw, 80px);
	background: var(--pt-ink);
	color: #c7ccd4;
}
.pt-footer a { color: #e6e9ee; text-decoration: none; transition: color var(--pt-t); }
.pt-footer a:hover { color: #fff; }

.pt-footer__top {
	max-width: var(--pt-maxw);
	margin: 0 auto;
	padding: clamp(36px, 5vw, 56px) clamp(16px, 3vw, 28px);
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: clamp(24px, 4vw, 48px);
}
.pt-footer__brand .pt-brand { color: #fff; }
.pt-footer__brand .pt-brand__name { color: #fff; }
.pt-footer__about { margin: 14px 0 0; font-size: .92rem; line-height: 1.6; max-width: 38ch; }

.pt-social { display: flex; gap: 10px; margin-top: 18px; }
.pt-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	transition: background var(--pt-t), transform var(--pt-t);
}
.pt-social__link:hover { background: var(--pt-brand); transform: translateY(-2px); }

.pt-footer__title {
	color: #fff;
	font-size: .95rem;
	font-weight: 700;
	letter-spacing: .02em;
	text-transform: uppercase;
	margin: 0 0 16px;
}
.pt-footer__menu { list-style: none; margin: 0; padding: 0; }
.pt-footer__menu li { margin-bottom: 10px; }
.pt-footer__menu a { font-size: .94rem; }

.pt-footer__contact { list-style: none; margin: 0; padding: 0; }
.pt-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	font-size: .94rem;
}
.pt-footer__contact .pt-ic { flex: 0 0 auto; margin-top: 2px; color: var(--pt-brand); }

.pt-footer__pay-note { font-size: .9rem; line-height: 1.6; margin: 0 0 14px; }
.pt-pay { display: flex; flex-wrap: wrap; gap: 8px; }
.pt-pay__chip {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	background: rgba(255, 255, 255, .08);
	border-radius: var(--pt-radius-sm);
	font-size: .8rem;
	font-weight: 600;
	color: #fff;
}

.pt-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, .1);
	max-width: var(--pt-maxw);
	margin: 0 auto;
	padding: 18px clamp(16px, 3vw, 28px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	font-size: .85rem;
}
.pt-footer__bottom p { margin: 0; }
.pt-footer__credit a { color: #fff; font-weight: 600; }

@media (max-width: 860px) {
	.pt-footer__top { grid-template-columns: 1fr 1fr; }
	.pt-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
	.pt-footer__top { grid-template-columns: 1fr; }
	.pt-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Accesibilidad: respeta usuarios sensibles al movimiento ---------- */
@media (prefers-reduced-motion: reduce) {
	* { transition: none !important; animation: none !important; }
}

/* Ficha técnica: lista de texto + bloques (fecha de llegada, ficha PDF) */
.pt-specs__list { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.pt-specs__list li { font-size: 14px; color: var(--pt-ink); line-height: 1.5; }
.pt-specs__list li span { color: var(--pt-ink-soft); }
.pt-specs__blocks { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.pt-specblock { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--pt-line); border-radius: var(--pt-radius-sm); background: var(--pt-bg); text-decoration: none; color: var(--pt-ink); }
.pt-specblock__ico { flex: 0 0 auto; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: var(--pt-brand-50); color: var(--pt-brand); }
.pt-specblock__ico svg { width: 22px; height: 22px; }
.pt-specblock__txt { display: flex; flex-direction: column; line-height: 1.3; }
.pt-specblock__lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--pt-ink-soft); }
.pt-specblock__txt strong { font-size: 14px; color: var(--pt-ink); }
.pt-specblock--link { transition: border-color .15s, background .15s; }
.pt-specblock--link:hover { border-color: var(--pt-brand); background: var(--pt-brand-50); }
.pt-specblock--link .pt-specblock__txt strong { color: var(--pt-brand); }

/* ---------- Imágenes reales del producto (galería en la página de producto) ---------- */
.pt-realgal { max-width: 1120px; margin: 34px auto; padding: 0 4px; }
.pt-realgal__title { font-size: 1.4rem; font-weight: 800; color: var(--pt-ink); margin: 0 0 18px; position: relative; padding-left: 15px; }
.pt-realgal__title::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 5px; border-radius: 3px; background: var(--pt-brand); }
.pt-realgal__grid { display: grid; gap: 16px; }
.pt-realgal__item { margin: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--pt-line); background: var(--pt-bg-soft); aspect-ratio: 4 / 3; }
.pt-realgal__img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
@media (max-width: 720px) { .pt-realgal__grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 430px) { .pt-realgal__grid { grid-template-columns: 1fr !important; } }

/* ============================================================
   Tarjetas de producto modernas (portada) — estilo Shopify
   ============================================================ */
/* ---------- Galería de producto (estilo Shopify) ---------- */
.pt-gallery { display: flex; flex-direction: column; gap: 14px; }
.pt-gallery__main { position: relative; border: 1px solid var(--pt-line); border-radius: 18px; overflow: hidden; background: #fff; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; }
.pt-gallery__main .pt-gallery__img, .pt-gallery__main img { width: 100%; height: 100%; object-fit: contain; display: block; transition: opacity .2s ease; background: #fff; }
.pt-gallery__badge { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--pt-brand); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; box-shadow: 0 6px 16px -6px rgba(229,48,95,.6); }
.pt-gallery__thumbs { display: flex; gap: 10px; overflow-x: auto; padding: 2px; scrollbar-width: thin; }
.pt-gallery__thumbs::-webkit-scrollbar { height: 6px; }
.pt-gallery__thumbs::-webkit-scrollbar-thumb { background: var(--pt-line); border-radius: 999px; }
.pt-gallery__thumb { flex: 0 0 84px; width: 84px; height: 84px; padding: 0; border: 2px solid var(--pt-line); border-radius: 12px; overflow: hidden; background: #fff; cursor: pointer; transition: border-color .15s ease, transform .12s ease; }
.pt-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pt-gallery__thumb:hover { border-color: var(--pt-brand-200, #f3b6c8); transform: translateY(-2px); }
.pt-gallery__thumb.is-on { border-color: var(--pt-brand); }
@media (max-width: 560px) { .pt-gallery__thumb { flex-basis: 64px; width: 64px; height: 64px; } }

.pt-pcards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
/* Variante carrusel: una sola línea que se desliza (ahorra espacio vertical). */
.pt-catcar--prod { position: relative; }
.pt-pcards--row { display: flex; flex-wrap: nowrap; align-items: stretch; overflow-x: auto; overflow-y: visible; gap: 18px; scroll-snap-type: x proximity; scroll-behavior: smooth; padding: 8px 6px 24px; margin: 0 -6px; scrollbar-width: none; -ms-overflow-style: none; }
.pt-pcards--row::-webkit-scrollbar { display: none; }
.pt-pcards--row .pt-pcard { flex: 0 0 clamp(230px, 24%, 268px); width: auto; scroll-snap-align: start; }
@media (max-width: 720px) { .pt-pcards--row .pt-pcard { flex-basis: 76%; } }
.pt-pcard { position: relative; background: #fff; border: 1px solid var(--pt-line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease; }
.pt-pcard:hover { transform: translateY(-5px); box-shadow: var(--pt-shadow-lg); border-color: transparent; }
.pt-pcard__media { position: relative; aspect-ratio: 1 / 1; background: #fff; overflow: hidden; }
.pt-pcard__imglink { position: absolute; inset: 0; display: block; }
.pt-pcard__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 10px; opacity: 0; transition: opacity .4s ease, transform .5s ease; }
.pt-pcard__img.is-on { opacity: 1; }
.pt-pcard:hover .pt-pcard__img.is-on { transform: scale(1.04); }
.pt-pcard__badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; z-index: 2; }
.pt-pcard__b { font-weight: 600; font-size: 10px; padding: 3px 8px; border-radius: 7px; }
.pt-pcard__b--off { background: var(--pt-brand); color: #fff; }
.pt-pcard__b--few { background: var(--pt-yellow); color: var(--pt-yellow-ink); }
.pt-pcard__fav { position: absolute; top: 10px; right: 10px; z-index: 2; width: 34px; height: 34px; border-radius: 50%; border: 0; background: rgba(255,255,255,.92); color: var(--pt-ink-soft); display: grid; place-items: center; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.12); transition: color .15s, transform .12s; }
.pt-pcard__fav svg { width: 18px; height: 18px; }
.pt-pcard__fav:hover { transform: scale(1.08); }
.pt-pcard__fav.is-on { color: var(--pt-brand); }
.pt-pcard__fav.is-on svg { fill: var(--pt-brand); stroke: var(--pt-brand); }
.pt-pcard__dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; opacity: 0; transition: opacity .15s; }
.pt-pcard:hover .pt-pcard__dots { opacity: 1; }
.pt-pcard__dot { width: 7px; height: 7px; border-radius: 50%; border: 0; background: rgba(255,255,255,.65); cursor: pointer; padding: 0; box-shadow: 0 1px 3px rgba(0,0,0,.3); transition: width .2s; }
.pt-pcard__dot.is-on { background: #fff; width: 18px; border-radius: 4px; }
.pt-pcard__body { padding: 13px 15px 15px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pt-pcard__cat { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .05em; color: var(--pt-ink-3, #a99fad); }
.pt-pcard__name { display: -webkit-box; font-size: 11.5px; line-height: 1.25; font-weight: 700; text-transform: uppercase; letter-spacing: .01em; color: var(--pt-ink); -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-decoration: none; }
.pt-pcard__name:hover { color: var(--pt-brand-600); }
.pt-pcard__desc { display: -webkit-box; margin-top: 3px; font-size: 10.5px; line-height: 1.3; font-weight: 400; color: var(--pt-ink-soft); -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- Móvil: tipografías más pequeñas y ordenadas (más confianza) ---------- */
@media (max-width: 600px) {
	.pt-section__title { font-size: 1.12rem; }
	.pt-section__more { font-size: .8rem; }
	.pt-pcards { gap: 12px; }
	.pt-pcard__body { padding: 10px 11px 12px; gap: 4px; }
	.pt-pcard__cat { font-size: 9.5px; }
	.pt-pcard__title { font-size: 12.5px; line-height: 1.25; min-height: 2.5em; }
	.pt-pcard__price { font-size: 14px; }
	.pt-pcard__transfer { font-size: 10.5px; }
	.pt-pcard__rating { font-size: 11px; }
	/* En celular NO mostramos el sufijo "IVA incluido" del precio (ocupa mucho espacio) */
	.woocommerce-price-suffix { display: none !important; }
	.pt-pcard__price .woocommerce-price-suffix, .pt-pcard__price small { display: none !important; }
	.pt-pcard__b { font-size: 10px; padding: 3px 8px; }
	.pt-catc b { font-size: .72rem; }
	.pt-etile__name { font-size: .7rem; }
	.pt-subcats__title { font-size: .9rem; }
	/* USP / garantías más compactas */
	.pt-usp__item b { font-size: .8rem; }
	.pt-usp__item span { font-size: .68rem; }
}
.pt-pcard__rating { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--pt-ink-soft); }
.pt-star { width: 14px; height: 14px; color: var(--pt-line); }
.pt-star.is-on { color: var(--pt-yellow-ink); }
.pt-pcard__rating b { color: var(--pt-ink); }
.pt-pcard__rating i { color: var(--pt-ink-3, #a99fad); font-style: normal; }
.pt-pcard__price { display: flex; align-items: baseline; gap: 8px; margin-top: 2px; font-size: 16px; font-weight: 700; color: var(--pt-brand-600); }
.pt-pcard__price del { color: var(--pt-ink-3, #a99fad); font-weight: 400; font-size: .78em; }
.pt-pcard__price ins { text-decoration: none; color: var(--pt-brand-600); }
.pt-pcard__transfer { font-size: 11px; color: var(--pt-success); font-weight: 500; }
/* Precio estilo retail (Sodimac/Falabella) */
.pt-pcard__prices { margin-top: 5px; }
.pt-pcard__now { display: flex; align-items: center; gap: 7px; font-size: 17px; font-weight: 700; color: var(--pt-ink); line-height: 1.1; }
.pt-pcard__now .amount, .pt-pcard__now bdi { color: var(--pt-ink); font-weight: 700; }
.pt-pcard__off { font-size: 11px; font-weight: 700; color: #fff; background: #d92d20; padding: 2px 7px; border-radius: 5px; line-height: 1.35; }
.pt-pcard__was { margin-top: 2px; font-size: 11.5px; color: var(--pt-ink-3, #a99fad); }
.pt-pcard__was s { color: var(--pt-ink-3, #a99fad); }
.pt-pcard__add { margin-top: auto; width: 100%; background: #fff; color: var(--pt-ink); border: 1.5px solid var(--pt-line); border-radius: 8px; padding: 10px 12px; font-weight: 600; font-size: 12.5px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 7px; text-decoration: none; transition: background .15s, border-color .15s, color .15s; }
.pt-pcard__add svg { width: 15px; height: 15px; }
/* Botón compacto en celular (va después de la base para ganar por orden) */
@media (max-width: 600px) {
	.pt-pcard__add { margin-top: 7px; padding: 7px 6px; font-size: 11px; gap: 4px; border-radius: 9px; }
	.pt-pcard__add svg { width: 13px; height: 13px; }
}
.pt-pcard__add svg { width: 16px; height: 16px; }
.pt-pcard__add:hover { background: var(--pt-ink); border-color: var(--pt-ink); color: #fff; }
.pt-pcard__add.added { background: var(--pt-success); }
.pt-pcard__add.loading { opacity: .7; pointer-events: none; }
/* "Ver carrito" que aparece tras agregar: pill moderno turquesa (anula el azul de Blocksy) */
.pt-pcard .added_to_cart {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin: 0 15px 14px !important;
	padding: 11px 14px !important;
	min-height: 0 !important;
	border-radius: 12px !important;
	background: var(--pt-teal-50) !important;
	color: var(--pt-teal-600) !important;
	border: 1.5px solid var(--pt-teal) !important;
	font-weight: 800 !important;
	font-size: 13.5px !important;
	line-height: 1 !important;
	text-decoration: none !important;
	transition: background .16s ease, color .16s ease, transform .16s ease, box-shadow .16s ease !important;
}
.pt-pcard .added_to_cart::before { content: "✓"; font-weight: 900; font-size: 14px; }
.pt-pcard .added_to_cart:hover {
	background: var(--pt-teal) !important;
	color: #fff !important;
	border-color: var(--pt-teal) !important;
	transform: translateY(-1px);
	box-shadow: 0 8px 18px -8px rgba(34,168,168,.7) !important;
}
@media (max-width: 920px) { .pt-pcards { grid-template-columns: 1fr 1fr; } .pt-pcard__dots { opacity: 1; } }

/* =====================================================================
   TIENDA (archivo de productos) — estilo Shopify, optimizada a la venta.
   Reemplazamos la tarjeta de Blocksy por nuestra .pt-pcard (override
   woocommerce/content-product.php) y componemos una grilla + barra de
   herramientas + franja de confianza limpias.
   ===================================================================== */

/* Grilla de la tienda: usa nuestras tarjetas parejas, no la de Blocksy. */
.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px 20px;
	margin: 0 0 34px;
	padding: 0;
	list-style: none;
}
/* La celda <li> pierde su marco (lo aporta la tarjeta) y ocupa toda la columna. */
.woocommerce ul.products li.product.pt-shopcell {
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	background: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	transform: none !important;
	display: flex;
}
.woocommerce ul.products li.product.pt-shopcell::before,
.woocommerce ul.products li.product.pt-shopcell::after { content: none !important; }
.woocommerce ul.products li.product.pt-shopcell .pt-pcard { width: 100%; height: 100%; }
.woocommerce ul.products { align-items: stretch !important; }
.woocommerce ul.products li.product.pt-shopcell { display: flex; align-items: stretch; height: 100%; align-self: stretch; }
@media (max-width: 1080px) { .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 800px)  { .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 14px; } }
@media (max-width: 420px)  { .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: 1fr; } }

/* Franja de confianza sobre la grilla. */
/* Ocultamos la banda de título vacía de Blocksy en tienda y categorías
   (renderizamos nuestro propio hero de colección). */
body.tax-product_cat .hero-section,
body.tax-product_tag .hero-section,
body.post-type-archive-product .hero-section { display: none !important; }

/* ===== Encabezado de colección + tiles de categoría (estilo Easy / Play Plaza) ===== */
.pt-colcrumbs { display: flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 600; color: var(--pt-ink-3, #a595a1); flex-wrap: wrap; }
.pt-colcrumbs a { color: var(--pt-ink-soft); text-decoration: none; }
.pt-colcrumbs a:hover { color: var(--pt-brand-600); }
.pt-colcrumbs svg { width: 12px; height: 12px; opacity: .5; }
.pt-colcrumbs span { color: var(--pt-ink); }

/* Encabezado limpio retail (categorías sin banner). */
.pt-colhead { margin: 4px 0 18px; }
.pt-colhead__top { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-top: 12px; }
.pt-colhead__title { margin: 0; font-size: clamp(1.7rem, 3.6vw, 2.4rem); font-weight: 900; letter-spacing: -.02em; color: var(--pt-ink); }
.pt-colhead__count { font-size: .85rem; font-weight: 700; color: var(--pt-ink-soft); }
.pt-colhead__desc { margin: 10px 0 0; max-width: 72ch; font-size: clamp(.95rem, 1.3vw, 1.05rem); color: var(--pt-ink-soft); }

/* Banner de imagen (estilo Play Plaza, mejorado): imagen + velo + título encima. */
.pt-colban { position: relative; margin: 0 0 16px; border-radius: 16px; overflow: hidden; min-height: clamp(130px, 16vw, 220px); display: flex; align-items: flex-end; background: var(--ban) center/cover no-repeat, linear-gradient(120deg, var(--pt-plum), var(--pt-teal-600)); }

/* Banner de categoría/tienda pegado al menú: sin el espacio superior de Blocksy. */
body.post-type-archive-product #main, body.tax-product_cat #main,
body.post-type-archive-product #main > .ct-container, body.tax-product_cat #main > .ct-container { padding-top: 0 !important; }
.pt-colban::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,10,16,.82) 0%, rgba(20,10,16,.5) 45%, rgba(20,10,16,.12) 100%); }
.pt-colban__inner { position: relative; z-index: 1; padding: clamp(16px, 3vw, 30px); max-width: 62ch; color: #fff; }
.pt-colban .pt-colcrumbs, .pt-colban .pt-colcrumbs a, .pt-colban .pt-colcrumbs span { color: rgba(255,255,255,.85); }
.pt-colban .pt-colcrumbs a:hover { color: #fff; }
.pt-colban__title { margin: 7px 0 0; font-size: clamp(1.25rem, 2.5vw, 1.7rem); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.35); }
.pt-colban__desc { margin: 6px 0 0; max-width: 52ch; color: rgba(255,255,255,.92); font-size: clamp(.8rem, 1vw, .92rem); line-height: 1.4; }
.pt-colban__meta { display: flex; flex-wrap: wrap; gap: 8px 10px; margin-top: 18px; }
.pt-colban__meta span { font-size: .78rem; font-weight: 800; color: #fff; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28); padding: 6px 13px; border-radius: 999px; }

/* Layout de tienda con filtros en sidebar izquierdo (estilo Easy). */
.pt-shoplayout { display: grid; grid-template-columns: 208px minmax(0, 1fr); gap: 24px; align-items: start; }
.pt-shopcol { min-width: 0; }
.pt-side { background: #fff; border: 1px solid var(--pt-line); border-radius: 16px; box-shadow: var(--pt-shadow); position: sticky; top: 90px; overflow: hidden; }
.pt-side__head { list-style: none; display: flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 600; color: var(--pt-ink); padding: 11px 14px; cursor: pointer; }
.pt-side__head::-webkit-details-marker { display: none; }
.pt-side__head svg { width: 16px; height: 16px; color: var(--pt-brand); }
.pt-side__body { padding: 0; }
.pt-side__group { padding: 10px 14px 12px; border-top: 1px solid var(--pt-line); }
.pt-side__title { margin: 0 0 6px; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--pt-ink-soft); }
.pt-side__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1px; }
.pt-side__opt { display: flex; align-items: center; gap: 9px; padding: 6px 8px; border-radius: 9px; font-size: .84rem; font-weight: 400; color: var(--pt-ink); text-decoration: none; transition: background .12s ease, color .12s ease; }
.pt-side__opt:hover { background: var(--pt-bg-soft, #faf5f8); color: var(--pt-brand-600); }
.pt-side__box { width: 16px; height: 16px; flex: 0 0 auto; border: 1.5px solid var(--pt-line); border-radius: 5px; position: relative; transition: border-color .12s ease, background .12s ease; }
.pt-side__opt.is-on { color: var(--pt-brand-600); font-weight: 600; }
.pt-side__opt.is-on .pt-side__box { background: var(--pt-brand); border-color: var(--pt-brand); }
.pt-side__opt.is-on .pt-side__box::after { content: ""; position: absolute; left: 4px; top: 1px; width: 4px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.pt-side__clear { display: inline-block; margin: 4px 14px 12px; font-size: .8rem; font-weight: 400; color: var(--pt-ink-soft); text-decoration: underline; }
.pt-side__clear:hover { color: var(--pt-brand-600); text-decoration: underline; }
@media (max-width: 860px) {
	.pt-shoplayout { grid-template-columns: 1fr; gap: 16px; }
	.pt-side { position: static; }
	.pt-side:not([open]) .pt-side__head { border-bottom: 0; }
}

/* Tiles de categoría circulares — estilo historias destacadas de Instagram
   (anillo de degradado de marca + imagen recortada a cuadrado/círculo). */
.pt-etiles { position: relative; z-index: 3; display: flex; flex-wrap: nowrap; gap: 16px; padding: 12px 2px 10px; margin: 0 0 20px; overflow-x: auto; scroll-snap-type: x proximity; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
.pt-etiles::-webkit-scrollbar { display: none; }
.pt-etile { scroll-snap-align: start; position: relative; z-index: 1; }
.pt-etile:hover { z-index: 6; }
.pt-etile { flex: 0 0 auto; width: 74px; display: flex; flex-direction: column; align-items: center; gap: 7px; text-decoration: none; }
.pt-etile__name { font-size: .7rem; font-weight: 400; }
.pt-etile__im { position: relative; width: 100%; height: 0; padding-bottom: 100%; border-radius: 50%; overflow: hidden; background: var(--pt-bg-soft); border: 1px solid var(--pt-line); box-shadow: var(--pt-shadow); transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
.pt-etile__im img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: inherit; object-fit: cover; object-position: center; display: block; }
.pt-etile__name { font-size: .7rem; font-weight: 400; color: var(--pt-ink); text-align: center; line-height: 1.2; }
.pt-etile:hover .pt-etile__im { transform: translateY(-4px); box-shadow: var(--pt-shadow-lg); border-color: var(--pt-brand); }
.pt-etile:hover .pt-etile__name { color: var(--pt-brand-600); }
.pt-etile.is-active .pt-etile__im { border-color: var(--pt-brand); box-shadow: 0 0 0 2px var(--pt-brand-50), var(--pt-shadow); }
.pt-etile.is-active .pt-etile__name { color: var(--pt-brand-600); }
/* Tile "Ver todo": tarjeta simple de marca con ícono centrado. */
/* "Ver todo": solo el ícono centrado, sin caja ni borde. */
.pt-etile--all .pt-etile__im { border-radius: 0; background: none; border: none; box-shadow: none; color: var(--pt-brand); }
.pt-etile--all .pt-etile__im svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 34px; height: 34px; }
.pt-etile--all:hover .pt-etile__im { transform: translateY(-4px); box-shadow: none; }
@media (max-width: 560px) {
	.pt-etiles { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 10px; }
	.pt-etile { width: 100px; }
}

.pt-shopstrip {
	list-style: none; margin: 0 0 20px; padding: 14px 18px;
	display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center;
	background: #fff; border: 1px solid var(--pt-line); border-radius: 14px; box-shadow: var(--pt-shadow);
}
.pt-shopstrip li { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 700; color: var(--pt-ink); }
.pt-shopstrip__ic { display: inline-flex; color: var(--pt-teal-600); }
.pt-shopstrip__ic svg { width: 20px; height: 20px; }

/* Barra de herramientas: conteo de resultados + orden (dropdown moderno). */
.woocommerce .woo-listing-top,
.woocommerce-page .woo-listing-top {
	display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
	margin: 0 0 20px; padding: 12px 16px;
	background: #fff; border: 1px solid var(--pt-line); border-radius: 14px; box-shadow: var(--pt-shadow);
}
.woocommerce .woocommerce-result-count {
	margin: 0 !important; padding: 0; float: none; color: var(--pt-ink-soft); font-weight: 600; font-size: 14px;
}
.woocommerce .woocommerce-ordering { margin: 0 !important; float: none; }
.woocommerce .woocommerce-ordering select.orderby {
	appearance: none; -webkit-appearance: none;
	background: #fff url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b5a63' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
	border: 1.5px solid var(--pt-line); border-radius: 11px;
	padding: 10px 40px 10px 15px; font-weight: 700; font-size: 14px; color: var(--pt-ink);
	cursor: pointer; max-width: 100%; line-height: 1.2;
}
.woocommerce .woocommerce-ordering select.orderby:focus { outline: none; border-color: var(--pt-brand); box-shadow: 0 0 0 3px rgba(229,48,95,.14); }

/* Paginación. */
.woocommerce nav.woocommerce-pagination ul { border: 0; display: flex; gap: 8px; justify-content: center; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; margin: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	min-width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
	border-radius: 11px; border: 1.5px solid var(--pt-line); background: #fff; color: var(--pt-ink);
	font-weight: 700; padding: 0 12px; transition: border-color .15s, color .15s, background .15s;
}
.woocommerce nav.woocommerce-pagination ul li a:hover { border-color: var(--pt-brand); color: var(--pt-brand-600); background: #fff; }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--pt-brand); border-color: var(--pt-brand); color: #fff; }

/* ============================================================ Página Contacto */
.pt-contact { padding: clamp(32px, 6vw, 68px) var(--pt-gap); }
.pt-contact__inner { max-width: 980px; margin: 0 auto; }
.pt-contact__head { text-align: center; max-width: 680px; margin: 0 auto clamp(28px, 4vw, 44px); }
.pt-contact__eyebrow { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--pt-brand); background: var(--pt-brand-50); padding: 6px 13px; border-radius: 999px; margin-bottom: 14px; }
.pt-contact__title { font-size: clamp(28px, 5vw, 44px); line-height: 1.1; color: var(--pt-ink); margin: 0 0 12px; }
.pt-contact__intro { font-size: clamp(15px, 2vw, 17px); line-height: 1.6; color: var(--pt-ink-soft); }
.pt-contact__intro p { margin: 0 0 10px; }

.pt-contact__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 640px) { .pt-contact__grid { grid-template-columns: 1fr; } }
.pt-ccard { display: flex; align-items: center; gap: 15px; padding: 18px 20px; border: 1px solid var(--pt-line, #eee); border-radius: var(--pt-radius); background: var(--pt-bg); box-shadow: var(--pt-shadow); text-decoration: none; transition: transform .15s, box-shadow .15s, border-color .15s; }
.pt-ccard:hover { transform: translateY(-2px); box-shadow: var(--pt-shadow-lg); border-color: var(--pt-brand); }
.pt-ccard__ic { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--pt-brand-50); color: var(--pt-brand); }
.pt-ccard__ic svg { width: 24px; height: 24px; }
.pt-ccard--wha .pt-ccard__ic { background: #e7f8ee; color: #1fab55; }
.pt-ccard__tx { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.pt-ccard__tx b { font-size: 16px; color: var(--pt-ink); }
.pt-ccard__tx small { font-size: 13.5px; color: var(--pt-ink-soft); overflow: hidden; text-overflow: ellipsis; }
.pt-ccard__go { flex: 0 0 auto; font-size: 20px; color: var(--pt-ink-3); transition: transform .15s, color .15s; }
.pt-ccard:hover .pt-ccard__go { color: var(--pt-brand); transform: translateX(3px); }

.pt-contact__form-wrap { margin-top: clamp(26px, 4vw, 40px); background: var(--pt-bg-soft); border: 1px solid var(--pt-line, #eee); border-radius: 18px; padding: clamp(22px, 4vw, 34px); }
.pt-contact__formtitle { font-size: 22px; color: var(--pt-ink); margin: 0 0 4px; }
.pt-contact__formsub { font-size: 14px; color: var(--pt-ink-soft); margin: 0 0 18px; }
.pt-cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .pt-cform__row { grid-template-columns: 1fr; } }
.pt-cform__field { display: block; margin-bottom: 14px; }
.pt-cform__field span { display: block; font-size: 13.5px; font-weight: 600; color: var(--pt-ink); margin-bottom: 6px; }
.pt-cform__field input, .pt-cform__field textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--pt-line, #e6dfe4); border-radius: 11px; background: var(--pt-bg); color: var(--pt-ink); font-size: 15px; font-family: inherit; transition: border-color .15s, box-shadow .15s; }
.pt-cform__field input:focus, .pt-cform__field textarea:focus { outline: none; border-color: var(--pt-brand); box-shadow: 0 0 0 3px var(--pt-brand-50); }
.pt-cform__field textarea { resize: vertical; min-height: 110px; }
.pt-cform__submit { margin-top: 4px; }
.pt-contact__empty { margin-top: 24px; padding: 18px 20px; border: 1px dashed var(--pt-line, #ddd); border-radius: 14px; background: var(--pt-bg-soft); color: var(--pt-ink-soft); font-size: 14.5px; text-align: center; }

/* ============================================================ Categorías: tarjetas de portada */
.pt-ccat { flex: 0 0 clamp(150px, 15.5%, 194px); scroll-snap-align: start; position: relative; display: block; border-radius: 18px; overflow: hidden; text-decoration: none; box-shadow: var(--pt-shadow); aspect-ratio: 3 / 4; isolation: isolate; transition: transform .18s cubic-bezier(.2,.7,.2,1), box-shadow .18s; }
.pt-ccat:hover { transform: translateY(-4px); box-shadow: var(--pt-shadow-lg); }
.pt-ccat__im { position: absolute; inset: 0; background: var(--pt-bg-soft) center/cover no-repeat; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.pt-ccat:hover .pt-ccat__im { transform: scale(1.07); }
.pt-ccat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,8,14,.82) 0%, rgba(18,8,14,.26) 44%, rgba(18,8,14,0) 70%); }
.pt-ccat__tx { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 14px 13px; }
.pt-ccat__tx b { display: block; color: #fff; font-size: .98rem; font-weight: 800; line-height: 1.16; letter-spacing: -.01em; text-shadow: 0 2px 14px rgba(0,0,0,.45); }
.pt-ccat__tx span { display: inline-block; margin-top: 6px; font-size: .68rem; font-weight: 700; color: #fff; background: rgba(255,255,255,.2); backdrop-filter: blur(4px); padding: 3px 9px; border-radius: 999px; }
@media (max-width: 1000px) { .pt-ccat { flex-basis: calc((100% - 3 * 22px) / 4); } }
@media (max-width: 560px)  { .pt-cats { gap: 14px; } .pt-ccat { flex-basis: calc((100% - 1 * 14px) / 2.3); } }

/* ============================================================ Catálogo AJAX: filtros + barra + estados */
.pt-side__search { position: relative; display: flex; align-items: center; }
.pt-side__search svg { position: absolute; left: 12px; width: 17px; height: 17px; color: var(--pt-ink-3); pointer-events: none; }
.pt-side__search input { width: 100%; padding: 8px 10px 8px 32px; border: 1px solid var(--pt-line, #e6dfe4); border-radius: 9px; font-size: 13px; background: var(--pt-bg); color: var(--pt-ink); }
.pt-side__search input:focus { outline: none; border-color: var(--pt-brand); box-shadow: 0 0 0 3px var(--pt-brand-50); }
.pt-side__search svg { width: 15px; height: 15px; left: 10px; }
.pt-side__list--cats { max-height: 220px; overflow-y: auto; }
.pt-side__list--cats i { color: var(--pt-ink-3); font-style: normal; font-size: .85em; }
.pt-side__pricebox { display: flex; align-items: center; gap: 6px; margin-top: 10px; }
.pt-side__pricebox input { width: 100%; min-width: 0; padding: 8px 10px; border: 1.5px solid var(--pt-line, #e6dfe4); border-radius: 9px; font-size: 13px; background: var(--pt-bg); color: var(--pt-ink); }
.pt-side__pricebox span { color: var(--pt-ink-3); }
.pt-side__go { flex: none; width: 34px; height: 34px; border-radius: 9px; border: none; background: var(--pt-brand); color: #fff; font-size: 16px; cursor: pointer; transition: background .15s; }
.pt-side__go:hover { background: var(--pt-brand-600); }

.pt-shoptool { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin: 0 0 18px; padding-bottom: 14px; border-bottom: 1px solid var(--pt-line, #eee); }
.pt-shoptool__count { font-size: 14px; font-weight: 700; color: var(--pt-ink); }
.pt-shoptool__sort { font-size: 13px; color: var(--pt-ink-soft); display: inline-flex; align-items: center; gap: 8px; }
.pt-shoptool__sort select { padding: 8px 30px 8px 12px; border: 1.5px solid var(--pt-line, #e6dfe4); border-radius: 10px; font-size: 13.5px; font-weight: 600; background: var(--pt-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b5f6b' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center; color: var(--pt-ink); cursor: pointer; -webkit-appearance: none; appearance: none; }
.pt-shoptool__sort select:focus { outline: none; border-color: var(--pt-brand); }

ul.products.is-loading { position: relative; opacity: .45; pointer-events: none; transition: opacity .15s; }
ul.products.is-loading::after { content: ""; position: absolute; top: 60px; left: 50%; width: 34px; height: 34px; margin-left: -17px; border: 3px solid var(--pt-brand-50); border-top-color: var(--pt-brand); border-radius: 50%; animation: pt-spin .7s linear infinite; }
@keyframes pt-spin { to { transform: rotate(360deg); } }
.pt-shopempty { grid-column: 1 / -1; list-style: none; text-align: center; padding: 48px 20px; color: var(--pt-ink-soft); font-size: 15px; background: var(--pt-bg-soft); border-radius: 16px; }
@media (prefers-reduced-motion: reduce) { ul.products.is-loading::after { animation: none; } .pt-ccat__im, .pt-ccat { transition: none; } }

/* Subcategorías como tarjetas de color/foto en carrusel (Explora dentro de X) */
.pt-subcards { display: flex; flex-wrap: nowrap; gap: 14px; overflow-x: auto; padding: 2px 2px 8px; scroll-snap-type: x proximity; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
.pt-subcards::-webkit-scrollbar { display: none; }
.pt-subcard { flex: 0 0 clamp(130px, 16%, 165px); scroll-snap-align: start; position: relative; height: 78px; border-radius: 13px; overflow: hidden; background-position: center; background-size: cover; background-repeat: no-repeat; box-shadow: var(--pt-shadow); display: flex; align-items: flex-end; text-decoration: none; isolation: isolate; transition: transform .16s ease, box-shadow .16s ease; }
.pt-subcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,8,14,.55), transparent 62%); }
.pt-subcard--photo::after { background: linear-gradient(to top, rgba(18,8,14,.8), rgba(18,8,14,.15) 58%, transparent 80%); }
.pt-subcard__tx { position: relative; z-index: 1; padding: 9px 11px; }
.pt-subcard__tx b { display: block; color: #fff; font-size: .84rem; font-weight: 800; line-height: 1.12; letter-spacing: -.01em; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.pt-subcard__tx span { display: inline-block; margin-top: 3px; font-size: .62rem; font-weight: 700; color: #fff; background: rgba(255,255,255,.22); backdrop-filter: blur(4px); padding: 1px 7px; border-radius: 999px; }
.pt-subcard:hover { transform: translateY(-4px); box-shadow: var(--pt-shadow-lg); }
@media (max-width: 560px) { .pt-subcard { flex-basis: clamp(140px, 46%, 170px); } }

/* Columna izquierda: filtros + imagen publicitaria (gestionable desde la intranet) */
.pt-sidewrap { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 16px; align-self: start; }
.pt-sidewrap .pt-side { position: static; top: auto; }
.pt-side__promo { border-radius: 16px; overflow: hidden; box-shadow: var(--pt-shadow); line-height: 0; }
.pt-side__promo a, .pt-side__promo img { display: block; width: 100%; height: auto; }
.pt-side__promo:hover { box-shadow: var(--pt-shadow-lg); }
@media (max-width: 900px) { .pt-sidewrap { position: static; } }

/* Categorías del filtro como desplegable (acordeón) */
.pt-side__acctitle { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 8px; cursor: pointer; margin: 0 0 6px; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--pt-ink-soft); }
.pt-side__acctitle::-webkit-details-marker { display: none; }
.pt-side__acctitle b { text-transform: none; letter-spacing: 0; color: var(--pt-brand-600); font-weight: 600; }
.pt-side__chev { width: 15px; height: 15px; transition: transform .2s ease; flex: none; }
.pt-side__acc[open] .pt-side__chev { transform: rotate(180deg); }

/* Trigger + popup de subcategorías (Explora dentro de X) */
.pt-subtrigger { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border: 1px solid var(--pt-line); border-radius: 12px; background: #fff; color: var(--pt-ink); font-size: .92rem; font-weight: 600; cursor: pointer; box-shadow: var(--pt-shadow); transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.pt-subtrigger:hover { border-color: var(--pt-brand); box-shadow: var(--pt-shadow-lg); transform: translateY(-1px); }
.pt-subtrigger > svg { width: 18px; height: 18px; color: var(--pt-brand); flex: none; }
.pt-subtrigger em { font-style: normal; font-size: .7rem; font-weight: 700; color: #fff; background: var(--pt-brand); padding: 2px 8px; border-radius: 999px; }
.pt-subtrigger__chev { width: 15px; height: 15px; color: var(--pt-ink-3); }

.pt-subpop { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.pt-subpop[hidden] { display: none; }
.pt-subpop__ov { position: absolute; inset: 0; background: rgba(20,10,16,.55); backdrop-filter: blur(2px); }
.pt-subpop__box { position: relative; z-index: 1; width: 100%; max-width: 720px; max-height: 84vh; overflow-y: auto; background: #fff; border-radius: 18px; box-shadow: var(--pt-shadow-lg); padding: 20px 22px 24px; animation: ptSubPop .2s ease; }
@keyframes ptSubPop { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
.pt-subpop__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.pt-subpop__head h3 { margin: 0; font-size: 1.12rem; font-weight: 800; color: var(--pt-ink); }
.pt-subpop__x { border: 0; background: var(--pt-bg-soft); width: 34px; height: 34px; border-radius: 50%; font-size: 22px; line-height: 1; color: var(--pt-ink-soft); cursor: pointer; flex: none; }
.pt-subpop__x:hover { background: var(--pt-brand-50); color: var(--pt-brand-600); }
.pt-subcards--grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; overflow: visible; padding: 0; }
.pt-subcards--grid .pt-subcard { flex: none; width: auto; height: 96px; }
@media (max-width: 560px) { .pt-subcards--grid { grid-template-columns: 1fr 1fr; } .pt-subpop__box { padding: 16px; } }
@media (prefers-reduced-motion: reduce) { .pt-subpop__box { animation: none; } }

/* Optimización tipográfica (ecommerce): quitar "IVA incluido" en toda la web + menos negrita. */
.woocommerce-price-suffix { display: none !important; }
.pt-pcard__price small, .price .woocommerce-price-suffix { display: none !important; }
.pt-colhead__title { font-weight: 700; }
.pt-cartpop__title { font-weight: 700; }

/* Fila de confianza compacta al tope del footer (garantías, sin robar espacio en la tienda). */
.pt-foottrust { max-width: var(--pt-maxw); margin: 0 auto; list-style: none; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 30px; padding: 15px clamp(16px, 3vw, 28px); border-bottom: 1px solid rgba(255,255,255,.1); }
.pt-foottrust li { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.82); }
.pt-foottrust__ic { display: inline-flex; flex: none; }
.pt-foottrust__ic svg { width: 17px; height: 17px; color: var(--pt-yellow, #e8d828); }
@media (max-width: 600px) { .pt-foottrust { gap: 9px 16px; padding: 12px 14px; } .pt-foottrust li { font-size: 11.5px; gap: 6px; } .pt-foottrust__ic svg { width: 15px; height: 15px; } }

/* Botón de la tarjeta: mismo estilo outlined también en la tienda (que WooCommerce/Blocksy no lo pise). */
.woocommerce ul.products li.product .pt-pcard__add,
.woocommerce ul.products li.product a.pt-pcard__add { background: #fff; color: var(--pt-ink); border: 1.5px solid var(--pt-line); box-shadow: none; text-transform: none; letter-spacing: normal; font-weight: 600; }
.woocommerce ul.products li.product .pt-pcard__add:hover,
.woocommerce ul.products li.product a.pt-pcard__add:hover { background: var(--pt-ink); border-color: var(--pt-ink); color: #fff; }

/* Oculta el contenedor de listado de Blocksy (contador/orden por defecto) que quedó
   vacío: usamos nuestra propia barra .pt-shoptool. */
.woocommerce-page .woo-listing-top, .post-type-archive-product .woo-listing-top, .tax-product_cat .woo-listing-top { display: none !important; }
