/* Tecactiva - Bivi | Cart Suggested Products */

.tca-bivi-cart-suggested {
	padding: 12px 16px;
	border-top: 1px solid #e5e5e5;
}

.tca-bivi-cart-suggested__title {
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .3px;
	text-align: center;
	margin-bottom: 10px;
}

.tca-bivi-cart-suggested__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.tca-bivi-cart-suggested__item {
	display: flex;
	flex-direction: column;
	text-align: center;
	text-decoration: none;
	color: inherit;
}

.tca-bivi-cart-suggested__image img {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: 6px;
}

.tca-bivi-cart-suggested__name {
	font-size: 11px;
	line-height: 1.3;
	margin-bottom: 4px;
}

.tca-bivi-cart-suggested__price {
	font-size: 11px;
	font-weight: 600;
	margin-bottom: 6px;
}

.tca-bivi-cart-suggested__cta {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	background: #000;
	color: #fff;
	padding: 6px 4px;
	border-radius: 2px;
}

/* Contenedor fijo abajo (subtotal + botones), creado por
   assets/js/cart-suggested-products.js envolviendo ambos elementos. */
.tca-bivi-cart-sticky-footer {
	position: sticky;
	bottom: 0;
	background: #fff;
	z-index: 2;
	padding-top: 8px;
	box-shadow: 0 -4px 8px -6px rgba(0, 0, 0, .15);
}

/* Barra de envío gratis fija arriba, solo dentro del carrito lateral
   (no afecta la de la página de carrito completa). */
.off-canvas .tca-bivi-free-shipping-bar {
	position: sticky;
	top: 0;
	background: #fff;
	z-index: 2;
}