/**
 * GM Product Paginator - base styles.
 *
 * These are sensible defaults; every value can be overridden from the Elementor
 * "Estilo" tab of the "Paginador de Productos GM" widget.
 */

.gm-pgn {
	display: block;
	width: 100%;
}

.gm-pgn-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gm-pgn-cell {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gm-pgn-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-width: 40px;
	min-height: 40px;
	padding: 6px 12px;
	border-radius: 6px;
	background-color: #f2f2f2;
	color: #333333;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

a.gm-pgn-item {
	cursor: pointer;
}

a.gm-pgn-item:hover {
	background-color: #185a8d;
	color: #ffffff;
}

.gm-pgn-item.gm-pgn-current {
	background-color: #2271b1;
	color: #ffffff;
	font-weight: 700;
	cursor: default;
}

.gm-pgn-item.gm-pgn-dots {
	background-color: transparent;
	cursor: default;
}

.gm-pgn-item.gm-pgn-disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.gm-pgn-arrow {
	font-weight: 600;
	white-space: nowrap;
}

.gm-pgn-notice {
	padding: 12px 16px;
	border: 1px dashed #c9c9c9;
	border-radius: 6px;
	color: #777777;
	text-align: center;
}
