/* ══════════════════════════════════════════════════════════════
   Puentec Banner Producto — Full-width category/brand banner
   ══════════════════════════════════════════════════════════════ */

.pbp-banner-fullwidth {
	width: 100%;
	line-height: 0;
	overflow: hidden;
}

.pbp-banner-fullwidth img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 400px;
	object-fit: cover;
	object-position: center;
}

/* Hide the old .catalogo-banner if it somehow still renders */
.catalogo-banner {
	display: none !important;
}

/* ══════════════════════════════════════════════════════════════
   Subcategory Quick Navigation
   ══════════════════════════════════════════════════════════════ */

.pbp-subcategory-nav {
	width: 100%;
	background: #f8f8f8;
	border-bottom: 1px solid #e5e5e5;
	padding: 12px 0;
	line-height: 1;
}

.pbp-subcategory-nav__inner {
	max-width: min(95%, 1800px);
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	padding: 0 15px;
}

.pbp-subcategory-nav__pill {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 8px 16px;
	border-radius: 20px;
	background: #fff;
	border: 1px solid #ddd;
	color: #333;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.2s ease;
}

.pbp-subcategory-nav__pill:hover {
	background: #e67e22;
	border-color: #e67e22;
	color: #fff;
	text-decoration: none;
}

.pbp-subcategory-nav__pill--active {
	background: #e67e22;
	border-color: #e67e22;
	color: #fff;
}

.pbp-subcategory-nav__count {
	font-size: 11px;
	opacity: 0.7;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 780px) {
	.pbp-banner-fullwidth img {
		max-height: 200px;
	}

	.pbp-subcategory-nav__inner {
		justify-content: flex-start;
		overflow-x: auto;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 4px;
	}

	.pbp-subcategory-nav__inner::-webkit-scrollbar {
		display: none;
	}

	.pbp-subcategory-nav__pill {
		font-size: 12px;
		padding: 6px 12px;
	}
}

@media (max-width: 480px) {
	.pbp-banner-fullwidth img {
		max-height: 150px;
	}

	.pbp-subcategory-nav {
		padding: 8px 0;
	}

	.pbp-subcategory-nav__pill {
		font-size: 11px;
		padding: 5px 10px;
	}
}
