/* OZ Cotizador — Design pack "faca" (admin: FACA)
 * Cards: ozc-product-card__* bajo .ozc-product-card--pack-faca
 *
 * Estructura: imagen grande · chip de categoría · título centrado ·
 * fila inferior con cantidad a la izquierda y botón «Cotizar» a la derecha.
 */

.ozc-product-card--pack-faca {
	--ozc-faca-surface: #ffffff;
	--ozc-faca-border: #e3e8ef;
	--ozc-faca-border-hover: #cfd8e3;
	--ozc-faca-radius: 14px;
	--ozc-faca-shadow: 0 1px 2px rgba(15, 23, 42, .05), 0 8px 20px rgba(15, 23, 42, .05);
	--ozc-faca-shadow-hover: 0 4px 10px rgba(15, 23, 42, .08), 0 14px 32px rgba(15, 23, 42, .10);
	--ozc-faca-chip-bg: #e9f1fb;
	--ozc-faca-chip-text: #17457a;
	--ozc-faca-title: #0f172a;
	--ozc-faca-muted: #64748b;
	--ozc-faca-btn-bg: #0f2f63;
	--ozc-faca-btn-bg-hover: #16407f;
	--ozc-faca-btn-text: #ffffff;
	--ozc-faca-qty-border: #d7dee7;
	--ozc-faca-btn-radius: 9px;
	--ozc-faca-wa: #25d366;
	--ozc-faca-wa-line: #1a7f43;
	/* Reposo gris: los botones sólo toman su color propio en hover. */
	--ozc-faca-idle-bg: #e9edf2;
	--ozc-faca-idle-text: #475569;
	--ozc-faca-idle-line: #cbd5e1;

	/* Contenedor consultable: el boton decide si muestra texto segun el ancho
	   REAL de la tarjeta, no el de la ventana (las tarjetas cambian de tamano
	   segun las columnas del slider o de la rejilla). */
	container-type: inline-size;
	container-name: ozc-card;

	position: relative;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0 0 16px;
	background: var(--ozc-faca-surface);
	border: 1px solid var(--ozc-faca-border);
	border-radius: var(--ozc-faca-radius);
	box-shadow: var(--ozc-faca-shadow);
	overflow: hidden;
	color: var(--ozc-faca-title);
	text-align: center;
	transition: border-color .24s ease, box-shadow .24s ease;
}

.ozc-product-card--pack-faca:hover,
.ozc-product-card--pack-faca:focus-within {
	border-color: var(--ozc-faca-border-hover);
	box-shadow: var(--ozc-faca-shadow-hover);
}

.ozc-product-card--pack-faca * {
	box-sizing: border-box;
}

/* ----- Secciones: el padding lateral vive aquí, no en la tarjeta ----- */
.ozc-product-card--pack-faca .ozc-product-card__section {
	margin-top: 10px;
	padding-left: 14px;
	padding-right: 14px;
}

.ozc-product-card--pack-faca .ozc-product-card__media + .ozc-product-card__section {
	margin-top: 12px;
}

/* ----- Imagen -----
   El CSS base (loops.css) fija 4/3 en el contenedor. Aquí se libera el
   contenedor y el ratio 1:1 se aplica a la imagen, con `contain` para que
   se vea completa: la del producto no se recorta nunca. */
.ozc-product-card--pack-faca .ozc-product-card__media {
	display: block;
	margin: 0;
	padding: 10px 10px 0;
	aspect-ratio: auto;
	line-height: 0;
	background: var(--ozc-faca-surface);
}

.ozc-product-card--pack-faca .ozc-product-card__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	border-radius: 8px;
	background: var(--ozc-faca-surface);
}

.ozc-product-card--pack-faca .ozc-product-card__placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 8px;
	background: #eef2f7;
}

/* La marca no va como badge sobre la imagen (igual que en el pack MYG). */
.ozc-product-card--pack-faca .ozc-product-card__media .ozc-product-card__badge {
	display: none;
}

/* ----- Chip de categoría ----- */
.ozc-product-card--pack-faca .ozc-product-card__category {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	max-width: calc(100% - 28px);
	margin: 10px auto 0;
	padding: 5px 12px;
	border-radius: 999px;
	background: var(--ozc-faca-chip-bg);
	color: var(--ozc-faca-chip-text);
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .06em;
	line-height: 1.3;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ozc-product-card--pack-faca .ozc-product-card__category::before {
	content: "";
	flex: 0 0 auto;
	width: 13px;
	height: 13px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z' stroke='%2317457a' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M3.27 6.96 12 12.01l8.73-5.05M12 22.08V12' stroke='%2317457a' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E") center / 13px 13px no-repeat;
}

/* ----- Título ----- */
.ozc-product-card--pack-faca .ozc-product-card__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.6em;
	margin: 0;
	color: var(--ozc-faca-title);
	font-size: .98rem;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	text-wrap: balance;
}

.ozc-product-card--pack-faca .ozc-product-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color .18s ease;
}

.ozc-product-card--pack-faca .ozc-product-card__title a:hover {
	color: var(--ozc-faca-btn-bg);
}

/* ----- Extracto, marca y precio (sólo si los activás en Loops) ----- */
.ozc-product-card--pack-faca .ozc-product-card__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--ozc-faca-muted);
	font-size: .82rem;
	line-height: 1.5;
}

.ozc-product-card--pack-faca .ozc-product-card__brand {
	color: var(--ozc-faca-muted);
	font-size: .78rem;
	line-height: 1.35;
}

.ozc-product-card--pack-faca .ozc-product-card__price {
	color: var(--ozc-faca-title);
	font-size: 1rem;
	font-weight: 800;
}

/* ----- Fila inferior: cantidad + botón ----- */
.ozc-product-card--pack-faca .ozc-product-card__actions {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	padding-top: 10px;
}


.ozc-product-card--pack-faca .ozc-product-card__qty {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 2px;
	height: auto;
	padding: 3px;
	border: 1px solid var(--ozc-faca-qty-border);
	border-radius: var(--ozc-faca-btn-radius);
	background: #fff;
}

.ozc-product-card--pack-faca .ozc-product-card__qty-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	padding: 0;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: var(--ozc-faca-title);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background-color .18s ease;
}

.ozc-product-card--pack-faca .ozc-product-card__qty-btn:hover {
	background: #eef2f7;
}

.ozc-product-card--pack-faca .ozc-product-card__qty-btn:focus-visible {
	outline: 2px solid var(--ozc-faca-btn-bg);
	outline-offset: 1px;
}

.ozc-product-card--pack-faca .ozc-product-card__qty-input {
	flex: 0 0 auto;
	width: 34px;
	min-width: 0;
	height: 26px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ozc-faca-title);
	font-size: .9rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	-moz-appearance: textfield;
	appearance: textfield;
}

.ozc-product-card--pack-faca .ozc-product-card__qty-input::-webkit-outer-spin-button,
.ozc-product-card--pack-faca .ozc-product-card__qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.ozc-product-card--pack-faca .ozc-product-card__qty-input:focus-visible {
	outline: 2px solid var(--ozc-faca-btn-bg);
	outline-offset: 1px;
	border-radius: 4px;
}

/* ----- Botón «Cotizar» ----- */
.ozc-product-card--pack-faca .ozc-product-card__btn--primary {
	flex: 1 1 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 0;
	min-height: 38px;
	margin: 0;
	padding: 9px 14px;
	border: 0;
	border-radius: var(--ozc-faca-btn-radius);
	background: var(--ozc-faca-idle-bg);
	color: var(--ozc-faca-idle-text);
	font-size: .86rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
}

.ozc-product-card--pack-faca .ozc-product-card__btn--primary::before {
	content: "";
	flex: 0 0 auto;
	width: 15px;
	height: 15px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='9' cy='21' r='1.6' fill='%23475569'/%3E%3Ccircle cx='19' cy='21' r='1.6' fill='%23475569'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 15px 15px no-repeat;
}

.ozc-product-card--pack-faca .ozc-product-card__btn--primary:hover,
.ozc-product-card--pack-faca .ozc-product-card__btn--primary:focus-visible {
	background: var(--ozc-faca-btn-bg);
	color: var(--ozc-faca-btn-text);
}

.ozc-product-card--pack-faca .ozc-product-card__btn--primary:hover::before,
.ozc-product-card--pack-faca .ozc-product-card__btn--primary:focus-visible::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='9' cy='21' r='1.6' fill='%23ffffff'/%3E%3Ccircle cx='19' cy='21' r='1.6' fill='%23ffffff'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

.ozc-product-card--pack-faca .ozc-product-card__btn--primary:focus-visible {
	outline: 2px solid var(--ozc-faca-btn-bg);
	outline-offset: 2px;
}

/* Enlace «añadido» que WooCommerce inyecta tras el alta AJAX: no cabe en la fila. */
.ozc-product-card--pack-faca .ozc-product-card__btn--added,
.ozc-product-card--pack-faca .added_to_cart {
	display: none;
}

/* ----- Botón de WhatsApp -----
   En reposo va sólo con contorno; el verde aparece al pasar el cursor. */
.ozc-product-card--pack-faca .ozc-product-card__wa-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	min-height: 36px;
	padding: 8px 14px;
	border: 1px solid var(--ozc-faca-idle-line);
	border-radius: var(--ozc-faca-btn-radius);
	background: var(--ozc-faca-idle-bg);
	color: var(--ozc-faca-idle-text);
	font-size: .84rem;
	font-weight: 700;
	text-decoration: none;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.ozc-product-card--pack-faca .ozc-product-card__wa-btn:hover,
.ozc-product-card--pack-faca .ozc-product-card__wa-btn:focus-visible {
	background: var(--ozc-faca-wa);
	border-color: var(--ozc-faca-wa);
	color: #05391a;
}

/* ----- Responsive ----- */
@media (max-width: 480px) {
	.ozc-product-card--pack-faca .ozc-product-card__section {
		padding-left: 10px;
		padding-right: 10px;
	}
	.ozc-product-card--pack-faca .ozc-product-card__title {
		font-size: .9rem;
	}
	.ozc-product-card--pack-faca .ozc-product-card__actions {
		flex-wrap: wrap;
	}
	.ozc-product-card--pack-faca .ozc-product-card__btn--primary {
		flex: 1 1 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ozc-product-card--pack-faca,
	.ozc-product-card--pack-faca .ozc-product-card__title a,
	.ozc-product-card--pack-faca .ozc-product-card__qty-btn,
	.ozc-product-card--pack-faca .ozc-product-card__btn--primary,
	.ozc-product-card--pack-faca .ozc-product-card__wa-btn {
		transition: none;
	}
}


/* =========================================================
 * Ficha de producto — pack FACA
 * Marcado de frontend/templates/single-product-card.php:
 * .ozc-single-product__inner > __media + __summary
 * ========================================================= */

.ozc-single-product--pack-faca {
	--ozc-fs-surface: #ffffff;
	--ozc-fs-border: #e3e8ef;
	--ozc-fs-line: #eceff3;
	--ozc-fs-title: #0f2f63;
	--ozc-fs-text: #4b5563;
	--ozc-fs-muted: #6b7280;
	--ozc-fs-link: #1e73be;
	--ozc-fs-accent: #0f2f63;
	--ozc-fs-radius: 10px;

	display: block;
	width: 100%;
	box-sizing: border-box}

.ozc-single-product--pack-faca * {
	box-sizing: border-box}

/* ---------- Rejilla: galería | resumen ---------- */
.ozc-single-product--pack-faca .ozc-single-product__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 28px;
	align-items: start;
	width: 100%}

/* Dos columnas solo desde 992: en tableta vertical el resumen quedaba en 310px. */
@media (min-width: 992px) {
	.ozc-single-product--pack-faca .ozc-single-product__inner {
		grid-template-columns: minmax(0, 56fr) minmax(0, 44fr);
		gap: clamp(24px, 3vw, 40px)}
}

/* ---------- Galería ---------- */
/* Sin caja: la imagen va suelta, sin fondo ni borde. */
.ozc-single-product--pack-faca .ozc-single-product__media {
	position: relative;
	min-width: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	overflow: visible}

.ozc-single-product--pack-faca .ozc-single-product__media .woocommerce-product-gallery {
	width: 100%;
	float: none;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0}

.ozc-single-product--pack-faca .ozc-single-product__media .woocommerce-product-gallery__wrapper {
	margin: 0}

.ozc-single-product--pack-faca .ozc-single-product__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 0}

/* Lupa de zoom de WooCommerce */
.ozc-single-product--pack-faca .ozc-single-product__media .woocommerce-product-gallery__trigger {
	position: absolute;
	top: 22px;
	right: 22px;
	z-index: 3}

/* Miniaturas */
.ozc-single-product--pack-faca .ozc-single-product__media .flex-control-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 12px 0 0;
	padding: 0}

.ozc-single-product--pack-faca .ozc-single-product__media .flex-control-thumbs li {
	width: 72px;
	margin: 0}

.ozc-single-product--pack-faca .ozc-single-product__media .flex-control-thumbs img {
	border: 1px solid var(--ozc-fs-border);
	border-radius: 6px;
	cursor: pointer;
	opacity: .7;
	transition: opacity .2s ease, border-color .2s ease}

.ozc-single-product--pack-faca .ozc-single-product__media .flex-control-thumbs img:hover,
.ozc-single-product--pack-faca .ozc-single-product__media .flex-control-thumbs img.flex-active {
	opacity: 1;
	border-color: var(--ozc-fs-accent)}

/* ---------- Resumen ---------- */
.ozc-single-product--pack-faca .ozc-single-product__summary {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 16px}

.ozc-single-product--pack-faca .ozc-single-product__breadcrumbs {
	color: var(--ozc-fs-muted);
	font-size: .82rem}

.ozc-single-product--pack-faca .ozc-single-product__breadcrumbs a {
	color: var(--ozc-fs-link);
	text-decoration: none}

.ozc-single-product--pack-faca .ozc-single-product__title {
	margin: 0;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--ozc-fs-line)}

.ozc-single-product--pack-faca .ozc-single-product__title h1,
.ozc-single-product--pack-faca .ozc-single-product__title .product_title {
	margin: 0;
	color: var(--ozc-fs-title);
	font-size: clamp(1.35rem, 2.4vw, 1.75rem);
	font-weight: 800;
	line-height: 1.25}

.ozc-single-product--pack-faca .ozc-single-product__price {
	color: var(--ozc-fs-title);
	font-size: 1.4rem;
	font-weight: 800}

.ozc-single-product--pack-faca .ozc-single-product__price del {
	color: var(--ozc-fs-muted);
	font-size: 1rem;
	font-weight: 500}

/* Descripción corta: las viñetas van con tilde, como en la referencia. */
.ozc-single-product--pack-faca .ozc-single-product__excerpt {
	color: var(--ozc-fs-text);
	font-size: .95rem;
	line-height: 1.7}

.ozc-single-product--pack-faca .ozc-single-product__excerpt p {
	margin: 0 0 10px}

.ozc-single-product--pack-faca .ozc-single-product__excerpt p:last-child {
	margin-bottom: 0}

.ozc-single-product--pack-faca .ozc-single-product__excerpt ul {
	list-style: none;
	margin: 10px 0 0;
	padding: 0}

.ozc-single-product--pack-faca .ozc-single-product__excerpt li {
	position: relative;
	padding: 4px 0 4px 24px}

.ozc-single-product--pack-faca .ozc-single-product__excerpt li::before {
	content: "";
	position: absolute;
	top: .55em;
	left: 0;
	width: 14px;
	height: 14px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%231e73be' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px 14px no-repeat}

.ozc-single-product--pack-faca .ozc-single-product__excerpt a {
	color: var(--ozc-fs-link)}

/* ---------- Cantidad + Cotizar ----------
   El tema pone `display: contents` en __cta, asi que su relleno y su borde
   no llegan a pintarse: el separador y el aire van en el form, que es el
   elemento real de la rejilla. */
.ozc-single-product--pack-faca .ozc-single-product__summary .ozc-single-product__cta {
	padding-top: 0;
	border-top: 0}

.ozc-single-product--pack-faca .ozc-single-product__summary .ozc-single-product__cta form.cart {
	margin: 18px 0 0;
	padding-top: 18px;
	border-top: 1px solid var(--ozc-fs-line)}

.ozc-single-product--pack-faca .ozc-single-product__summary .ozc-single-product__wa {
	margin-top: 12px}

.ozc-single-product--pack-faca .ozc-single-product__summary .ozc-single-product__meta {
	margin-top: 12px}

.ozc-single-product--pack-faca .ozc-single-product__cta form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin: 0}

.ozc-single-product--pack-faca .ozc-single-product__cta .oz-qty-stepper {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	padding: 4px;
	background: #ffffff;
	border: 1px solid #d7dee7;
	border-radius: 9px}

.ozc-single-product--pack-faca .ozc-single-product__cta .oz-qty-stepper__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: var(--ozc-fs-title);
	font-size: 1.05rem;
	line-height: 1;
	cursor: pointer;
	transition: background-color .18s ease}

.ozc-single-product--pack-faca .ozc-single-product__cta .oz-qty-stepper__btn:hover {
	background: #eef2f7}

.ozc-single-product--pack-faca .ozc-single-product__cta .oz-qty-stepper__input {
	width: 42px;
	min-width: 0;
	height: 30px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ozc-fs-title);
	font-size: .95rem;
	font-weight: 700;
	text-align: center;
	-moz-appearance: textfield;
	appearance: textfield}

.ozc-single-product--pack-faca .ozc-single-product__cta .oz-qty-stepper__input::-webkit-outer-spin-button,
.ozc-single-product--pack-faca .ozc-single-product__cta .oz-qty-stepper__input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0}

.ozc-single-product--pack-faca .ozc-single-product__cta button.single_add_to_cart_button,
.ozc-single-product--pack-faca .ozc-single-product__cta .single_add_to_cart_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 12px 26px !important;
	background: var(--ozc-fs-accent) !important;
	border: 0 !important;
	border-radius: 9px !important;
	color: #ffffff !important;
	font-size: .95rem;
	font-weight: 700;
	line-height: 1.2;
	text-transform: none;
	transition: background-color .2s ease}

.ozc-single-product--pack-faca .ozc-single-product__cta .single_add_to_cart_button:hover {
	background: #16407f !important}

/* ---------- WhatsApp y meta ---------- */
.ozc-single-product--pack-faca .ozc-single-product__wa .ozc-product-card__wa-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 22px;
	background: transparent;
	border: 1px solid #cbd5e1;
	border-radius: 9px;
	color: #475569;
	font-size: .9rem;
	font-weight: 700;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease}

.ozc-single-product--pack-faca .ozc-single-product__wa .ozc-product-card__wa-btn:hover {
	background: #25d366;
	border-color: #25d366;
	color: #05391a}

.ozc-single-product--pack-faca .ozc-single-product__meta {
	padding-top: 14px;
	border-top: 1px solid var(--ozc-fs-line);
	color: var(--ozc-fs-muted);
	font-size: .88rem;
	line-height: 1.7}

.ozc-single-product--pack-faca .ozc-single-product__meta a {
	color: var(--ozc-fs-link);
	text-decoration: none}

.ozc-single-product--pack-faca .ozc-single-product__meta a:hover {
	text-decoration: underline}

@media (prefers-reduced-motion: reduce) {
	.ozc-single-product--pack-faca .ozc-single-product__cta .oz-qty-stepper__btn,
	.ozc-single-product--pack-faca .ozc-single-product__cta .single_add_to_cart_button,
	.ozc-single-product--pack-faca .ozc-single-product__wa .ozc-product-card__wa-btn,
	.ozc-single-product--pack-faca .ozc-single-product__media .flex-control-thumbs img {
		transition: none}
}

/* =========================================================
 * Botón «Carrito» compacto en tarjetas estrechas
 *
 * Umbral: la fila deja al botón el ancho de la tarjeta menos el
 * selector de cantidad (98), la separación (10) y el relleno (28),
 * o sea `tarjeta - 136`. La etiqueta necesita 99 px (texto 49 +
 * icono 15 + hueco 7 + relleno 28), así que por debajo de 235 px
 * de tarjeta ya no cabe: se deja sólo el icono.
 *
 * `font-size: 0` oculta el texto sin tocar el icono, que va en un
 * ::before con medidas propias — así no hace falta cambiar la
 * plantilla del plugin para envolver la etiqueta en un <span>.
 * ========================================================= */

@container ozc-card (max-width: 234px) {
	.ozc-product-card--pack-faca .ozc-product-card__btn--primary {
		gap: 0;
		padding: 9px 10px;
		font-size: 0;
		letter-spacing: 0;
	}

	.ozc-product-card--pack-faca .ozc-product-card__btn--primary::before {
		margin: 0 auto;
	}
}
