/* Estilos del modulo Catalogo POS */

.pos-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	width: 90%;
	margin: 0 auto;
	padding: 20px 0;
}

.pos-tarjeta {
	display: flex;
	flex-direction: row;
	align-items: center;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 20px;
	gap: 15px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pos-tarjeta:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.pos-tarjeta-imagen {
	flex: 0 0 40%;
}

.pos-tarjeta-imagen img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
}

.pos-tarjeta-contenido {
	flex: 1;
}

.pos-tarjeta-contenido h3 {
	margin: 0 0 10px;
	font-size: 1.3rem;
	font-weight: 600;
	color: #004B85;
}

.pos-tarjeta-contenido p {
	margin: 0 0 12px;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #555;
}

.pos-precio-caja {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 12px 18px;
	border-radius: 10px;
	background: #e6f4fb;
	border: 1px solid #cde8f6;
	max-width: 260px;
}

.pos-precio-bs {
	font-size: 1.3rem;
	font-weight: 700;
	color: #004B85;
}

.pos-lista-precios {
	display: flex;
	flex-direction: column;
	background: #f5f7fa;
	border: 1px solid #e0e4ea;
	border-radius: 10px;
	padding: 4px 16px;
	max-width: 320px;
}

.pos-precio-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
}

.pos-precio-item + .pos-precio-item {
	border-top: 1px solid #e0e4ea;
}

.pos-precio-etiqueta {
	font-size: 0.95rem;
	color: #444;
}

.pos-precio-monto {
	font-size: 1rem;
	font-weight: 700;
	color: #004B85;
	white-space: nowrap;
}

.pos-paginacion {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 30px;
}

.pos-paginacion .pos-pagina-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	border-radius: 6px;
	background: #f5f7fa;
	border: 1px solid #e0e4ea;
	color: #004B85;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pos-paginacion .pos-pagina-link:hover {
	background: #e6f4fb;
	transform: translateY(-2px);
}

.pos-paginacion .pos-pagina-link.pos-pagina-activa {
	background: #004B85;
	border-color: #004B85;
	color: #fff;
}

@media (max-width: 992px) {
	.pos-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 576px) {
	.pos-grid {
		width: 100%;
	}

	.pos-tarjeta {
		flex-direction: column;
	}

	.pos-tarjeta-imagen {
		flex: 0 0 auto;
		width: 100%;
	}

	.pos-precio-caja,
	.pos-lista-precios {
		max-width: 100%;
	}
}
