/* ===== Página "Marca" ===== */
/* ===== Página "Marca": carousel de productos + descripción ===== */
.rburgos-marca {
	width: 100%;
}

.rburgos-marca-top {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 30px;
	margin-bottom: 30px;
}

.rburgos-marca-carousel {
	position: relative;
	flex: 0 0 50%;
	max-width: 50%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background-color: #f5f5f5;
	border-radius: 4px;
}

.rburgos-marca-carousel-track {
	display: flex;
	height: 100%;
	transition: transform 0.4s ease;
}

.rburgos-marca-slide {
	flex: 0 0 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rburgos-marca-slide-link {
	display: block;
	width: 100%;
	height: 100%;
}

.rburgos-marca-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.rburgos-marca-carousel-prev,
.rburgos-marca-carousel-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 40px;
	height: 40px;
	border: 2px solid var(--main-brand-color);
	border-radius: 50%;
	background-color: var(--main-brand-color);
	color: #fff;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rburgos-marca-carousel-prev {
	left: 12px;
}

.rburgos-marca-carousel-next {
	right: 12px;
}

.rburgos-marca-carousel-prev:hover,
.rburgos-marca-carousel-next:hover {
	background-color: #fff;
	color: var(--main-brand-color);
	border-color: var(--main-brand-color);
}

.rburgos-marca-desc {
	flex: 1 1 0%;
	min-width: 0;
}

.rburgos-marca-productos {
	margin-top: 30px;
}

@media (max-width: 767px) {
	.rburgos-marca-carousel {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.rburgos-marca-desc {
		flex: 0 0 100%;
	}
}

/* ===== Página "Marca": carousel de productos ===== */
.rburgos-marca-productos-carousel {
	position: relative;
	max-width: 940px;
	margin: 0 auto 40px;
}

.rburgos-marca-productos-track {
	display: flex;
	justify-content: safe center;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.rburgos-marca-productos-track::-webkit-scrollbar {
	display: none;
}

.rburgos-marca-producto {
	flex: 0 0 220px;
	min-width: 0;
	box-sizing: border-box;
}

.rburgos-marca-producto-img {
	display: block;
	background-color: #f5f5f5;
}

.rburgos-marca-producto-img img {
	width: 100%;
	height: auto;
	display: block;
}

.rburgos-marca-producto-info {
	padding: 10px 4px 0;
	text-align: center;
}

.rburgos-marca-producto-info .product_sku {
	margin-bottom: 4px;
}

.rburgos-marca-producto-info .product_category {
	text-transform: uppercase;
	color: #999999;
	font-size: var(--font-size-xs);
	font-weight: normal;
	display: block;
	margin-bottom: 4px;
}

.rburgos-marca-producto-info h3 {
	margin: 6px 0 0;
	font-size: var(--font-size-sm);
	font-weight: 400;
	line-height: 1.3;
}

.rburgos-marca-producto-info h3 a {
	color: inherit;
	text-decoration: none;
}

.rburgos-marca-producto-info h3 a:hover {
	color: var(--main-brand-color);
}

.rburgos-marca-productos-prev,
.rburgos-marca-productos-next {
	position: absolute;
	top: 35%;
	transform: translateY(-50%);
	z-index: 2;
	width: 40px;
	height: 40px;
	border: 2px solid var(--main-brand-color);
	border-radius: 50%;
	background-color: var(--main-brand-color);
	color: #fff;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rburgos-marca-productos-prev {
	left: -50px;
}

.rburgos-marca-productos-next {
	right: -50px;
}

.rburgos-marca-productos-prev:hover,
.rburgos-marca-productos-next:hover {
	background-color: #fff;
	color: var(--main-brand-color);
	border-color: var(--main-brand-color);
}

/* Título centrado del carousel de productos. */
.rburgos-marca-productos-title {
	text-align: center;
	margin: 40px 0 15px;
	font-weight: 400;
}

@media (max-width: 767px) {
	.rburgos-marca-productos-prev {
		left: 0;
	}

	.rburgos-marca-productos-next {
		right: 0;
	}
}
