/* =========================================================================
   ELEVARTE — Carrito

   Dos paneles sobre el crema de la marca: lista de productos (blanco) a la
   izquierda y resumen de pedido (lila, sticky) a la derecha. En móvil se
   apilan, cada línea pasa a tarjeta y aparece una barra fija con el total.

   Se carga solo en la página del carrito (woocommerce/pz-cart.php).
   El marcado vive en woocommerce/cart/*.php.
   ========================================================================= */

body.woocommerce-cart,
body.woocommerce-cart .site,
body.woocommerce-cart .site-main {
	background: var(--pz-cream, #f4e9e1);
}

/* El carrito ocupa todo el hueco útil a la derecha de la cabecera lateral. */
body.woocommerce-cart .site {
	width: 100%;
	max-width: none;
	margin-inline: 0;
}

/* La barra verde «Mi carrito» ya hace de encabezado: la franja de título del
   tema sobra en esta página. */
body.woocommerce-cart .pz-page-title {
	display: none;
}

/* La página se arma con el maquetador (barra verde + shortcode). El maquetador
   saca cada sección a 100vw, y con la cabecera lateral fija eso se sale por la
   derecha. Se anula igual que en la portada: el ancho lo marca .oz-pb-root.

   Los selectores llevan `html body` y `.oz-pb-spacing-scope` a propósito: la
   regla nativa (contenedor.css) es `html body .oz-pb-root
   .oz-pb-section--theme.oz-pb-spacing-scope` con !important, así que hay que
   igualar o superar su especificidad para ganarle. */
html body.woocommerce-cart .oz-pb-root .oz-pb-section--theme.oz-pb-spacing-scope,
html body.woocommerce-cart .oz-pb-root .oz-pb-section--full.oz-pb-spacing-scope,
html body.woocommerce-cart .oz-pb-root .oz-pb-section--theme,
html body.woocommerce-cart .oz-pb-root .oz-pb-section--full {
	width: auto !important;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}
body.woocommerce-cart .oz-pb-root .oz-pb-inner--theme {
	max-width: 100% !important;
	padding-left: 0;
	padding-right: 0;
}
body.woocommerce-cart .entry-content > .oz-pb-root {
	box-sizing: border-box;
	padding: clamp(14px, 1.5vw, 26px) clamp(12px, 1.4vw, 26px) clamp(24px, 3vw, 48px);
}

/* =========================================================================
   0. Avisos de WooCommerce
   El tema deja los avisos en línea en el carrito (no como toast) a propósito:
   aquí pertenecen al formulario y hay que leerlos. Solo se les da la forma del
   resto de la página, porque salían con el estilo crudo de WooCommerce.
   ========================================================================= */

body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-error,
body.woocommerce-cart .woocommerce-info {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 16px;
	margin: 0 0 12px;
	padding: 14px 20px;
	border: 1px solid rgba(17, 17, 17, .08);
	border-left: 4px solid var(--pz-c-green, #14a75a);
	border-radius: 14px;
	background: #fff;
	color: #111;
	font-size: 14.5px;
	line-height: 1.45;
	list-style: none;
}
body.woocommerce-cart .woocommerce-error {
	border-left-color: #c0392b;
}
body.woocommerce-cart .woocommerce-info {
	border-left-color: var(--pz-c-blue, #0a61f0);
}
body.woocommerce-cart .woocommerce-message::before,
body.woocommerce-cart .woocommerce-error::before,
body.woocommerce-cart .woocommerce-info::before {
	content: none;
}
body.woocommerce-cart .woocommerce-message .button,
body.woocommerce-cart .woocommerce-error .button,
body.woocommerce-cart .woocommerce-info .button {
	margin-left: auto;
	padding: 8px 18px;
	border-radius: 999px;
	background: #111;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}
body.woocommerce-cart .woocommerce-notices-wrapper:empty {
	display: none;
}

.pz-cartpage {
	--pz-k-ink: #111111;
	--pz-k-muted: #5b5b5b;
	--pz-k-line: rgba(17, 17, 17, .1);
	--pz-k-lila: #e9defc;
	--pz-k-orange: var(--pz-c-orange, #f2561b);
	--pz-k-purple: var(--pz-c-purple, #a259ff);
	--pz-k-green: var(--pz-c-green, #14a75a);
	--pz-k-radius: clamp(18px, 1.6vw, 26px);
	--pz-k-gap: clamp(12px, 1.2vw, 18px);
	--pz-k-pad: clamp(18px, 2vw, 34px);

	position: relative;
	display: block;
	box-sizing: border-box;
	color: var(--pz-k-ink);
}

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

.pz-cartpage.is-busy {
	cursor: progress;
}
/* Durante la petición se atenúa y se bloquea el panel, pero no se colapsa:
   así no salta el scroll mientras se recalcula. */
.pz-cartpage.is-busy .pz-cartpage__items,
.pz-cartpage.is-busy .pz-cartpage__summary {
	opacity: .55;
	pointer-events: none;
	transition: opacity .18s ease;
}

/* =========================================================================
   1. Rejilla
   ========================================================================= */

.pz-cartpage__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) clamp(300px, 27vw, 396px);
	gap: var(--pz-k-gap);
	align-items: start;
}

.pz-cartpage__col {
	min-width: 0;
}

/* El resumen acompaña al scroll: el CTA queda siempre a la vista. */
.pz-cartpage__col--summary {
	position: sticky;
	top: clamp(12px, 1.6vw, 26px);
}

.pz-cartpage__panel {
	background: #fff;
	border: 1px solid var(--pz-k-line);
	border-radius: var(--pz-k-radius);
	padding: var(--pz-k-pad);
}

.pz-cartpage__panel-title {
	margin: 0;
	font-size: clamp(20px, 1.9vw, 30px);
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.15;
}

/* Otra hoja del sitio deja los <span> de los títulos en 11px y `display:flex`;
   aquí el contador tiene que acompañar al título. */
body.woocommerce-cart .pz-cartpage .pz-cartpage__count {
	display: inline;
	color: var(--pz-k-muted);
	font-size: .62em;
	font-weight: 700;
}

.pz-cartpage__panel-head {
	margin-bottom: clamp(14px, 1.4vw, 22px);
}

/* =========================================================================
   2. Lista de productos
   ========================================================================= */

.pz-cartpage__table {
	display: block;
}

.pz-cartpage__thead,
.pz-cartpage__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 7.5rem 8.5rem 7.5rem 2.75rem;
	align-items: center;
	gap: clamp(8px, .9vw, 16px);
}

.pz-cartpage__thead {
	padding-bottom: 12px;
	border-bottom: 1px solid var(--pz-k-line);
	color: var(--pz-k-muted);
	font-size: 13px;
}
.pz-cartpage__thead > span:nth-child(2),
.pz-cartpage__thead > span:nth-child(3),
.pz-cartpage__thead > span:nth-child(4) {
	text-align: center;
}

.pz-cartpage__row {
	padding: clamp(14px, 1.5vw, 22px) 0;
	border-bottom: 1px solid var(--pz-k-line);
}
.pz-cartpage__row:last-child {
	border-bottom: 0;
}
.pz-cartpage__row.is-going {
	opacity: .4;
}

.pz-cartpage__cell--product {
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.2vw, 20px);
	min-width: 0;
}

.pz-cartpage__thumb {
	flex: 0 0 auto;
	width: clamp(72px, 7vw, 104px);
	aspect-ratio: 3 / 4;
	border-radius: 14px;
	overflow: hidden;
	background: #f3ece7;
}
.pz-cartpage__thumb a,
.pz-cartpage__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pz-cartpage__info {
	min-width: 0;
}

.pz-cartpage__name {
	margin: 0 0 6px;
	font-size: clamp(15px, 1.15vw, 18px);
	font-weight: 800;
	line-height: 1.2;
}
.pz-cartpage__name a {
	color: inherit;
	text-decoration: none;
}
.pz-cartpage__name a:hover {
	text-decoration: underline;
}

/* Variaciones y datos personalizados que imprime wc_get_formatted_cart_item_data. */
.pz-cartpage__info .variation {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0 6px;
	margin: 0;
	color: var(--pz-k-muted);
	font-size: 13px;
	line-height: 1.5;
}
.pz-cartpage__info .variation dt {
	font-weight: 600;
}
.pz-cartpage__info .variation dt::after {
	content: ":";
}
.pz-cartpage__info .variation dd {
	margin: 0;
}
.pz-cartpage__info .variation dd p {
	margin: 0;
}

.pz-cartpage__note {
	margin: 6px 0 0;
	color: var(--pz-k-muted);
	font-size: 12px;
	line-height: 1.4;
}
.pz-cartpage__note--max {
	color: #a4560f;
}

.pz-cartpage__cell--price,
.pz-cartpage__cell--qty,
.pz-cartpage__cell--subtotal {
	text-align: center;
}

.pz-cartpage__price,
.pz-cartpage__subtotal {
	font-size: clamp(14px, 1.05vw, 17px);
	font-weight: 700;
	white-space: nowrap;
}
.pz-cartpage__price {
	color: var(--pz-k-muted);
	font-weight: 600;
}
.pz-cartpage__price del,
.pz-cartpage__subtotal del {
	margin-right: 4px;
	opacity: .55;
	font-weight: 500;
}

/* Etiqueta por celda: invisible en escritorio (ya está la cabecera) y visible
   cuando la fila pasa a tarjeta en móvil. */
.pz-cartpage__cell-label {
	display: none;
	color: var(--pz-k-muted);
	font-size: 12px;
}

/* --- Pastilla de cantidad --- */

.pz-cartpage__qty {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	padding: 4px;
	border-radius: 999px;
	background: #f4f1ee;
}

.pz-cartpage__qty-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--pz-k-ink);
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transition: background .18s ease, color .18s ease;
}
.pz-cartpage__qty-btn:hover:not(:disabled) {
	background: #fff;
}
.pz-cartpage__qty-btn:disabled {
	opacity: .35;
	cursor: not-allowed;
}

.pz-cartpage__qty-input {
	width: 3ch;
	min-width: 3ch;
	height: 32px;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: #fff;
	color: var(--pz-k-ink);
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	-moz-appearance: textfield;
}
.pz-cartpage__qty-input::-webkit-outer-spin-button,
.pz-cartpage__qty-input::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}
.pz-cartpage__qty-input:focus-visible {
	outline: 2px solid var(--pz-k-ink);
	outline-offset: 1px;
}

.pz-cartpage__qty-fixed {
	display: inline-block;
	min-width: 40px;
	font-weight: 700;
}

/* --- Quitar --- */

.pz-cartpage__cell--remove {
	display: flex;
	justify-content: flex-end;
}

/* La hoja de WooCommerce trae `.woocommerce a.remove{color:red!important}` con
   su propio tamaño y borde: hay que ganarle con !important para que el icono
   sea el de la papelera y no una «×» roja. */
body.woocommerce-cart .pz-cartpage a.pz-cartpage__remove {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 40px !important;
	height: 40px !important;
	font-size: inherit !important;
	border-radius: 999px !important;
	color: var(--pz-k-muted) !important;
	text-decoration: none;
	transition: background .18s ease, color .18s ease;
}
body.woocommerce-cart .pz-cartpage a.pz-cartpage__remove:hover,
body.woocommerce-cart .pz-cartpage a.pz-cartpage__remove:focus-visible {
	background: #fdeceb !important;
	color: #d33a2c !important;
}

.pz-cartpage__panel-foot {
	margin-top: clamp(14px, 1.4vw, 22px);
	padding-top: clamp(14px, 1.4vw, 20px);
	border-top: 1px solid var(--pz-k-line);
}

.pz-cartpage__backlink {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--pz-k-ink);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}
.pz-cartpage__backlink:hover {
	color: var(--pz-k-orange);
}

.pz-cartpage__nojs {
	margin-top: var(--pz-k-gap);
}

/* =========================================================================
   3. Resumen de pedido
   ========================================================================= */

.pz-cartpage__summary {
	background: var(--pz-k-lila);
	border-color: transparent;
}

.pz-cartpage__lines {
	margin: clamp(16px, 1.6vw, 24px) 0 0;
	padding: 0;
}

.pz-cartpage__line {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	padding: 7px 0;
	font-size: 15px;
}
.pz-cartpage__line dt {
	color: #2b2440;
	font-weight: 600;
}
.pz-cartpage__line dd {
	margin: 0;
	font-weight: 700;
	text-align: right;
	white-space: nowrap;
}

.pz-cartpage__line--discount dt {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.pz-cartpage__line--discount dd {
	color: #1a7f4b;
}
.pz-cartpage__coupon-remove {
	display: inline-flex;
	color: #6b5f86;
	text-decoration: none;
}
.pz-cartpage__coupon-remove:hover {
	color: #d33a2c;
}

.pz-cartpage__line--total {
	margin-top: 10px;
	padding-top: 16px;
	border-top: 1px solid rgba(43, 36, 64, .16);
	align-items: center;
}
.pz-cartpage__line--total dt {
	font-size: clamp(20px, 1.7vw, 28px);
	font-weight: 800;
	letter-spacing: -.02em;
}
.pz-cartpage__line--total dd {
	font-size: clamp(20px, 1.8vw, 30px);
	font-weight: 800;
	letter-spacing: -.02em;
}

/* Envío. Con un único método la fila se lee como las demás (concepto a la
   izquierda, importe a la derecha); con varios, la lista de opciones ocupa
   todo el ancho. El destino y la calculadora van en su propia fila. */
.pz-cartpage__line--shipping:not(.pz-cartpage__line--shipping-one) {
	flex-direction: column;
	align-items: stretch;
}
.pz-cartpage__line--shipping:not(.pz-cartpage__line--shipping-one) dd {
	text-align: left;
	white-space: normal;
	font-weight: 600;
}
.pz-cartpage__line--shipmeta {
	padding-top: 0;
}
.pz-cartpage__line--shipmeta dd {
	width: 100%;
	text-align: left;
	white-space: normal;
	font-weight: 500;
}
.pz-cartpage__ship-hint {
	display: block;
	margin-bottom: 4px;
	color: #6b5f86;
	font-size: 13px;
	font-weight: 600;
}
.pz-cartpage__summary ul#shipping_method {
	margin: 0;
	padding: 0;
	list-style: none;
}
.pz-cartpage__summary ul#shipping_method li {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 3px 0;
	font-size: 14px;
}
.pz-cartpage__summary .woocommerce-shipping-destination {
	margin: 6px 0 0;
	color: #6b5f86;
	font-size: 12.5px;
}
.pz-cartpage__summary .shipping-calculator-button {
	color: var(--pz-k-purple);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}
.pz-cartpage__summary .shipping-calculator-button:hover {
	text-decoration: underline;
}
.pz-cartpage__summary .shipping-calculator-form {
	margin-top: 10px;
}
.pz-cartpage__summary .shipping-calculator-form p {
	margin: 0 0 8px;
}
.pz-cartpage__summary .shipping-calculator-form input,
.pz-cartpage__summary .shipping-calculator-form select,
.pz-cartpage__summary .select2-container .select2-selection--single {
	width: 100%;
	height: 42px;
	padding: 0 12px;
	border: 1px solid rgba(43, 36, 64, .18);
	border-radius: 12px;
	background: #fff;
	font-size: 14px;
}
.pz-cartpage__summary .shipping-calculator-form button {
	width: 100%;
	height: 42px;
	border: 0;
	border-radius: 999px;
	background: var(--pz-k-purple);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

/* --- Cupón --- */

.pz-cartpage__coupon {
	margin-top: clamp(14px, 1.4vw, 20px);
	padding-top: clamp(14px, 1.4vw, 20px);
	border-top: 1px solid rgba(43, 36, 64, .16);
}

.pz-cartpage__coupon-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: #2b2440;
	font-size: 15px;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
}
.pz-cartpage__coupon-toggle .pz-i {
	transition: transform .22s ease;
}
.pz-cartpage__coupon-toggle[aria-expanded="true"] .pz-i {
	transform: rotate(180deg);
}

.pz-cartpage__coupon-body {
	margin-top: 12px;
}

.pz-cartpage__coupon-row {
	display: flex;
	gap: 8px;
}

.pz-cartpage__coupon-input {
	flex: 1 1 auto;
	min-width: 0;
	height: 46px;
	padding: 0 14px;
	border: 1px solid rgba(43, 36, 64, .18);
	border-radius: 999px;
	background: #fff;
	color: var(--pz-k-ink);
	font-size: 14px;
}
.pz-cartpage__coupon-input::placeholder {
	color: #9b93ad;
}

.pz-cartpage__coupon-apply {
	flex: 0 0 auto;
	height: 46px;
	padding: 0 22px;
	border: 0;
	border-radius: 999px;
	background: var(--pz-k-purple);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: filter .18s ease;
}
.pz-cartpage__coupon-apply:hover {
	filter: brightness(.94);
}

.pz-cartpage__coupon-msg {
	margin: 8px 0 0;
	color: #1a7f4b;
	font-size: 13px;
	line-height: 1.4;
}
.pz-cartpage__coupon-msg:empty {
	display: none;
}
.pz-cartpage__coupon-msg.is-error {
	color: #c0392b;
}

/* --- Botones --- */

.pz-cartpage__cta {
	display: grid;
	gap: 10px;
	margin-top: clamp(16px, 1.6vw, 24px);
}

.pz-cartpage__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 56px;
	padding: 12px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: clamp(15px, 1.15vw, 18px);
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: transform .18s ease, background .18s ease, color .18s ease;
}
.pz-cartpage__btn:hover {
	transform: translateY(-2px);
}

.pz-cartpage__btn--primary {
	background: var(--pz-k-orange);
	color: #fff;
}
.pz-cartpage__btn--primary:hover {
	background: #d84410;
	color: #fff;
}

.pz-cartpage__btn--ghost {
	background: #fff;
	border-color: rgba(17, 17, 17, .14);
	color: var(--pz-k-ink);
}
.pz-cartpage__btn--ghost:hover {
	background: #fff;
	border-color: var(--pz-k-ink);
}

/* Botones de pago exprés que otras extensiones cuelgan del hook. */
.pz-cartpage__cta .wc-proceed-to-checkout {
	display: grid;
	gap: 10px;
	padding: 0;
}
.pz-cartpage__cta .wc-proceed-to-checkout:empty {
	display: none;
}

/* --- Confianza --- */

.pz-cartpage__trust {
	margin: clamp(16px, 1.6vw, 24px) 0 0;
	padding: clamp(14px, 1.4vw, 20px) 0 0;
	border-top: 1px solid rgba(43, 36, 64, .16);
	list-style: none;
	display: grid;
	gap: 14px;
}
.pz-cartpage__trust li > *,
.pz-cartpage__trust li {
	display: flex;
	align-items: center;
	gap: 12px;
}
.pz-cartpage__trust a {
	color: inherit;
	text-decoration: none;
	width: 100%;
}
.pz-cartpage__trust a:hover strong {
	color: var(--pz-k-purple);
}
.pz-cartpage__trust span {
	display: block;
	flex: 1 1 auto;
	color: #4a4358;
	font-size: 13px;
	line-height: 1.4;
}
.pz-cartpage__trust strong {
	display: block;
	color: var(--pz-k-ink);
	font-size: 14.5px;
	font-weight: 800;
}
.pz-cartpage__trust .pz-i {
	flex: 0 0 auto;
	color: var(--pz-k-ink);
}
.pz-cartpage__trust .pz-i--whatsapp {
	color: #25d366;
}

/* =========================================================================
   4. Carrito vacío
   ========================================================================= */

.pz-cartpage__empty {
	display: grid;
	justify-items: center;
	gap: 10px;
	max-width: 520px;
	margin: 0 auto;
	padding: clamp(34px, 5vw, 64px) var(--pz-k-pad);
	text-align: center;
}
.pz-cartpage__empty-ic {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	border-radius: 999px;
	background: var(--pz-k-lila);
	color: var(--pz-k-ink);
}
.pz-cartpage__empty-title {
	margin: 8px 0 0;
	font-size: clamp(21px, 2vw, 30px);
	font-weight: 800;
	letter-spacing: -.02em;
}
.pz-cartpage__empty-text {
	margin: 0;
	max-width: 40ch;
	color: var(--pz-k-muted);
	font-size: 15px;
	line-height: 1.5;
}
.pz-cartpage__empty .pz-cartpage__btn {
	margin-top: 8px;
	min-width: 240px;
}

/* =========================================================================
   5. Aviso flotante (quitar / deshacer)
   ========================================================================= */

.pz-cartpage__toast {
	position: fixed;
	left: 50%;
	bottom: 24px;
	z-index: 60;
	display: flex;
	align-items: center;
	gap: 16px;
	max-width: min(92vw, 460px);
	padding: 14px 20px;
	border-radius: 16px;
	background: var(--pz-k-ink);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 12px 30px rgba(17, 17, 17, .28);
	opacity: 0;
	transform: translate(-50%, 12px);
	pointer-events: none;
	transition: opacity .22s ease, transform .22s ease;
}
.pz-cartpage__toast.is-on {
	opacity: 1;
	transform: translate(-50%, 0);
	pointer-events: auto;
}
.pz-cartpage__toast.is-error {
	background: #b3271b;
}
.pz-cartpage__toast-undo {
	flex: 0 0 auto;
	color: var(--pz-c-yellow, #fdb913);
	font-weight: 800;
	text-decoration: underline;
	white-space: nowrap;
}

/* =========================================================================
   6. Barra fija de móvil
   ========================================================================= */

.pz-cartpage__bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 55;
	display: none;
	align-items: center;
	gap: 14px;
	padding: 12px clamp(12px, 4vw, 20px);
	background: #fff;
	border-top: 1px solid var(--pz-k-line);
	box-shadow: 0 -8px 24px rgba(17, 17, 17, .1);
	transition: transform .24s ease;
}
.pz-cartpage__bar.is-off {
	transform: translateY(110%);
}
.pz-cartpage__bar-total {
	flex: 1 1 auto;
	min-width: 0;
}
.pz-cartpage__bar-label {
	display: block;
	color: var(--pz-k-muted);
	font-size: 12px;
}
.pz-cartpage__bar-value {
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -.02em;
}
.pz-cartpage__bar .pz-cartpage__btn {
	flex: 0 0 auto;
	min-height: 48px;
	padding: 10px 22px;
	font-size: 15px;
}

/* =========================================================================
   7. Responsive
   ========================================================================= */

@media (max-width: 1024px) {
	.pz-cartpage__grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.pz-cartpage__col--summary {
		position: static;
	}
	/* El resumen ya no cabe al lado: se muestra la barra fija. */
	.pz-cartpage__bar {
		display: flex;
	}
	/* Hueco para que la barra no tape el último botón del resumen. */
	.pz-cartpage {
		padding-bottom: 84px;
	}
}

@media (max-width: 760px) {
	/* Cada línea pasa a tarjeta: la cabecera de columnas sobra y cada dato
	   lleva su propia etiqueta. */
	.pz-cartpage__thead {
		display: none;
	}

	.pz-cartpage__row {
		grid-template-columns: auto minmax(0, 1fr);
		grid-template-areas:
			"product product"
			"price   qty"
			"subtotal remove";
		gap: 12px 14px;
		align-items: center;
	}
	.pz-cartpage__cell--product { grid-area: product; }
	.pz-cartpage__cell--price { grid-area: price; }
	.pz-cartpage__cell--qty { grid-area: qty; }
	.pz-cartpage__cell--subtotal { grid-area: subtotal; }
	.pz-cartpage__cell--remove { grid-area: remove; }

	.pz-cartpage__cell--price,
	.pz-cartpage__cell--qty,
	.pz-cartpage__cell--subtotal {
		text-align: left;
	}
	.pz-cartpage__cell--qty {
		justify-self: end;
	}
	.pz-cartpage__cell--qty,
	.pz-cartpage__cell--price,
	.pz-cartpage__cell--subtotal {
		display: flex;
		flex-direction: column;
		gap: 4px;
	}
	.pz-cartpage__cell--qty {
		align-items: flex-end;
	}

	.pz-cartpage__cell-label {
		display: block;
	}

	.pz-cartpage__subtotal {
		font-size: 18px;
		font-weight: 800;
	}

	.pz-cartpage__thumb {
		width: 84px;
	}
}

@media (max-width: 420px) {
	.pz-cartpage__panel {
		padding: 18px 16px;
	}
	.pz-cartpage__thumb {
		width: 72px;
	}
	.pz-cartpage__name {
		font-size: 15px;
	}
	.pz-cartpage__bar-value {
		font-size: 17px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pz-cartpage__btn,
	.pz-cartpage__toast,
	.pz-cartpage__bar,
	.pz-cartpage__coupon-toggle .pz-i {
		transition: none;
	}
	.pz-cartpage__btn:hover {
		transform: none;
	}
}
