/* =========================================================
   LabDeCiencias — Home rápida 2026
   Sin Elementor. CSS propio, scopeado bajo .ldc.
   ========================================================= */

:root {
	--ldc-ink:    #1B1A33;
	--ldc-indigo: #2E2B6B;
	--ldc-plum:   #4A0B52;
	--ldc-amber:  #FFC220;
	--ldc-amber-d:#E5A800;
	--ldc-muted:  #6B6A85;
	--ldc-line:   #E6E6EF;
	--ldc-alt:    #F7F7FB;
	--ldc-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--ldc-wrap:   1220px;
	--ldc-r:      10px;
	--ldc-ease:   cubic-bezier(.22,.61,.36,1);
}

body.ldc-page { margin: 0; background: #fff; }

.ldc, .ldc * { box-sizing: border-box; }

.ldc {
	font-family: var(--ldc-sans);
	color: var(--ldc-ink);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
.ldc h1, .ldc h2, .ldc h3, .ldc p, .ldc form { margin: 0; padding: 0; }
.ldc img { max-width: 100%; height: auto; display: block; }
.ldc a { color: inherit; text-decoration: none; }
.ldc a:focus-visible, .ldc button:focus-visible, .ldc input:focus-visible {
	outline: 2px solid var(--ldc-indigo);
	outline-offset: 2px;
}
.ldc-skip { position: absolute; left: -9999px; }
.ldc-skip:focus { left: 8px; top: 8px; background: var(--ldc-ink); color: #fff; padding: 10px 16px; z-index: 99; }

.ldc-wrap { width: 100%; max-width: var(--ldc-wrap); margin-inline: auto; padding-inline: 24px; }

/* ---------- Tipografía ---------- */
.ldc-h1 {
	font-size: clamp(2.1rem, 4.2vw, 3.35rem);
	line-height: 1.06;
	letter-spacing: -0.032em;
	font-weight: 800;
	color: var(--ldc-indigo);
}
.ldc-h2 {
	font-size: clamp(1.45rem, 2.4vw, 2rem);
	line-height: 1.15;
	letter-spacing: -0.026em;
	font-weight: 800;
	color: var(--ldc-indigo);
}
.ldc-h2--light { color: #fff; }
.ldc-kicker {
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--ldc-amber-d);
	margin-bottom: 14px;
}
.ldc-lead {
	font-size: clamp(1rem, 1.3vw, 1.1rem);
	line-height: 1.6;
	color: var(--ldc-muted);
	max-width: 32em;
	margin-top: 18px;
}

/* ---------- Botones ---------- */
.ldc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: .98rem;
	font-weight: 700;
	padding: 14px 26px;
	border-radius: var(--ldc-r);
	border: 2px solid transparent;
	transition: background-color .18s var(--ldc-ease), border-color .18s var(--ldc-ease),
	            color .18s var(--ldc-ease), transform .18s var(--ldc-ease);
	cursor: pointer;
	white-space: nowrap;
}
.ldc .ldc-btn--amber { background: var(--ldc-amber); color: var(--ldc-ink); }
.ldc .ldc-btn--amber:hover { background: var(--ldc-amber-d); transform: translateY(-1px); }
.ldc .ldc-btn--ghost { background: #fff; color: var(--ldc-indigo); border-color: var(--ldc-line); }
.ldc .ldc-btn--ghost:hover { border-color: var(--ldc-indigo); transform: translateY(-1px); }

/* ---------- Header (dos filas: marca + menú) ---------- */
.ldc-header {
	position: sticky; top: 0; z-index: 50;
	background: #fff;
	border-bottom: 1px solid var(--ldc-line);
}
.ldc-header__top { border-bottom: 1px solid var(--ldc-line-soft, #F0F0F5); }
.ldc-header__in { display: flex; align-items: center; gap: 22px; min-height: 74px; }
.ldc .ldc-logo img { width: 190px; height: auto; }

.ldc-search { flex: 1; max-width: 480px; position: relative; }
.ldc-search form { position: relative; display: flex; width: 100%; }
.ldc-search input[type="search"] {
	width: 100%;
	font: inherit;
	font-size: .95rem;
	padding: 11px 46px 11px 16px;
	border: 1px solid var(--ldc-line);
	border-radius: var(--ldc-r);
	background: var(--ldc-alt);
	color: var(--ldc-ink);
}
.ldc-search input[type="search"]::placeholder { color: #9A99AE; }
.ldc-search button {
	position: absolute; right: 4px; top: 4px; bottom: 4px;
	width: 38px;
	border: 0; border-radius: 8px;
	background: var(--ldc-amber);
	color: var(--ldc-ink);
	cursor: pointer;
	display: grid; place-items: center;
}
.ldc-search svg { width: 18px; height: 18px; }

.ldc-cart {
	position: relative; display: grid; place-items: center;
	width: 42px; height: 42px; margin-left: auto;
	border-radius: var(--ldc-r); border: 1px solid var(--ldc-line);
}
.ldc-cart svg { width: 21px; height: 21px; }
.ldc-cart__n {
	position: absolute; top: -6px; right: -6px;
	min-width: 19px; height: 19px;
	border-radius: 999px;
	background: var(--ldc-amber);
	color: var(--ldc-ink);
	font-size: .72rem; font-weight: 800;
	display: grid; place-items: center;
	padding-inline: 5px;
}

/* Menú de categorías */
.ldc-menu__list {
	display: flex; flex-wrap: wrap; align-items: center;
	list-style: none; margin: 0; padding: 0;
	gap: 2px;
}
.ldc-menu__item { position: relative; }
.ldc-menu__item > a,
.ldc-menu__item > button {
	display: inline-flex; align-items: center; gap: 6px;
	font: inherit; font-size: .94rem; font-weight: 600;
	color: var(--ldc-ink);
	padding: 14px 14px;
	background: none; border: 0; cursor: pointer;
	border-bottom: 2px solid transparent;
}
.ldc-menu__item > a:hover,
.ldc-menu__item > button:hover,
.ldc-menu__item:focus-within > a,
.ldc-menu__item:focus-within > button {
	color: var(--ldc-indigo);
	border-bottom-color: var(--ldc-amber);
}
.ldc-menu__item.has-sub > a::after,
.ldc-menu__item.has-sub > button::after {
	content: '';
	width: 7px; height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	opacity: .55;
}
.ldc-menu__abrir { display: none; }

.ldc-menu__sub {
	position: absolute; top: 100%; left: 0;
	min-width: 232px;
	list-style: none; margin: 0; padding: 6px;
	background: #fff;
	border: 1px solid var(--ldc-line);
	border-radius: 12px;
	box-shadow: 0 18px 40px -20px rgba(27,26,51,.45);
	opacity: 0; visibility: hidden; transform: translateY(-4px);
	transition: opacity .16s var(--ldc-ease), transform .16s var(--ldc-ease), visibility .16s;
	z-index: 60;
}
.ldc-menu__item:hover > .ldc-menu__sub,
.ldc-menu__item:focus-within > .ldc-menu__sub {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.ldc .ldc-menu__sub a {
	display: block;
	padding: 10px 12px;
	border-radius: 8px;
	font-size: .92rem;
	color: var(--ldc-ink);
}
.ldc .ldc-menu__sub a:hover { background: var(--ldc-alt); color: var(--ldc-indigo); }

/* Botón hamburguesa */
.ldc-burger {
	display: none;
	background: none;
	border: 1px solid var(--ldc-line);
	border-radius: var(--ldc-r);
	width: 42px; height: 42px;
	padding: 0;
	flex-direction: column; align-items: center; justify-content: center; gap: 4px;
	cursor: pointer;
}
.ldc-burger span { display: block; width: 17px; height: 2px; background: var(--ldc-ink); transition: transform .22s var(--ldc-ease), opacity .18s var(--ldc-ease); }
.ldc-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ldc-burger.is-open span:nth-child(2) { opacity: 0; }
.ldc-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Menú móvil */
.ldc-mobile { display: none; flex-direction: column; padding: 8px 24px 20px; border-top: 1px solid var(--ldc-line); max-height: 74vh; overflow-y: auto; }
@media (max-width: 980px) { .ldc-mobile:not([hidden]) { display: flex; } }
.ldc .ldc-mobile__top {
	padding: 13px 0; font-weight: 700; font-size: .98rem;
	color: var(--ldc-ink); border-bottom: 1px solid var(--ldc-line);
}
.ldc-mobile__grupo {
	margin: 14px 0 2px; font-size: .78rem; font-weight: 700;
	letter-spacing: .06em; text-transform: uppercase; color: var(--ldc-muted);
}
.ldc .ldc-mobile__sub {
	padding: 11px 0 11px 14px; font-size: .95rem;
	color: var(--ldc-muted); border-bottom: 1px solid var(--ldc-line);
}
.ldc .ldc-mobile__sub:hover, .ldc .ldc-mobile__top:hover { color: var(--ldc-indigo); }

/* ---------- Hero ---------- */
.ldc-hero { padding-block: clamp(40px, 5.5vw, 76px); }
.ldc-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
}
.ldc-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.ldc-hero__media img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: 14px;
}

/* ---------- Secciones ---------- */
.ldc-sec { padding-block: clamp(46px, 5.5vw, 72px); }
.ldc-sec--alt { background: var(--ldc-alt); border-block: 1px solid var(--ldc-line); }
.ldc-sechead {
	display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
	margin-bottom: clamp(24px, 3vw, 34px);
}
.ldc-more { font-weight: 700; font-size: .95rem; color: var(--ldc-indigo); white-space: nowrap; }
.ldc-more:hover { text-decoration: underline; }

/* ---------- Categorías ---------- */
.ldc-cats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.ldc-cat {
	display: flex; align-items: center; gap: 14px;
	padding: 12px 16px 12px 12px;
	border: 1px solid var(--ldc-line);
	border-radius: var(--ldc-r);
	background: #fff;
	transition: border-color .18s var(--ldc-ease), transform .18s var(--ldc-ease), box-shadow .18s var(--ldc-ease);
}
.ldc-cat:hover {
	border-color: var(--ldc-indigo);
	transform: translateY(-2px);
	box-shadow: 0 12px 26px -18px rgba(27,26,51,.5);
}
.ldc-cat__img {
	flex: none;
	width: 56px; height: 56px;
	border-radius: 8px;
	background: var(--ldc-alt);
	overflow: hidden;
	display: grid; place-items: center;
}
.ldc .ldc-cat__img img { width: 100%; height: 100%; object-fit: cover; }
.ldc-cat__txt { display: flex; flex-direction: column; min-width: 0; }
.ldc-cat__name { font-weight: 700; font-size: .97rem; line-height: 1.25; }
.ldc-cat__n { font-size: .82rem; color: var(--ldc-muted); margin-top: 2px; }

/* ---------- Productos ---------- */
.ldc-prods {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.ldc-prod {
	display: flex; flex-direction: column;
	background: #fff;
	border: 1px solid var(--ldc-line);
	border-radius: var(--ldc-r);
	padding: 14px;
	transition: border-color .18s var(--ldc-ease), transform .18s var(--ldc-ease), box-shadow .18s var(--ldc-ease);
}
.ldc-prod:hover {
	border-color: var(--ldc-indigo);
	transform: translateY(-3px);
	box-shadow: 0 16px 32px -22px rgba(27,26,51,.55);
}
.ldc-prod__img {
	display: block;
	background: var(--ldc-alt);
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 12px;
}
.ldc .ldc-prod__img img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.ldc-prod__name {
	font-size: .93rem; font-weight: 600; line-height: 1.35;
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.ldc-prod__price {
	margin-top: auto; padding-top: 10px;
	font-weight: 800; color: var(--ldc-indigo); font-size: 1rem;
}
.ldc-prod__price del { color: var(--ldc-muted); font-weight: 500; margin-right: 6px; }

/* Los productos sin precio público devuelven su propio CTA ("Descúbrelo aquí")
   desde el mu-plugin de la tienda: se muestra como enlace discreto, no como bloque. */
.ldc .ldc-prod__price .labdc-bioclass-discover-btn {
	display: inline-flex;
	align-items: center;
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	width: auto;
	min-height: 0;
	color: var(--ldc-indigo);
	font: inherit;
	font-weight: 700;
	font-size: .95rem;
	box-shadow: none;
	text-align: left;
}
.ldc .ldc-prod__price .labdc-bioclass-discover-btn:hover { text-decoration: underline; }
.ldc .ldc-prod__price .labdc-bioclass-discover-btn span { background: none; color: inherit; font: inherit; padding: 0; }

/* ---------- Cotizador ---------- */
.ldc-quote {
	background: var(--ldc-indigo);
	border-radius: 16px;
	padding: clamp(28px, 4vw, 46px);
	display: flex; align-items: center; justify-content: space-between;
	gap: 28px; flex-wrap: wrap;
}
.ldc-quote p { color: #C9C7E8; margin-top: 10px; max-width: 42em; }

/* ---------- Footer ---------- */
.ldc-footer { background: var(--ldc-ink); color: #B9B8CC; padding-top: clamp(40px, 5vw, 60px); }
.ldc-footer__grid {
	display: grid; grid-template-columns: 1.7fr 1fr 1.2fr 1fr;
	gap: 32px; padding-bottom: 38px;
}
.ldc .ldc-footer__logo { width: 172px; height: auto; filter: brightness(0) invert(1); opacity: .9; }
.ldc-footer__grid p { font-size: .92rem; margin-top: 14px; color: #8F8EA6; }
.ldc-footer__t { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.ldc-footer__col { display: flex; flex-direction: column; gap: 9px; }
.ldc-footer__col a { font-size: .93rem; width: fit-content; }
.ldc-footer__col a:hover { color: #fff; }
.ldc-footer__bar { border-top: 1px solid rgba(255,255,255,.12); padding-block: 20px; }
.ldc-footer__bar p { font-size: .85rem; color: #77768C; margin: 0; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1050px) {
	.ldc-cats  { grid-template-columns: repeat(3, 1fr); }
	.ldc-prods { grid-template-columns: repeat(3, 1fr); }
	.ldc-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
	.ldc-header__in { flex-wrap: wrap; gap: 14px; padding-block: 12px; min-height: 0; }
	.ldc-search { order: 3; flex-basis: 100%; max-width: none; }
	.ldc-nav { margin-left: auto; gap: 18px; }
	.ldc-hero__grid { grid-template-columns: 1fr; }
	.ldc-hero__media { order: -1; }
	.ldc-cats  { grid-template-columns: repeat(2, 1fr); }
	.ldc-prods { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
	.ldc-wrap { padding-inline: 16px; }
	.ldc .ldc-logo img { width: 150px; }
	.ldc-cats { grid-template-columns: 1fr; }
	.ldc-actions .ldc-btn { width: 100%; }
	.ldc-footer__grid { grid-template-columns: 1fr; gap: 26px; }
	.ldc-quote { flex-direction: column; align-items: flex-start; }
	.ldc-quote .ldc-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	.ldc *, .ldc *::before, .ldc *::after { transition-duration: .01ms !important; }
}

/* =========================================================
   Buscador instantáneo
   ========================================================= */
.ldc-search { position: relative; }

.ldc-results {
	position: absolute;
	top: calc(100% + 8px);
	left: 0; right: 0;
	background: #fff;
	border: 1px solid var(--ldc-line);
	border-radius: 12px;
	box-shadow: 0 20px 44px -20px rgba(27,26,51,.45);
	padding: 6px;
	z-index: 60;
	max-height: 70vh;
	overflow-y: auto;
}
.ldc .ldc-res {
	display: flex; align-items: center; gap: 12px;
	padding: 8px 10px;
	border-radius: 8px;
	color: var(--ldc-ink);
}
.ldc .ldc-res:hover, .ldc .ldc-res.is-on { background: var(--ldc-alt); }
.ldc-res__img {
	flex: none;
	width: 44px; height: 44px;
	border-radius: 6px;
	background: var(--ldc-alt);
	overflow: hidden;
}
.ldc .ldc-res__img img { width: 100%; height: 100%; object-fit: cover; }
.ldc-res__txt { display: flex; flex-direction: column; min-width: 0; }
.ldc-res__name {
	font-size: .9rem; font-weight: 600; line-height: 1.3;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ldc-res__price { font-size: .84rem; font-weight: 700; color: var(--ldc-indigo); margin-top: 2px; }
.ldc-res__empty { padding: 16px 12px; color: var(--ldc-muted); font-size: .92rem; }
.ldc .ldc-res__all {
	display: block;
	margin-top: 4px;
	padding: 11px 10px;
	border-top: 1px solid var(--ldc-line);
	font-size: .9rem; font-weight: 700;
	color: var(--ldc-indigo);
	text-align: center;
}
.ldc .ldc-res__all:hover { background: var(--ldc-alt); }

/* =========================================================
   Catálogo (archivo de productos)
   ========================================================= */
.ldc-crumbs {
	display: flex; flex-wrap: wrap; gap: 8px;
	font-size: .86rem; color: var(--ldc-muted);
	padding-top: 22px;
}
.ldc-crumbs a:hover { color: var(--ldc-indigo); text-decoration: underline; }

.ldc-archhead { padding-block: 18px 26px; }
.ldc-h1--sm { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.ldc-archhead__sub { color: var(--ldc-muted); margin-top: 8px; max-width: 46em; }

.ldc-shop {
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: 34px;
	align-items: start;
	padding-bottom: clamp(50px, 6vw, 80px);
}

.ldc-side {
	position: sticky; top: 96px;
	border: 1px solid var(--ldc-line);
	border-radius: var(--ldc-r);
	padding: 18px;
}
.ldc-side__t { font-weight: 800; color: var(--ldc-indigo); margin-bottom: 12px; }
.ldc-side__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.ldc .ldc-side__list a {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 8px 10px;
	border-radius: 8px;
	font-size: .92rem;
	color: var(--ldc-ink);
}
.ldc .ldc-side__list a:hover { background: var(--ldc-alt); }
.ldc .ldc-side__list a.is-on { background: var(--ldc-indigo); color: #fff; font-weight: 700; }
.ldc-side__n { font-size: .8rem; color: var(--ldc-muted); flex: none; }
.ldc .ldc-side__list a.is-on .ldc-side__n { color: rgba(255,255,255,.75); }

.ldc-toolbar {
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px; flex-wrap: wrap;
	margin-bottom: 20px;
}
.ldc-count { font-size: .92rem; color: var(--ldc-muted); }
.ldc-sort { display: flex; align-items: center; gap: 9px; }
.ldc-sort label { font-size: .9rem; color: var(--ldc-muted); }
.ldc-sort select {
	font: inherit; font-size: .9rem;
	padding: 9px 12px;
	border: 1px solid var(--ldc-line);
	border-radius: 8px;
	background: #fff;
	color: var(--ldc-ink);
	cursor: pointer;
}

.ldc-prods--shop { grid-template-columns: repeat(3, 1fr); }

.ldc-pager {
	display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
	margin-top: 34px;
}
.ldc-pager .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding-inline: 12px;
	border: 1px solid var(--ldc-line);
	border-radius: 8px;
	font-size: .93rem; font-weight: 600;
	color: var(--ldc-ink);
}
.ldc-pager .page-numbers:hover { border-color: var(--ldc-indigo); }
.ldc-pager .page-numbers.current { background: var(--ldc-indigo); border-color: var(--ldc-indigo); color: #fff; }
.ldc-pager .dots { border: 0; }
.ldc-empty { color: var(--ldc-muted); padding-block: 40px; }

@media (max-width: 980px) {
	.ldc-shop { grid-template-columns: 1fr; }
	.ldc-side { position: static; }
	.ldc-side__list { flex-direction: row; flex-wrap: wrap; }
	.ldc-prods--shop { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
	.ldc-prods--shop { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.ldc-prods--shop { grid-template-columns: repeat(2, 1fr); }
	.ldc-results { position: fixed; left: 12px; right: 12px; top: 132px; }
}

/* ---------- Filtro por palabra, sobre la grilla ---------- */
.ldc-filtro { margin-bottom: 16px; }
.ldc-filtro__campo { position: relative; display: flex; }
.ldc-filtro__campo input[type="search"] {
	width: 100%;
	font: inherit;
	font-size: .96rem;
	padding: 13px 52px 13px 16px;
	border: 1px solid var(--ldc-line);
	border-radius: var(--ldc-r);
	background: #fff;
	color: var(--ldc-ink);
}
.ldc-filtro__campo input[type="search"]:focus { border-color: var(--ldc-indigo); }
.ldc-filtro__campo input[type="search"]::placeholder { color: #9A99AE; }
.ldc-filtro__campo button {
	position: absolute; right: 5px; top: 5px; bottom: 5px;
	width: 42px;
	border: 0; border-radius: 8px;
	background: var(--ldc-amber);
	color: var(--ldc-ink);
	cursor: pointer;
	display: grid; place-items: center;
}
.ldc-filtro__campo button:hover { background: var(--ldc-amber-d); }
.ldc-filtro__campo svg { width: 18px; height: 18px; }
.ldc .ldc-filtro__limpiar {
	display: inline-block;
	margin-left: 10px;
	font-size: .85rem;
	font-weight: 700;
	color: var(--ldc-indigo);
}
.ldc .ldc-filtro__limpiar:hover { text-decoration: underline; }
.ldc .ldc-empty a { color: var(--ldc-indigo); font-weight: 700; text-decoration: underline; }

/* =========================================================
   Ficha de producto
   ========================================================= */
.ldc-avisos { margin-top: 14px; }
.ldc-pdp {
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
	padding-block: 24px clamp(40px, 5vw, 64px);
}

.ldc-pdp__main {
	max-width: 430px;
	border: 1px solid var(--ldc-line);
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
}
.ldc .ldc-pdp__main img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: #fff; }

.ldc-pdp__thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.ldc-pdp__thumb {
	width: 72px; height: 72px;
	padding: 0;
	border: 1px solid var(--ldc-line);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	cursor: pointer;
}
.ldc-pdp__thumb.is-on { border-color: var(--ldc-indigo); border-width: 2px; }
.ldc .ldc-pdp__thumb img { width: 100%; height: 100%; object-fit: contain; }

.ldc-pdp__title {
	font-size: clamp(1.55rem, 2.9vw, 2.25rem);
	line-height: 1.15;
	letter-spacing: -0.028em;
	font-weight: 800;
	color: var(--ldc-indigo);
}
.ldc-pdp__price {
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	font-weight: 800;
	color: var(--ldc-ink);
	margin-top: 14px;
}
.ldc-pdp__price del { color: var(--ldc-muted); font-weight: 500; font-size: .7em; margin-right: 8px; }
.ldc-pdp__price .woocommerce-Price-currencySymbol { font-size: .8em; }
.ldc-pdp__resumen { margin-top: 16px; color: var(--ldc-muted); line-height: 1.6; }
.ldc-pdp__resumen p { margin-bottom: 10px; }

/* Bloque de compra: se respeta el marcado de WooCommerce y solo se le da estilo. */
.ldc-pdp__compra { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--ldc-line); }
.ldc-pdp__compra form.cart { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.ldc-pdp__compra .quantity input[type="number"] {
	font: inherit; font-size: 1rem; font-weight: 600;
	width: 88px; padding: 13px 10px; text-align: center;
	border: 1px solid var(--ldc-line); border-radius: var(--ldc-r);
	background: #fff; color: var(--ldc-ink);
}
/* WooCommerce pinta .button.alt de morado (#a46497) con más especificidad que
   una regla simple; por eso se califica con .ldc y las clases del propio botón. */
.ldc .ldc-pdp__compra button.button.alt,
.ldc .ldc-pdp__compra button.single_add_to_cart_button,
.ldc .ldc-pdp__compra a.button.alt,
.ldc-pdp__compra button.button,
.ldc-pdp__compra .single_add_to_cart_button {
	font: inherit; font-size: 1rem; font-weight: 700;
	padding: 15px 32px;
	border: 0; border-radius: var(--ldc-r);
	background: var(--ldc-amber); color: var(--ldc-ink);
	cursor: pointer;
	transition: background-color .18s var(--ldc-ease), transform .18s var(--ldc-ease);
}
.ldc .ldc-pdp__compra button.button.alt:hover,
.ldc .ldc-pdp__compra button.single_add_to_cart_button:hover,
.ldc-pdp__compra button.button:hover,
.ldc-pdp__compra .single_add_to_cart_button:hover { background: var(--ldc-amber-d); transform: translateY(-1px); }
.ldc-pdp__compra .stock { width: 100%; font-size: .9rem; color: var(--ldc-muted); margin: 0; }
.ldc-pdp__compra table.variations { width: 100%; border-collapse: collapse; margin-bottom: 6px; }
.ldc-pdp__compra table.variations th,
.ldc-pdp__compra table.variations td { text-align: left; padding: 6px 0; vertical-align: middle; }
.ldc-pdp__compra table.variations label { font-weight: 700; font-size: .93rem; }
.ldc-pdp__compra table.variations select {
	font: inherit; font-size: .95rem;
	padding: 11px 12px; width: 100%;
	border: 1px solid var(--ldc-line); border-radius: 8px; background: #fff;
}
.ldc-pdp__compra .woocommerce-variation-price { margin: 10px 0; font-size: 1.3rem; font-weight: 800; }
.ldc-pdp__compra .reset_variations { font-size: .86rem; color: var(--ldc-muted); }

.ldc-pdp__meta { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.ldc-pdp__meta li { display: flex; gap: 12px; font-size: .93rem; }
.ldc-pdp__meta span { color: var(--ldc-muted); min-width: 116px; }
.ldc-pdp__meta strong { font-weight: 700; }
.ldc .ldc-pdp__meta a { color: var(--ldc-indigo); }
.ldc .ldc-pdp__meta a:hover { text-decoration: underline; }

.ldc-pdp__ayuda {
	margin-top: 26px; padding: 15px 18px;
	background: var(--ldc-alt); border-radius: var(--ldc-r);
	font-size: .93rem; color: var(--ldc-muted);
}
.ldc .ldc-pdp__ayuda a { color: var(--ldc-indigo); font-weight: 700; text-decoration: underline; }

.ldc-pdp__desc { padding-block: clamp(30px, 4vw, 48px); border-top: 1px solid var(--ldc-line); }
.ldc-prosa { margin-top: 16px; max-width: 62em; color: var(--ldc-ink); line-height: 1.7; }
.ldc-prosa p { margin-bottom: 14px; }
.ldc-prosa ul, .ldc-prosa ol { margin: 0 0 14px 22px; }
.ldc-prosa li { margin-bottom: 6px; list-style: disc; }
.ldc-prosa img { border-radius: 10px; margin: 10px 0; }
.ldc-prosa table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.ldc-prosa th, .ldc-prosa td { border: 1px solid var(--ldc-line); padding: 9px 12px; text-align: left; }

.ldc-pdp__rel { padding-block: clamp(30px, 4vw, 48px); border-top: 1px solid var(--ldc-line); }

@media (max-width: 860px) {
	.ldc-pdp { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.ldc-pdp__compra form.cart { flex-direction: column; align-items: stretch; }
	.ldc-pdp__compra .quantity input[type="number"] { width: 100%; }
	.ldc-pdp__meta li { flex-direction: column; gap: 2px; }
}

/* Fichas técnicas: cualquier enlace a PDF dentro de la descripción se muestra
   como botón, no como texto suelto. */
.ldc .ldc-prosa a[href$=".pdf"],
.ldc .ldc-prosa a[href$=".PDF"] {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 6px 0;
	padding: 13px 22px;
	border: 1px solid var(--ldc-line);
	border-radius: var(--ldc-r);
	background: #fff;
	color: var(--ldc-indigo);
	font-weight: 700;
	font-size: .95rem;
	text-decoration: none;
	transition: border-color .18s var(--ldc-ease), background-color .18s var(--ldc-ease), transform .18s var(--ldc-ease);
}
.ldc .ldc-prosa a[href$=".pdf"]::before,
.ldc .ldc-prosa a[href$=".PDF"]::before {
	content: '';
	flex: none;
	width: 18px; height: 18px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E2B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 3H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 3v5h5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.ldc .ldc-prosa a[href$=".pdf"]:hover,
.ldc .ldc-prosa a[href$=".PDF"]:hover {
	border-color: var(--ldc-indigo);
	background: var(--ldc-alt);
	transform: translateY(-1px);
}

/* Producto variable sin variación elegida: el botón debe verse inactivo. */
.ldc .ldc-pdp__compra button.disabled,
.ldc .ldc-pdp__compra button.wc-variation-selection-needed {
	background: var(--ldc-line);
	color: var(--ldc-muted);
	cursor: not-allowed;
}
.ldc .ldc-pdp__compra button.disabled:hover { transform: none; background: var(--ldc-line); }

/* ---------- Header responsive ---------- */
@media (max-width: 980px) {
	.ldc-menu { display: none; }
	.ldc-burger { display: flex; }
	.ldc-cart { margin-left: 0; }
}
@media (max-width: 720px) {
	.ldc-header__in { flex-wrap: wrap; gap: 12px; padding-block: 12px; min-height: 0; }
	.ldc-search { order: 3; flex-basis: 100%; max-width: none; }
	.ldc-cart { margin-left: auto; }
}

/* ---------- Relacionados: carrusel de una fila ---------- */
.ldc-sechead__acc { display: flex; align-items: center; gap: 16px; }
.ldc-rel__navs { display: flex; gap: 8px; }
.ldc-rel__nav {
	width: 38px; height: 38px;
	display: grid; place-items: center;
	border: 1px solid var(--ldc-line);
	border-radius: 999px;
	background: #fff;
	color: var(--ldc-ink);
	cursor: pointer;
	transition: border-color .18s var(--ldc-ease), background-color .18s var(--ldc-ease), opacity .18s var(--ldc-ease);
}
.ldc-rel__nav:hover { border-color: var(--ldc-indigo); background: var(--ldc-alt); }
.ldc-rel__nav[disabled] { opacity: .35; cursor: default; }
.ldc-rel__nav svg { width: 18px; height: 18px; }

.ldc-rel__pista {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	scroll-behavior: smooth;
	padding-bottom: 6px;
	/* la barra se oculta: se navega con las flechas o gesto táctil */
	scrollbar-width: none;
}
.ldc-rel__pista::-webkit-scrollbar { display: none; }

.ldc-prod--mini {
	flex: 0 0 186px;
	scroll-snap-align: start;
	padding: 10px;
}
.ldc .ldc-prod--mini .ldc-prod__img img { aspect-ratio: 1 / 1; object-fit: contain; background: #fff; }
.ldc-prod--mini .ldc-prod__img { margin-bottom: 9px; }
.ldc-prod--mini .ldc-prod__name { font-size: .87rem; -webkit-line-clamp: 2; }
.ldc-prod--mini .ldc-prod__price { font-size: .92rem; padding-top: 7px; }

@media (max-width: 560px) {
	.ldc-prod--mini { flex-basis: 150px; }
	.ldc-rel__navs { display: none; }
	.ldc-rel__pista { scroll-snap-type: x mandatory; }
}

/* ---------- Icono del cotizador en el header ---------- */
.ldc-cot { margin-left: auto; }
.ldc-cot + .ldc-cart { margin-left: 8px; }
.ldc-cot svg { width: 20px; height: 20px; }

/* ---------- Botones en las tarjetas de producto ---------- */
.ldc-prod__acc {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--ldc-line);
}
/* Botón de carrito de WooCommerce (simple = añadir, variable = ver opciones) */
.ldc .ldc-prod__acc a.button,
.ldc .ldc-prod__acc a.add_to_cart_button,
.ldc .ldc-prod__acc a.product_type_variable,
.ldc .ldc-prod__acc a.product_type_simple {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: .88rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	padding: 11px 14px;
	border: 0;
	border-radius: 8px;
	background: var(--ldc-amber);
	color: var(--ldc-ink);
	transition: background-color .18s var(--ldc-ease);
}
.ldc .ldc-prod__acc a.button:hover { background: var(--ldc-amber-d); }
.ldc .ldc-prod__acc a.added_to_cart {
	font-size: .82rem; font-weight: 700; color: var(--ldc-indigo);
	background: none; padding: 2px 0; text-decoration: underline;
}
/* Botón "Añadir al cotizador" del plugin propio */
.ldc .ldc-prod__acc a.labdc-yith-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: .86rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	padding: 10px 14px;
	border: 1px solid var(--ldc-line);
	border-radius: 8px;
	background: #fff;
	color: var(--ldc-indigo);
	transition: border-color .18s var(--ldc-ease), background-color .18s var(--ldc-ease);
}
.ldc .ldc-prod__acc a.labdc-yith-btn:hover { border-color: var(--ldc-indigo); background: var(--ldc-alt); }
.ldc .ldc-prod__acc a.labdc-yith-btn.is-secondary { color: var(--ldc-muted); }
/* En el carrusel de relacionados las tarjetas son compactas: sin botones */
.ldc-prod--mini .ldc-prod__acc { display: none; }
/* Los kits BioClass no llevan botones aquí (su CTA va en el slot del precio):
   el contenedor queda vacío y no debe dejar borde ni hueco. */
.ldc-prod__acc:empty { display: none; }

/* =========================================================
   Cotizador
   ========================================================= */
.ldc-tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--ldc-line); margin-bottom: 26px; }
.ldc-tab {
	font: inherit; font-size: .98rem; font-weight: 700;
	display: inline-flex; align-items: center; gap: 8px;
	padding: 13px 18px;
	background: none; border: 0; border-bottom: 3px solid transparent;
	color: var(--ldc-muted); cursor: pointer;
}
.ldc-tab:hover { color: var(--ldc-ink); }
.ldc-tab.is-on { color: var(--ldc-indigo); border-bottom-color: var(--ldc-amber); }
.ldc-tab__n {
	min-width: 20px; height: 20px; padding-inline: 6px;
	border-radius: 999px; background: var(--ldc-amber); color: var(--ldc-ink);
	font-size: .74rem; font-weight: 800;
	display: grid; place-items: center;
}
.ldc-panel { display: none; padding-bottom: clamp(40px, 5vw, 70px); }
.ldc-panel.is-on { display: block; }

/* Avisos */
.ldc-aviso { padding: 14px 18px; border-radius: var(--ldc-r); margin-bottom: 22px; font-size: .95rem; line-height: 1.55; }
.ldc-aviso--ok { background: #E9F7EF; border: 1px solid #B6E2C6; color: #1B5E34; }
.ldc-aviso--error { background: #FDECEC; border: 1px solid #F3C0C0; color: #8A1F1F; }

/* Tabla del cotizador existente (marcado del otro plugin, solo se estiliza) */
.ldc-cot-lista .labdc-quote-table { width: 100%; border-collapse: collapse; margin-bottom: 22px; }
.ldc-cot-lista .labdc-quote-table th,
.ldc-cot-lista .labdc-quote-table td {
	padding: 12px 10px; text-align: left; border-bottom: 1px solid var(--ldc-line); font-size: .94rem;
}
.ldc-cot-lista .labdc-quote-table th { font-weight: 700; color: var(--ldc-indigo); }
.ldc-cot-lista .labdc-quote-table img { border-radius: 8px; }
.ldc-cot-lista input[type="number"] {
	font: inherit; width: 84px; padding: 9px 10px; text-align: center;
	border: 1px solid var(--ldc-line); border-radius: 8px; background: #fff;
}
.ldc-cot-lista button,
.ldc-cot-lista input[type="submit"],
.ldc .ldc-cot-lista a.button {
	font: inherit; font-size: .95rem; font-weight: 700;
	padding: 12px 22px; border: 0; border-radius: var(--ldc-r);
	background: var(--ldc-amber); color: var(--ldc-ink); cursor: pointer;
}
.ldc-cot-lista .labdc-yith-empty { padding: 30px 0; color: var(--ldc-muted); }

/* Formulario del modo archivo */
.ldc-subir__intro { margin-bottom: 22px; }
.ldc-subir__intro p { color: var(--ldc-muted); margin-top: 8px; max-width: 46em; }
.ldc-form__grid {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 22px;
}
.ldc-form__campo { display: flex; flex-direction: column; gap: 6px; }
.ldc-form__campo--ancho { grid-column: 1 / -1; }
.ldc-form__campo label { font-size: .9rem; font-weight: 700; color: var(--ldc-ink); }
.ldc-form__campo label span { color: #C0392B; }
.ldc-form__campo input[type="text"],
.ldc-form__campo input[type="email"],
.ldc-form__campo textarea {
	font: inherit; font-size: .96rem;
	padding: 12px 14px;
	border: 1px solid var(--ldc-line); border-radius: var(--ldc-r);
	background: #fff; color: var(--ldc-ink); width: 100%;
}
.ldc-form__campo input:focus, .ldc-form__campo textarea:focus { border-color: var(--ldc-indigo); outline: none; }
.ldc-form__campo input[type="file"] {
	font: inherit; font-size: .93rem;
	padding: 14px; width: 100%;
	border: 1px dashed var(--ldc-line); border-radius: var(--ldc-r);
	background: var(--ldc-alt); cursor: pointer;
}
.ldc-form__ayuda { font-size: .84rem; color: var(--ldc-muted); }
.ldc-form__legal { font-size: .84rem; color: var(--ldc-muted); margin-top: 12px; }

@media (max-width: 700px) {
	.ldc-form__grid { grid-template-columns: 1fr; }
	.ldc-tabs { overflow-x: auto; }
}

/* =========================================================
   Carrito y checkout
   El marcado es de WooCommerce y no se toca (checkout.js y Transbank
   dependen de sus clases e IDs): aquí solo se le da estilo.
   ========================================================= */
.ldc-woo { padding-bottom: clamp(40px, 5vw, 70px); }
.ldc-woo a { color: var(--ldc-indigo); }
.ldc-woo a:hover { text-decoration: underline; }

/* Avisos de WooCommerce */
.ldc-woo .woocommerce-message,
.ldc-woo .woocommerce-info,
.ldc-woo .woocommerce-error,
.ldc-woo .cart-empty {
	padding: 14px 18px; margin-bottom: 20px;
	border-radius: var(--ldc-r); font-size: .95rem; line-height: 1.55;
	background: var(--ldc-alt); border: 1px solid var(--ldc-line); list-style: none;
}
.ldc-woo .woocommerce-error { background: #FDECEC; border-color: #F3C0C0; color: #8A1F1F; }
.ldc-woo .woocommerce-message { background: #E9F7EF; border-color: #B6E2C6; color: #1B5E34; }

/* Tabla del carrito */
.ldc-woo .shop_table { width: 100%; border-collapse: collapse; margin-bottom: 26px; }
.ldc-woo .shop_table th,
.ldc-woo .shop_table td {
	padding: 14px 10px; text-align: left; vertical-align: middle;
	border-bottom: 1px solid var(--ldc-line); font-size: .94rem;
}
.ldc-woo .shop_table th { font-weight: 700; color: var(--ldc-indigo); font-size: .88rem; }
.ldc-woo .shop_table img { width: 64px; height: auto; border-radius: 8px; }
.ldc-woo .product-remove a { color: var(--ldc-muted); font-size: 1.2rem; text-decoration: none; }
.ldc-woo .product-remove a:hover { color: #C0392B; }
.ldc-woo .quantity input[type="number"] {
	font: inherit; width: 78px; padding: 9px 8px; text-align: center;
	border: 1px solid var(--ldc-line); border-radius: 8px; background: #fff;
}
.ldc-woo .coupon input[type="text"] {
	font: inherit; padding: 11px 13px; border: 1px solid var(--ldc-line);
	border-radius: var(--ldc-r); background: #fff; margin-right: 8px;
}

/* Botones de WooCommerce */
.ldc-woo .button,
.ldc-woo button.button,
.ldc-woo input.button,
.ldc-woo .checkout-button {
	display: inline-flex; align-items: center; justify-content: center;
	font: inherit; font-size: .95rem; font-weight: 700;
	padding: 13px 24px; border: 0; border-radius: var(--ldc-r);
	background: var(--ldc-amber); color: var(--ldc-ink);
	cursor: pointer; text-decoration: none;
	transition: background-color .18s var(--ldc-ease);
}
.ldc-woo .button:hover, .ldc-woo .checkout-button:hover { background: var(--ldc-amber-d); text-decoration: none; }
.ldc-woo .button[disabled], .ldc-woo .button:disabled { background: var(--ldc-line); color: var(--ldc-muted); }

/* Totales */
.ldc-woo .cart_totals,
.ldc-woo .cart-collaterals { margin-top: 10px; }
.ldc-woo .cart_totals h2 {
	font-size: 1.2rem; font-weight: 800; color: var(--ldc-indigo); margin-bottom: 12px;
}
.ldc-woo .cart_totals table { width: 100%; border-collapse: collapse; }
.ldc-woo .cart_totals th, .ldc-woo .cart_totals td {
	padding: 11px 0; border-bottom: 1px solid var(--ldc-line); font-size: .95rem; text-align: left;
}
.ldc-woo .order-total td, .ldc-woo .order-total th { font-weight: 800; font-size: 1.05rem; border-bottom: 0; }

/* Checkout: dos columnas */
.ldc-woo--checkout .woocommerce { display: block; }
.ldc-woo--checkout form.checkout { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(24px, 3vw, 44px); align-items: start; }
.ldc-woo--checkout #customer_details { grid-column: 1; }
.ldc-woo--checkout #order_review_heading,
.ldc-woo--checkout #order_review { grid-column: 2; }
.ldc-woo--checkout #order_review_heading { font-size: 1.2rem; font-weight: 800; color: var(--ldc-indigo); margin-bottom: 12px; }
.ldc-woo--checkout h3 { font-size: 1.1rem; font-weight: 800; color: var(--ldc-indigo); margin: 0 0 14px; }

/* Campos del checkout: se conservan .form-row y los IDs billing_* porque el
   JS del snippet de factura depende de ellos. */
.ldc-woo .form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.ldc-woo .form-row label { font-size: .88rem; font-weight: 700; color: var(--ldc-ink); }
.ldc-woo .form-row .required { color: #C0392B; }
.ldc-woo .form-row input[type="text"],
.ldc-woo .form-row input[type="email"],
.ldc-woo .form-row input[type="tel"],
.ldc-woo .form-row input[type="password"],
.ldc-woo .form-row textarea,
.ldc-woo .form-row select,
.ldc-woo .select2-container .select2-selection {
	font: inherit; font-size: .95rem;
	padding: 11px 13px; width: 100%;
	border: 1px solid var(--ldc-line); border-radius: var(--ldc-r);
	background: #fff; color: var(--ldc-ink);
}
.ldc-woo .form-row input:focus, .ldc-woo .form-row textarea:focus, .ldc-woo .form-row select:focus { border-color: var(--ldc-indigo); outline: none; }
.ldc-woo .form-row-first, .ldc-woo .form-row-last { display: inline-flex; width: calc(50% - 7px); }
.ldc-woo .form-row-first { margin-right: 12px; }
.ldc-woo .woocommerce-input-wrapper { width: 100%; }
.ldc-woo .form-row.woocommerce-validated input { border-color: #B6E2C6; }
.ldc-woo .form-row.woocommerce-invalid input { border-color: #E5A3A3; }

/* Resumen del pedido y pago */
.ldc-woo--checkout #order_review {
	background: var(--ldc-alt);
	border: 1px solid var(--ldc-line);
	border-radius: 14px;
	padding: 22px;
	position: sticky; top: 96px;
}
.ldc-woo #payment { background: none; }
.ldc-woo #payment ul.payment_methods { list-style: none; margin: 0 0 16px; padding: 0; border-bottom: 1px solid var(--ldc-line); }
.ldc-woo #payment li.wc_payment_method { padding: 10px 0; }
.ldc-woo #payment label { font-weight: 700; font-size: .95rem; }
.ldc-woo #payment .payment_box { background: #fff; border: 1px solid var(--ldc-line); border-radius: 10px; padding: 12px 14px; margin-top: 8px; font-size: .9rem; color: var(--ldc-muted); }
.ldc-woo #place_order { width: 100%; padding: 16px; font-size: 1.02rem; }

@media (max-width: 900px) {
	.ldc-woo--checkout form.checkout { grid-template-columns: 1fr; }
	.ldc-woo--checkout #customer_details,
	.ldc-woo--checkout #order_review_heading,
	.ldc-woo--checkout #order_review { grid-column: 1; }
	.ldc-woo--checkout #order_review { position: static; }
	.ldc-woo .form-row-first, .ldc-woo .form-row-last { width: 100%; margin-right: 0; }
	.ldc-woo .shop_table, .ldc-woo .shop_table tbody, .ldc-woo .shop_table tr, .ldc-woo .shop_table td { display: block; width: 100%; }
	.ldc-woo .shop_table thead { display: none; }
	.ldc-woo .shop_table tr { border-bottom: 1px solid var(--ldc-line); padding: 12px 0; }
	.ldc-woo .shop_table td { border-bottom: 0; padding: 5px 0; }
}

/* Campos trampa antibot: fuera de pantalla, no display:none (los bots detectan eso). */
.ldc-ab { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
