:root {
	--font-primary: "Gothic A1", sans-serif;
	--font-secondary: "Saira", sans-serif;
	--color-green: #35cc43;
	--color-primary: #35cc43;
	--color-backgroud-body: #f8f8f8;
	--color-red: #f91d21;
}

.form-control:disabled,
.form-control[readonly] {
	background-color: #e9ecef;
	opacity: 1;
}

body {
	background: var(--color-backgroud-body);
}

h2 {
	font-size: var(--font-size-xlarge);
}

.section-title h2 {
	font-weight: 700;
	font-size: var(--font-size-super);
	text-align: center;
}

.section-title h2:before {
	display: none;
}

.nav-logo img {
	max-width: 70%;
	max-height: inherit;
	height: auto;
}

.nav-container .menu-main > li > a {
	color: var(--color-light-1);
	font-weight: 900;
	font-size: 15px;
}

.hero-center-content a {
	color: var(--color-light-1);
}

.hero-image-content__text.slide,
.hero-image-content__text.shop {
	background-color: rgba(0, 0, 0, 0);
	max-width: 100%;
	width: 100%;
	margin-left: auto;
	padding: 30px;
	left: 50%;
	-webkit-transform: translate(-45%, -50%);
	transform: translate(-45%, -50%);
}

.hero-image-content__text h1,
.hero-image-content__text h1 {
	font-size: var(--font-size-xxl);
}

.hero-image-content__text.slide h2,
.hero-image-content__text.shop h2 {
	font-size: var(--font-size-xxl);
	color: var(--color-light-1);
}

.hero-image-content__text h1,
.hero-image-content__text h1 span {
	color: var(--color-light-1);
}

.hero-image-content__text.shop img {
	width: 50%;
}

.hero-image-content__text.slide:before,
.hero-image-content__text.shop:before {
	background-color: initial;
}

.swiper__slide-fullscreen:before,
.swiper__hero-slide-shop:before {
	display: none;
}

@media (min-width: 576px) {
	.hero-image-content__text.slide,
	.hero-image-content__text.shop {
		max-width: 100%;
		width: 100%;
		margin-left: auto;
		padding: 30px;
		left: 50%;
		-webkit-transform: translate(-45%, -50%);
		transform: translate(-45%, -50%);
	}
	
	.hero-image-content__text h1,
	.hero-image-content__text h1 {
		font-size: var(--font-size-super);
	}
	
	.hero-image-content__text.shop img {
		width: 30%;
	}
}

@media (min-width: 768px) {
	.hero-image-content__text.slide,
	.hero-image-content__text.shop {
		max-width: 100%;
		width: 100%;
		margin-left: auto;
		padding: 30px;
		left: 50%;
		-webkit-transform: translate(-42%, -50%);
		transform: translate(-42%, -50%);
	}
	
	.hero-image-content__text h1,
	.hero-image-content__text h1 {
		font-size: 6rem;
	}
}

@media (min-width: 992px) {
	.hero-image-content__text.slide,
	.hero-image-content__text.shop {
		max-width: 100%;
		width: 100%;
		margin-left: auto;
		padding: 30px;
		left: 50%;
		-webkit-transform: translate(-45%, -50%);
		transform: translate(-45%, -50%);
	}
}

@media (min-width: 1200px) {
	.hero-image-content__text.slide,
	.hero-image-content__text.shop {
		max-width: 100%;
		width: 100%;
		margin-left: auto;
		padding: 30px;
		left: 50%;
		-webkit-transform: translate(-44%, -50%);
		transform: translate(-44%, -50%);
	}
	
	.hero-image-content__text.shop img {
		width: 25rem;
	}
}

.wishlist-icon .fa-heart:before,
.header-search .fa-search:before,
.account-icon .fa-user:before,
.cart-icon .fa-shopping-basket:before {
	color: var(--color-light-1);
}

.is-sticky .nav-container .menu-main > li > a {
	color: var(--color-white);
}

.is-sticky .wishlist-icon .fa-heart:before,
.is-sticky .header-search .fa-search:before,
.is-sticky .account-icon .fa-user:before,
.is-sticky .cart-icon .fa-shopping-basket:before {
	color: var(--color-white);
}

@media screen and (max-width: 1199px) {
	.hc-nav-trigger span,
	.hc-nav-trigger span::before,
	.hc-nav-trigger span::after {
		background: var(--color-light-1) !important;
	}
}

.footer-logo img {
	max-width: 100%;
	max-height: none;
}

/* WhatsApp Button Styles */
.btn-whatsapp {
	background-color: #25d366;
	color: #ffffff;
	border: 2px solid #25d366;
	padding: 5px 10px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-whatsapp:hover {
	background-color: #128c7e;
	border-color: #128c7e;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:focus,
.btn-whatsapp:active {
	background-color: #075e54;
	border-color: #075e54;
	color: #ffffff;
	outline: none;
}

.btn-whatsapp i {
	font-size: 18px;
}

/* Floating WhatsApp Button (Optional) */
.whatsapp-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px;
	background-color: #25d366;
	color: #ffffff;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.whatsapp-float:hover {
	background-color: #128c7e;
	color: #ffffff;
	transform: scale(1.1);
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
	margin-top: 16px;
}

.site-footer .slidingbar-social li a {
	color: var(--color-black);
}

#back_to_top {
	right: 30px;
	left: auto;
}

.slidingbar-logo img {
	max-width: 122px;
	max-height: 45px;
}

.card-testimonial h2,
.card-testimonial h4,
.card-testimonial h5 {
	color: var(--color-white);
}

.card-stats {
	background: rgba(255, 255, 255, 0);
}

.card-stats h3 {
	color: var(--color-white);
}

.bg-green-custom {
	background-color: var(--color-green);
}

.text-green-custom {
	color: var(--color-green);
	font-weight: 700 !important;
}

.section-title,
.section-title.theme-dark {
	max-width: 100%;
}

.mou__widget_post_card-style-1 .post-tag {
	position: absolute;
	top: 0;
	right: 0;
	
	text-align: center;
	padding: 15px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.mou__widget_post_card-style-1 .post-tag a {
	color: var(--color-white);
	line-height: var(--line-height-100);
	font-weight: 700;
	font-size: 20px;
	display: block;
}

.rounded-4 {
	border-radius: 1.3rem !important;
}

header.site-header {
	background-color: black;
}

.is-sticky .nav-container .menu-main > li > a:before,
.nav-container .menu-main > li > a:before {
	background: var(--color-primary);
}

.site-header.is-sticky {
	background: var(--color-black);
}

@media screen and (max-width: 1199px) {
	.is-sticky .hc-nav-trigger span,
	.is-sticky .hc-nav-trigger span::before,
	.is-sticky .hc-nav-trigger span::after {
		background: var(--color-white) !important;
	}
}

.menu-item-has-children > a i {
	margin-left: 6px;
	font-size: 0.9em;
	vertical-align: middle;
	transition: transform 0.3s;
}

.menu-item-has-children:hover > a i {
	transform: rotate(180deg);
	color: var(--color-green);
}

.nav-container .menu-main > li > a:active,
.nav-container .menu-main > li > a.active,
.nav-container .menu-main > li > a:hover {
	color: var(--color-green);
}

.is-sticky .nav-container .menu-main > li > a:before,
.nav-container .menu-main > li > a:before {
	background: #000000;
}

.is-sticky .nav-container .menu-main > li > a:active,
.is-sticky .nav-container .menu-main > li > a.active,
.is-sticky .nav-container .menu-main > li > a:hover {
	color: var(--color-green);
}

input.submit,
.mou-mini-cart__buttons a,
.theme-btn button,
button.theme-btn,
.theme-btn a {
	background: var(--color-green) !important;
	font-weight: 700;
	font-size: var(--font-size-large);
	font-family: var(--font-secondary);
	padding: 2px 30px;
	transition: all 0.3s ease-in-out;
	transform: translateY(0);
}

footer.site-footer .theme-btn a {
	font-size: var(--font-size-medium);
	padding: 2px 12px;
}

.footer-top {
	background: var(--color-black);
}

.footer-bottom {
	background: var(--color-black);
}

.mou-mini-cart__buttons a:hover,
.theme-btn button:hover,
button.theme-btn:hover,
.theme-btn a:hover {
	background: rgba(255, 255, 255, 0) !important;
	border: 1px solid var(--color-green);
	color: var(--color-green);
	transform: translateY(0);
}

.theme-btn button:hover,
button.theme-btn:hover,
.theme-btn a:hover {
	color: var(--color-green);
}

.menu-main .sub-menu {
	background: var(--color-white);
}

.menu-main .sub-menu > li > a {
	color: var(--color-black);
	text-transform: uppercase;
}

.menu-main .sub-menu > li:first-child::before {
	border-color: transparent transparent var(--color-white) transparent;
}

.menu-main .sub-menu > li > a:hover {
	color: var(--color-green);
}

.menu-main .sub-menu .sub-sub-menu > li:hover,
.menu-main .sub-menu > li:hover {
	background: var(--color-white);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

footer .widget .widget-title.theme-dark {
	font-weight: 800 !important;
	font-family: var(--font-secondary);
}

.mou__widget_post_card-style-1 .tag {
	background: #f8f8f8;
	text-align: center;
	padding: 15px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.mou__widget_post_card-style-1 .tag a {
	color: var(--color-green);
	line-height: var(--line-height-100);
	font-weight: 700;
	font-size: 20px;
	display: block;
	font-family: var(--font-secondary);
}

.post-content__text h3 {
	font-family: var(--font-primary);
}

.slidingbar-social li a {
	color: var(--color-white);
	background: var(--color-black);
}

.widget .widget-title::before {
	content: "";
	display: none;
}

.widget .widget-title::after {
	content: "";
	display: none;
}

.client-logo {
	border: 0 solid;
	border-color: var(--color-dark-3);
	padding-top: 5rem;
	padding-bottom: 5rem;
	margin-bottom: 0;
}

.client-logo:hover {
	background-color: transparent;
	border-color: var(--color-primary);
}

.client-logo img {
	max-width: 100%;
}

.client-logo.text-start .logo-hover {
	margin-left: inherit;
	margin-right: inherit;
}

p.testimony-text {
	font-size: var(--font-size-super);
	font-family: var(--font-secondary);
}

.product-cat-wrapper:before {
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(0, 0, 0, 0)),
			to(rgba(0, 0, 0, 0))
	);
	background-image: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0),
			rgba(0, 0, 0, 0)
	);
}

.product-cat-wrapper .product-cat-text {
	position: relative;
	bottom: 0;
}

.product-cat-wrapper:hover {
	border: 1px solid var(--color-green);
	background-color: var(--color-white);
}

.product-cat-wrapper .product-cat-title h3 {
	color: var(--color-black);
	font-size: var(--font-size-xlarge);
	font-family: var(--font-secondary);
	font-weight: 600;
}

.product-cat-wrapper:hover .product-cat-title h3 {
	color: var(--color-black);
}

.product-cat-thumbnail {
	display: flex;
	justify-content: center;
	align-items: center;
}

.product-cat-wrapper:hover .product-cat-thumbnail img {
	-webkit-transform: none;
	transform: none;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

#news .mou__widget-section-title.social-network {
	background: var(--color-white);
}

footer.site-footer .footer-widget-1 .widget.widget_social a.h5 {
	color: var(--color-green);
}

.section-bg-image::before {
	background-color: var(--color-black);
}

.testimonial__slide_wrapper-style-3 {
	background: var(--color-white);
}

.testimonial__slider-style-3 .owl-item img {
	border: none;
	border-color: var(--color-primary);
}

.client-name h4 {
	color: var(--color-black);
	font-style: normal;
	font-size: var(--font-size-xlarge);
	font-family: var(--font-primary);
}

.testimonial-content__text .feedback p {
	color: var(--color-black);
	font-size: var(--font-size-medium);
	font-family: var(--font-primary);
}

.testimonial__slider-style-3 {
	background-color: var(--color-white);
}

.client-name {
	font-size: var(--font-size-large);
	font-family: var(--font-primary);
}

.feedback-quote i:before {
	font-size: var(--font-size-super);
	color: var(--color-black);
	margin: 0;
}

.feedback-quote .icon-quote {
	width: 32px !important;
}

@media (min-width: 768px) {
	.mou_simple-slider .owl-item.active {
		position: relative;
		padding: 0 15px;
	}
	
	.mou_simple-slider .owl-item:not(.active) + .owl-item.active {
		padding-left: 0;
	}
	
	.mou_simple-slider .owl-item.active:not(:has(+ .owl-item.active)) {
		padding-right: 0;
	}
	
	.mou_simple-slider .owl-item.active + .owl-item.active::after {
		content: "";
		position: absolute;
		left: 0;
		top: 15%;
		height: 60%;
		width: 1px;
		background-color: #212529;
	}
}

header .header-right-items .theme-btn a {
	font-size: var(--font-size-medium);
	padding: 2px 10px;
}

@media (max-width: 991.98px) {
	header .header-right-items .theme-btn a span {
		display: none;
	}
}

/* Swiper Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
	width: 50px;
	height: 50px;
	color: var(--color-white);
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
}

.swiper-button-prev:after,
.swiper-button-next:after {
	font-size: var(--font-size-super);
	color: var(--color-white);
	font-weight: bold;
	transition: all 0.3s;
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
	color: var(--color-green);
}

/* Swiper bullets centered with progress */
.swiper__hero-slider-shop .swiper-pagination {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.swiper__hero-slider-shop .swiper-pagination-bullet {
	width: 6%;
	height: 6px;
	background: var(--color-white);
	border-radius: 0;
	opacity: 1;
	overflow: hidden;
}

.swiper__hero-slider-shop .swiper-pagination-bullet .progress-bar {
	display: block;
	width: 0%;
	height: 100%;
	background: var(--color-green);
	transition: width 100ms linear;
}

.swiper__hero-slider-shop .progress-bar {
	padding: 0px;
}

.swiper__hero-slider-shop .swiper-pagination-bullet-active {
	background: var(--color-white);
}

/* Posicionamiento específico para sliders */
.swiper__widget-slide .swiper-button-prev,
.swiper__widget-slide .swiper-button-next {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

.swiper__widget-slide:hover .swiper-button-prev,
.swiper__widget-slide:hover .swiper-button-next {
	opacity: 1;
	visibility: visible;
}

.swiper-button-next {
	right: 10px;
	transform: rotate(0deg);
	top: auto;
}

.swiper-button-prev {
	left: 10px;
	transform: rotate(0deg);
	top: auto;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	padding-right: 0;
}

/* owl Style for product and testimonial*/
.owl-carousel .product-cat-wrapper img {
	display: block;
	width: unset;
	text-align: center;
	height: 200px;
}

.owl-dots {
	display: flex !important;
	justify-content: center;
	margin-top: 20px;
}

.owl-dot {
	position: relative;
	width: 5rem;
	height: 6px;
	margin: 0 8px;
	background: #e0e0e0;
	overflow: hidden;
	cursor: pointer;
}

.owl-dot .progress-bar {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background: var(--color-green);
	border-radius: 0;
	transition: none;
	padding: 0;
}

.owl-dot.active .progress-bar {
	animation: progressAnimation 4000ms linear forwards;
}

@keyframes progressAnimation {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
	background: var(--color-black);
}

/* Testimonial Slider Style 3 - Dots centered with progress */
.testimonial__slider-style-3 .owl-dots {
	display: flex !important;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
	gap: 12px;
}

.testimonial__slider-style-3 .owl-dot {
	position: relative;
	width: 5rem;
	height: 6px;
	margin: 0;
	background: #e0e0e0;
	overflow: hidden;
	cursor: pointer;
	border-radius: 0;
}

.testimonial__slider-style-3 .owl-dot .progress-bar {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background: var(--color-green);
	border-radius: 0;
	transition: none;
	padding: 0;
}

.testimonial__slider-style-3 .owl-dot.active {
	background: var(--color-black);
}

.owl-theme .owl-dots .owl-dot span {
	margin: 0 0;
	background: var(--color-green);
	border-radius: 0;
	width: 0;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: var(--color-green);
}

/* Catalog Styles */
.catalog-search h5,
.catalog-filters h5 {
	font-weight: 700;
	font-family: var(--font-secondary);
	color: var(--color-black);
	margin-bottom: 10px;
}

.catalog-search .input-group {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.catalog-search .form-control {
	border-right: none;
	padding: 12px 15px;
}

.catalog-search .btn {
	border-left: none;
	background-color: var(--color-black);
	color: var(--color-white);
	padding: 12px 20px;
}

.catalog-search .btn:hover {
	background-color: var(--color-green);
	color: var(--color-white);
}

.catalog-search .btn.text-danger{
	background-color: var(--color-white);
}

.catalog-filters .form-select {
	padding: 12px 15px;
	border: 1px solid #dee2e6;
	border-radius: 0.25rem;
	background-color: var(--color-white);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.catalog-filters .form-check-input {
	cursor: pointer;
}

.catalog-filters .form-check-input:checked {
	background-color: var(--color-green);
	border-color: var(--color-green);
}

.catalog-filters .form-check-label {
	cursor: pointer;
	font-weight: 500;
}

/* Pagination Top */
.pagination-top .pagination {
	margin-bottom: 0;
	margin-top: 0;
}

.pagination-top .page-item.active .page-link {
	background-color: transparent;
	border: none;
	color: var(--color-green);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 3px;
	text-underline-offset: 5px;
}

.pagination-top .page-link {
	color: var(--color-black);
	border: none;
	background-color: transparent;
	font-weight: 600;
	padding: 0.5rem 0.75rem;
}

.pagination-top .page-link:hover {
	color: var(--color-green);
	background-color: transparent;
}

/* Product Card Catalog Style */
.catalog-product-card {
	background: var(--color-white);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.catalog-product-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transform: translateY(-5px);
}

.catalog-product-card .product-image-wrapper {
	position: relative;
	padding: 20px;
	background-color: #ffffff;
}

.catalog-product-card .product-image-wrapper img {
	max-height: 200px;
	width: auto;
	margin: 0 auto;
	display: block;
}

.catalog-product-card .product-brand-logo {
	position: absolute;
	bottom: 10px;
	right: 10px;
}

.catalog-product-card .product-info {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.catalog-product-card .product-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--color-black);
	margin-bottom: 10px;
	min-height: 60px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: var(--font-secondary);
}

.catalog-product-card .product-price {
	color: var(--color-green);
}
.catalog-product-card .product-price .btn.btn-link i{
	color: var(--color-green);
}

.catalog-product-card .product-code,
.catalog-product-card .product-stock,
.catalog-product-card .product-unit,
.catalog-product-card .product-quantity_presentation {
	font-size: 13px;
	color: #666;
	line-height: 1.4;
}

.catalog-product-card .btn-success {
	background-color: var(--color-green);
	border-color: var(--color-green);
	font-weight: 700;
	padding: 2px;
	font-family: var(--font-secondary);
	margin-top: auto;
}

.catalog-product-card .btn-success:hover {
	background-color: #2db639;
	border-color: #2db639;
	transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.catalog-search,
	.catalog-filters {
		margin-bottom: 20px;
	}
	
	.pagination-top {
		text-align: center !important;
	}
	
	.pagination-top .pagination {
		justify-content: center !important;
	}
}

/* Nosotros Styles */

.section-black {
	background-color: #000;
	color: #fff;
	font-family: "Roboto", sans-serif;
	padding: 60px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.section-black .container {
	width: 100%;
	max-width: 1200px;
	text-align: center;
}

.section-black .main-title {
	font-size: clamp(2rem, 7vw, 4rem);
	text-transform: uppercase;
	font-weight: 790;
	letter-spacing: 2px;
	margin-bottom: 40px;
}

.section-black .grid-container {
	display: grid;
	grid-template-columns: 1fr 1px 1fr 1px 1fr;
	gap: 60px;
	align-items: start; /* CLAVE */
}

.section-black .column {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.section-black img {
	width: auto;
	height: 70px; /* MISMO TAMAÑO */
	margin-bottom: 20px;
}

.column-title {
	font-size: clamp(1.5rem, 4vw, 2rem);
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: white;
}

/*AGREGAR CSS  DMLOPEZ*/
.faq-header {
	text-align: center;
	background-color: #f1f2f3; /* gris claro */
	padding: 10rem 1rem 3rem;
}

.faq-sub-header {
	text-align: center;
	background-color: #f1f2f3; /* gris claro */
	padding: 5rem 1rem 3rem;
}

.faq-content-section {
	background-color: #ffffff;
	padding: 4rem 1rem 6rem;
}

.faq-title {
	font-family: var(--font-secondary);
	font-size: var(--font-size-xxl);
	font-weight: 600;
	font-weight: bold;
}

.faq-subtitle {
	margin-top: 0.5rem;
	font-size: 1rem;
	letter-spacing: 0.2em;
	color: #94a3b8; /* gris azulado */
}

.news-brand-item {
	position: relative;
	padding: 30px 20px;
}

.news-brand-box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.news-brand-item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background-color: #000000;
}

.news-brand-box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.news-brand-logo {
	object-fit: contain;
	pointer-events: none;
}

.news-brand-social {
	display: flex;
	gap: 10px;
	list-style: none;
}

.news-brand-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #000;
	color: #fff !important;
	font-size: 14px;
	text-decoration: none;
}


.accordion .accordion-item .accordion-content p {
	color: #000000;
}

/*FIN ACORDION DMLOPEZ*/

.column-text {
	font-size: clamp(1rem, 2.8vw, 1.25rem);
	line-height: 1.4;
	color: #e0e0e0;
	text-align: justify;
	max-width: 95%;
}

/* Separadores – desaparecen en móvil */
.separator {
	width: 1px;
	background-color: #ffffff;
	height: 280px;
	opacity: 0.6;
}

@media (max-width: 900px) {
	.separator {
		width: 100%;
		height: 1px;
	}
}

/* ---------------------------
   SECCIÓN BLANCA (HISTORIA)
  ----------------------------*/

.section-white {
	background: #fff;
	padding: 60px 20px;
	font-family: Arial, Helvetica, sans-serif;
}

.timeline-container {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	position: relative; /* added */
}

.left,
.right {
	flex: 1 1 300px;
}

/* LÍNEA VERTICAL HISTORIA */
.timeline-line {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 4px;
	background: black;
	transform: translateX(-50%);
}

/* Columna izquierda */
.left {
	position: relative;
	padding-left: 40px;
}

.year {
	font-size: clamp(2.5rem, 7vw, 80px);
	font-weight: 900;
	margin: 60px 0;
	font-style: italic;
	cursor: pointer;
	transition: transform 0.2s ease;
	width: fit-content;
}

.year:hover {
	transform: scale(1.15);
}

.dot {
	width: 22px;
	height: 22px;
	background: #35cc43;
	position: absolute;
	left: calc(50% - 11px);
	border-radius: 3px;
}

.dot.y2007 {
	top: 25%;
}

.dot.y2008 {
	top: 50%;
}

.dot.y2009 {
	top: 75%;
}

/* Columna derecha */
.right {
	padding-left: 40px;
}

.right h1 {
	font-size: clamp(2rem, 6vw, 55px);
	font-weight: 700;
	margin-bottom: 20px;
}

.piston {
	width: 160px;
	max-width: 100%;
	margin-bottom: 25px;
}

.text {
	font-size: clamp(1rem, 3vw, 20px);
	line-height: 1.4;
	max-width: 550px;
}

.arrow {
	width: 60px;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.arrow:hover {
	transform: scale(1.2);
}

/* MOBILE FIXES */
@media (max-width: 768px) {
	.timeline-line {
		display: none;
	}
	
	.left {
		padding-left: 0;
	}
	
	.right {
		padding-left: 0;
	}
	
	.dot {
		display: none;
	}
}

/* ---------------------------
     BANNER FULLSCREEN
  ----------------------------*/
.hero-banner {
	width: 100%;
	height: 100vh; /* alto completo */
	margin: 0;
	padding: 0;
	overflow: hidden;
	position: relative;
}

.hero-banner .hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* llena la pantalla sin deformarse */
	display: block;
}

.site-header .header-notification .counter {
	position: absolute;
	top: -10px;
	right: -10px;
	font-size: 10px;
	font-weight: 500;
	color: var(--color-white);
	text-align: center;
	line-height: 11px;
	min-width: 18px;
	height: 18px;
	border-radius: 30px;
	padding: 4px;
	background-color: var(--color-primary);
	display: inline-block;
}

/* Product Modal Styles */
#productModal .modal-content {
	border: none;
	border-radius: 0;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#productModal .btn-close {
	z-index: 10;
	opacity: 1;
	background-size: 16px;
	padding: 1rem;
}

#productModal .product-modal-gallery {
	background-color: #ffffff;
	height: 100%;
}

#productModal .main-image-wrapper {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
}

#productModal .main-image-wrapper img {
	max-height: 250px;
	width: auto;
	object-fit: contain;
}

#productModal .thumbnail-gallery {
	display: flex;
	gap: 10px;
}

#productModal .thumbnail-item {
	width: 70px;
	height: 70px;
	border: 2px solid #e0e0e0;
	border-radius: 4px;
	padding: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	background: #fff;
}

#productModal .thumbnail-item:hover,
#productModal .thumbnail-item.active {
	border-color: var(--color-green);
}

#productModal .thumbnail-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

#productModal .product-modal-info {
	padding: 30px;
}

#productModal .product-modal-title {
	font-family: var(--font-secondary);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-black);
	line-height: 1.4;
	margin-bottom: 20px;
}

#productModal .product-price {
	color: var(--color-green);
}

#productModal .product-code,
#productModal .product-stock,
#productModal .product-unit,
#productModal .product-quantity_presentation {
	font-size: 13px;
	color: #666;
	line-height: 1.4;
}

#productModal .btn-success {
	background-color: var(--color-green);
	border-color: var(--color-green);
	font-family: var(--font-secondary);
	font-size: 1rem;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	font-weight: 600;
}

#productModal .btn-success:hover {
	background-color: #2db639;
	border-color: #2db639;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(53, 204, 67, 0.4);
}

/* Modal Tabs */
#productModal .product-modal-tabs {
	background: #f8f9fa;
}

#productModal .product-tab-btn {
	font-family: var(--font-secondary);
	font-size: 15px;
	font-weight: 600;
	color: var(--color-black);
	cursor: pointer;
	transition: all 0.3s ease;
	border-bottom: 3px solid transparent;
}

#productModal .product-tab-btn:hover {
	background-color: #f0f0f0;
}

#productModal .product-tab-btn.active {
	background-color: #fff;
	border-bottom-color: var(--color-green);
}

#productModal .product-tab-btn i {
	transition: transform 0.3s ease;
	font-size: 12px;
}

#productModal .product-tab-btn.active i {
	transform: rotate(180deg);
}

#productModal .tab-content-wrapper {
	background: #fff;
	max-height: 200px;
	overflow-y: auto;
}

#productModal .tab-pane-custom {
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

#productModal .table {
	margin-bottom: 0;
	font-size: 14px;
}

#productModal .table th {
	font-weight: 700;
	background-color: #f8f9fa;
	font-family: var(--font-secondary);
}

#productModal .table td {
	vertical-align: middle;
}

#productModal #modalCaracteristicas li {
	font-size: 14px;
	color: #333;
}

#productModal #modalCaracteristicas i {
	color: var(--color-green);
}

/* Product card clickable elements */
.catalog-product-card .product-modal-trigger {
	cursor: pointer;
	text-decoration: none;
	transition: color 0.3s ease;
}

.catalog-product-card .product-modal-trigger:hover {
	color: var(--color-green) !important;
}

.catalog-product-card .product-image-wrapper .product-modal-trigger {
	display: block;
}

.catalog-product-card .product-image-wrapper .product-modal-trigger:hover img {
	transform: scale(1.05);
	transition: transform 0.3s ease;
}

/* Modal responsive */
@media (max-width: 767px) {
	#productModal .modal-dialog {
		margin: 10px;
	}
	
	#productModal .product-modal-info {
		padding: 20px;
	}
	
	#productModal .product-modal-title {
		font-size: 1.1rem;
	}
	
	#productModal .tab-content-wrapper {
		max-height: 150px;
	}
}

.quantity .input-text.qty {
	background: white;
}

/* Estilos personalizados para el selector de cantidad en el catálogo */
.catalog-product-card .quantity {
	display: flex;
	width: 100%;
}

.catalog-product-card .quantity .minus,
.catalog-product-card .quantity .plus {
	background-color: var(--color-green);
	border: 1px solid var(--color-green);
	color: white;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	width: 40px;
	height: 30px;
	transition: all 0.3s ease;
}

.catalog-product-card .quantity .minus:hover,
.catalog-product-card .quantity .plus:hover {
	background-color: #218838;
	border-color: #218838;
}

.catalog-product-card .quantity .input-text.qty {
	flex: 1;
	height: 30px;
	border: 1px solid var(--color-green);
	border-left: none;
	border-right: none;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	width: auto;
	min-width: 50px;
}

.catalog-product-card .quantity .input-text.qty:focus {
	outline: none;
	box-shadow: none;
}

/* Estilos para el selector de cantidad en el modal de producto */
.product-modal-info .quantity {
	display: flex;
	width: 100%;
}

.product-modal-info .quantity .minus,
.product-modal-info .quantity .plus {
	background-color: var(--color-green);
	border: 1px solid var(--color-green);
	color: white;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	width: 40px;
	height: 40px;
	transition: all 0.3s ease;
}

.product-modal-info .quantity .minus:hover,
.product-modal-info .quantity .plus:hover {
	background-color: #218838;
	border-color: #218838;
}

.product-modal-info .quantity .input-text.qty {
	flex: 1;
	height: 40px;
	border: 1px solid var(--color-green);
	border-left: none;
	border-right: none;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	width: auto;
	min-width: 50px;
	background: white;
}

.product-modal-info .quantity .input-text.qty:focus {
	outline: none;
	box-shadow: none;
}

.account-panel-header,
.cart-panel-header {
	text-align: left;
	padding: 15px;
}

.mou_offcanvas-account .header-account-close,
.mou_offcanvas-cart .header-cart-close {
	top: 12px;
}

.mou_offcanvas-account .header-account-close:before,
.mou_offcanvas-account .header-account-close:after,
.mou_offcanvas-cart .header-cart-close:before,
.mou_offcanvas-cart .header-cart-close:after {
	background: var(--color-black);
}

.widget_shopping_cart_footer .total {
	font-size: var(--font-size-small);
	color: var(--color-dark-2);
	padding: 0 0px;
	background: var(--color-white);
	margin: 0;
}

.widget_shopping_cart_footer .amount {
	font-size: var(--font-size-small);
}

.mou-mini-cart__buttons {
	margin-top: 0;
}

.mou-mini-cart__buttons a:last-child {
	color: var(--color-white);
	border: none;
	font-size: var(--font-size-medium);
}

.widget_shopping_cart_content .widget_shopping_cart_footer {
	padding: 0 15px 10px;
}

.widget_shopping_cart_content {
	padding-bottom: 150px;
}

.mini-cart-item__thumbnail {
	border: none;
}

.widget_shopping_cart_content ul.cart_list {
	padding: 0 0;
}


.widget_shopping_cart_content ul.cart_list .mini_cart_item:first-child {
	margin-top: 15px;
}

.widget_shopping_cart_content ul.cart_list .mini_cart_item {
	margin-top: 0;
	padding: 15px;
	padding-bottom: 0;
	padding-top: 0;
	align-items: end;
}

.widget_shopping_cart_content ul.cart_list .mini_cart_item {
	margin-bottom: 0;
}

.mini-cart-item__title {
	font-weight: 500;
	font-size: var(--font-size-xsmall);
	letter-spacing: 0;
	font-family: var(--font-secondary);
	color: var(--color-black);
	line-height: 0;
}

.mini_cart_item .quantity {
	font-family: var(--font-secondary);
}

.mini_cart_item .amount {
	color: var(--color-green);
	font-size: var(--font-size-small);
}

.mini_cart_item .amount span{
	font-weight: bold;
}

.mini_cart_item .mini-cart-item__delete {
	max-width: 20px;
	margin: 5px;
}

/* =============================================
   CART PAGE STYLES
   ============================================= */

.cart-table .cart-item {
	transition: background-color 0.2s ease;
}

.cart-table .cart-item:hover {
	background-color: #f8f9fa;
}

.cart-table .cart-item-details h6 {
	font-size: var(--font-size-small);
	line-height: 1.4;
	font-family: var(--font-secondary);
}

.cart-table .cart-item-details p {
	color: #666;
	font-size: 0.85rem;
}

/* Quantity selector for cart page */
.cart-table .quantity {
	display: flex;
}

.cart-table .quantity .minus,
.cart-table .quantity .plus {
	background-color: var(--color-green);
	border: 1px solid var(--color-green);
	color: white;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	width: 35px;
	height: 35px;
	transition: all 0.3s ease;
}

.cart-table .quantity .minus:hover,
.cart-table .quantity .plus:hover {
	background-color: #218838;
	border-color: #218838;
}

.cart-table .quantity .input-text.qty {
	height: 35px;
	border: 1px solid var(--color-green);
	border-left: none;
	border-right: none;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	width: 50px !important;
}

/* Order Summary */
.order-summary {
	position: sticky;
	top: 100px;
}

.order-summary .summary-row {
	padding: 8px 0;
}

.impotokens-info {
	border: 1px solid #e9ecef;
}

/* Cart Actions */
.cart-actions .btn {
	font-weight: 600;
	padding: 10px 20px;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
	.cart-table .cart-item .row {
		flex-direction: column;
	}
	
	.cart-table .cart-item .col-md-2 {
		text-align: left !important;
		padding: 5px 0;
	}
	
	.cart-table .cart-item .col-md-2:last-child {
		justify-content: flex-start !important;
	}
	
	.cart-search {
		flex-direction: column;
		width: 100%;
		margin-top: 15px;
	}
	
	.cart-search input {
		margin-bottom: 10px;
	}
	
	.cart-search button {
		margin-left: 0 !important;
	}
}

button.theme-btn.btn-clear-cart {
	color: var(--color-red);
	border: 1px solid var(--color-red);
	background-color: white !important;
}

button.theme-btn.btn-clear-cart:hover {
	background: var(--color-red) !important;
	transform: translateY(0);
	color: var(--color-white);
}



.checkout-section h4,
.order-summary h4 {
	font-family: var(--font-secondary);
}

.order-summary .order-items h6 {
	font-family: var(--font-secondary);
}

.format-standard {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.format-standard__content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.format-standard__content .theme-btn {
	margin-top: auto;
}

/*
CSS PARA EL FORMULARIO
*/
.formContainer {
	max-width: 650px;
	margin: 0 auto;
	padding: 20px;
	
}

.label-form {
	display: block;
	font-weight: 700;
	margin-bottom: 8px;
	font-size: 1.1rem;
	color: black;
}

.subtitle-form {
	font-size: 1.3rem;
	margin-top: 10px;
}

/* El input verde de tu imagen */
.input-form, .select-form {
	width: 100%;
	padding: 10px 15px;
	border: 2px solid #32CD32; /* Verde brillante */
	border-radius: 0; /* Si quieres que sea cuadrado como la imagen */
	outline: none;
	appearance: none;
	font-size: 1rem;
}

.input-form:focus, .select-form:focus {
	box-shadow: 0 0 5px rgba(50, 205, 50, 0.5);
}

/* Clase cuando hay error */
.inputError {
	border-color: #dc3545 !important;
}

.errorMessage {
	color: #dc3545;
	font-size: 0.85rem;
	margin-top: 4px;
	display: block;
}

/* Botón ENVIAR de tu imagen */
.submitBtn {
	background-color: #32CD32;
	color: white;
	border: none;
	padding: 12px 60px;
	font-weight: 900;
	font-size: 1.4rem;
	cursor: pointer;
	text-transform: uppercase;
	transition: background 0.3s;
}

.submitBtn:hover {
	background-color: #28a428;
}

.submitBtn:disabled {
	background-color: #a0e6a0;
	cursor: not-allowed;
}

.selectWrapper {
	position: relative;
}

.selectWrapper::after {
	content: '';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-80%) rotate(45deg);
	width: 10px;
	height: 10px;
	border-right: 2px solid #32CD32;
	border-bottom: 2px solid #32CD32;
	pointer-events: none;
}

.hero-distributor {
	position: relative;
	width: 100%;
	height: 90vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
			90deg,
			rgba(0, 0, 0, 0.85) 35%,
			rgba(0, 0, 0, 0.4) 65%,
			rgba(0, 0, 0, 0.1) 100%
	);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	padding-left: 18%;
	padding-top: 50px;
}

.hero-content h1 {
	color: #fff;
	font-size: clamp(2rem, 4vw, 3.3rem);
	font-weight: 800;
	line-height: 1.15;
	text-transform: uppercase;
	margin-bottom: 2rem;
}

.hero-content h1 span {
	color: #2ecc71;
}

.timeline-section {
	background-color: #fff;
	padding: 50px 0;
	/* Reduced from 80px */
}

.timeline-container-flex {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 50px;
	min-height: 400px;
	/* Reduced from 500px */
}

.timeline-nav {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	position: relative;
	border-right: 2px solid #000;
	padding-right: 30px;
	justify-content: space-between;
	width: 200px;
}

.timeline-year-item {
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
}

.timeline-year-text {
	font-family: var(--font-oswald), sans-serif;
	font-weight: 700;
	line-height: 1;
	display: block;
	transition: all 0.3s ease;
	font-style: italic;
}

.timeline-dot {
	position: absolute;
	right: -39px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease;
}

.timeline-content {
	flex: 1;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* Vertically center content */
}

.timeline-title {
	font-weight: bold;
	margin-bottom: 20px;
	/* Slightly reduced */
	text-align: center;
	font-size: 40px;
}

.timeline-content-box {
	animation: fadeIn 0.5s ease-in-out;
	display: flex;
	flex-direction: column;
	align-items: center;
	/* Center content horizontally */
}

.timeline-image-container {
	margin-bottom: 20px;
	/* Slightly reduced */
	position: relative;
	width: 300px;
	height: 150px;
}

.timeline-text {
	font-size: 18px;
	line-height: 1.6;
	color: #333;
	max-width: 100%;
	text-align: left;
	margin-bottom: 20px;
	/* Slightly reduced */
}

.timeline-controls {
	display: flex;
	gap: 20px;
	margin-top: auto;
}

.timeline-nav-arrow {
	cursor: pointer;
	display: inline-block;
	transition: opacity 0.3s;
}

.timeline-nav-arrow.disabled {
	cursor: default;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.timeline-container-flex {
		flex-direction: column;
		align-items: flex-start !important;
		gap: 30px !important;
	}
	
	.timeline-nav {
		flex-direction: row;
		border-right: none;
		border-bottom: 2px solid #000;
		padding-right: 0;
		padding-bottom: 20px;
		width: 100%;
		overflow-x: auto;
		gap: 30px;
		justify-content: flex-start;
	}
	
	.timeline-year-item {
		margin-bottom: 0 !important;
		text-align: center !important;
		width: auto;
	}
	
	.timeline-year-text {
		font-size: 30px !important;
	}
	
	.timeline-dot {
		display: none;
	}
	
	.timeline-title {
		text-align: left;
	}
}
/* Distributor Form Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#form-distributor .modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 4px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 2px solid #2196F3;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: #333;
    padding: 0;
    line-height: 1;
}

.modal-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #35cc43;
    border-radius: 50%;
    color: white;
    font-size: 40px;
}

.modal-message {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
    font-family: var(--font-primary);
}

.modal-ok-btn {
    background-color: #35cc43;
    color: white;
    border: none;
    padding: 10px 40px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-family: var(--font-oswald); 
    transition: background-color 0.3s;
}

.modal-ok-btn:hover {
    background-color: #2db339;
}



.catalog-search .form-switch .form-check-input {
    width: 3em;
    height: 1.5em;
    cursor: pointer;
}

.catalog-search .form-switch .form-check-input:checked {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.catalog-search .form-switch .form-check-input:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
}

.catalog-search .form-switch .form-check-label {
	cursor: pointer;
	font-weight: 500;
	color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
    padding-left: 0.5em;
}

.modal-dialog .modal-title{
	font-family: var(--font-secondary);
	color: var(--color-green);
}