/* ============================================
   ESTILOS ESPECÍFICOS DE LA PÁGINA HOME
   ============================================ */

/* Hero Section - Asegurar texto blanco y visible */
.hero-2-single .hero-2-content h1,
.hero-2-single .hero-2-content h2 {
	color: #ffffff !important;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
	font-weight: 800;
}

.hero-2-single .hero-2-content p {
	color: #ffffff !important;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Asegurar overlay oscuro para mejor contraste */
.hero-2-single.hero-overlay::before {
	background: #030a15;
	opacity: 0.5 !important;
}

/* Featured Products Area */
.featured-products-area {
	background: #f8f9fa;
}

.featured-products-slider {
	margin-top: 4rem;
	padding-bottom: 2rem;
}

.featured-products-slider .owl-stage-outer {
	padding: 10px 0;
}

.featured-product-item {
	padding: 0 15px;
}

.featured-product-item .products-box {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	border: 1px solid #e9ecef;
}

.featured-product-item .products-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	border-color: var(--clr-def, #007bff);
}

.featured-product-item .products-pic {
	width: 100%;
	height: 220px;
	overflow: hidden;
	position: relative;
	background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 25px;
}

.featured-product-item .products-pic img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: center;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-product-item .products-box:hover .products-pic img {
	transform: scale(1.08);
}

.featured-product-item .products-desc {
	padding: 1.75rem 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	background: #ffffff;
}

.featured-product-item .products-desc h3 {
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.3;
}

.featured-product-item .products-desc h3 a {
	color: #212529;
	text-decoration: none;
	transition: color 0.3s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.featured-product-item .products-desc h3 a:hover {
	color: var(--clr-def, #007bff);
}

.featured-product-item .products-desc .text-muted {
	font-size: 1.1rem;
	color: #6c757d;
	margin-bottom: 0.5rem;
	line-height: 1.4;
}

.featured-product-item .products-desc .text-muted:last-of-type {
	margin-bottom: 0.75rem;
}

.featured-product-item .product-excerpt {
	font-size: 1.25rem;
	color: #495057;
	line-height: 1.6;
	margin-bottom: 1.25rem;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.featured-product-item .add-to-cart {
	margin-top: auto;
}

.featured-product-item .cart-btn {
	display: block;
	width: 100%;
	text-align: center;
	padding: 12px 24px;
	background: var(--clr-def, #007bff);
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 1.35rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 3px 10px rgba(0, 123, 255, 0.25);
	letter-spacing: 0.3px;
}

.featured-product-item .cart-btn:hover {
	background: #0056b3;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 123, 255, 0.35);
	color: #ffffff;
}

/* Mejorar los dots del carousel de productos destacados */
.featured-products-slider.owl-theme .owl-dots {
	margin-top: 3rem;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	max-width: 100%;
	overflow: hidden;
}

.featured-products-slider.owl-theme .owl-dots .owl-dot {
	outline: none;
}

.featured-products-slider.owl-theme .owl-dots .owl-dot span {
	width: 8px;
	height: 8px;
	margin: 0 3px;
	background: #dee2e6;
	display: block;
	border-radius: 50%;
	transition: all 0.3s ease;
	opacity: 0.6;
}

.featured-products-slider.owl-theme .owl-dots .owl-dot.active span,
.featured-products-slider.owl-theme .owl-dots .owl-dot:hover span {
	background: var(--clr-def, #007bff);
	width: 24px;
	border-radius: 6px;
	opacity: 1;
	box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

/* Ocultar dots completamente en mobile */
@media (max-width: 767px) {
	.featured-products-slider.owl-theme .owl-dots {
		display: none !important;
	}
}

/* Limitar dots en tablet */
@media (min-width: 768px) and (max-width: 991px) {
	.featured-products-slider.owl-theme .owl-dots .owl-dot:nth-child(n+7) {
		display: none;
	}
}

/* Limitar dots en desktop */
@media (min-width: 992px) {
	.featured-products-slider.owl-theme .owl-dots .owl-dot:nth-child(n+8) {
		display: none;
	}
}

@media (max-width: 768px) {
	.featured-product-item .products-pic {
		height: 200px;
	}

	.featured-product-item .products-desc {
		padding: 1.5rem;
	}
}

/* Estilos para el logo de Sika Industry - mismo tamaño que el logo de Sika normal */
.partner-sldr-2 .sika-industry-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
}

.partner-sldr-2 .sika-industry-logo img {
	max-height: 120px !important;
	max-width: 200px !important;
	width: auto !important;
	height: auto !important;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: .85;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transform: scale(1);
}

.partner-sldr-2 .sika-industry-logo:hover img {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.08) translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

