@import "../../../css/theme.css";
@import "../../../css/custom.css";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


.bg-light-solaris {
	background-color: #FEF9F9;
}

.bg-light-solaris-2 {
	background-color: #F6F5F2 !important;
}

.bg-light-solaris-3 {
	background-color: rgba(205, 202, 197, .2);
}

.bg-primary{
	background-color: #f8f8f8!important;
}

.c-text{
	color: #444!important;
}

.bg-golden {
	background-color: #e52e06!important;
}

.border-end-dotted {
	border-right: 1px dotted #e52e06;
}

.border-start-dotted {
	border-left: 1px dotted #e52e06;
}

.border-top-dotted {
	border-top: 1px dotted #e52e06;
}

.text-orange-light{
	color: #e52e06;
}

.btn-orange{
	background-color: #e52e06;
	font-size: 15px !important;
	border-radius: 5px!important;
	&:hover {
		background-color: #292828;
	}
}

.btn-style-1 a:hover{
	color: #e52e06!important;
}

a, button, img, input, span{
	-webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

input {
	font-family: "Lato", sans-serif;
}

html, body {
	background: white;
	font-family: "Lato", sans-serif;
	scroll-behavior: smooth;
}

header {
	z-index: 1021;

	.logo {
		max-height: 48px;
	}

	nav{
		font-weight: 500;
		a, button{
			color: #121519;
    		text-transform: uppercase;
			font-weight: 600;
			&:hover {
				color: #ff5049;
			}
		}
		ul{
			li a{
				text-transform: none;
				color: #7e7e7e;
			}
		}
	}

	.dropdown-menu {
		max-height: calc(100vh - 130px);
		overflow: auto;
		width: 200px;
		z-index: 9999;
	}

	.menu {
		width: 30px;

		span {
			height: 2px;
			transition: all ease-in-out .3s;
		}

		&.active {
			span:first-child {
				transform: rotate(45deg);
			}
			span:nth-child(2) {
				opacity: 0;
			}
			span:last-child {
				transform: rotate(-45deg);
				margin-top: -11px;
			}
		}
	}
}

body {
	padding-top: 93px;

	&.with-name {
		padding-top: 137px;
	}

	&.with-bar {
		padding-top: 119px;
	}

	&.with-name.with-bar {
		padding-top: 163px;
	}
}

a, a:hover, button button:hover {
	-webkit-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}

#carouselBanners {
	.carousel-indicators {
		button {
			background-color: #D9D9D9;
			border-radius: 50%;
			height: 16px;
			opacity: 1;
			width: 16px;

			&.active {
				background-color: #FCD9B8;
			}
		}
	}
	img.d-none.d-sm-block {
		height: 66vh;
		object-fit: cover;
	}
	img.d-sm-none{
		/* height: 80vh; */
		object-fit: cover;
	}
	.tns-nav{
		position: absolute;
		z-index: 1;
		bottom: 5vh;
		left: 50%;
		transform: translate(-50%, -50%);

		button{
			border-radius: 25px;
			width: 12px;
			height: 12px;
			background: #e52e06;
			border: 0;
			margin: 0px 5px;
		}
	}
}

.sliderCategories .tns-controls {
	top: 50%;
	margin-top: -12px;
}

.sliderCategories .item {
    transition: all 0.3s ease-in-out;

    h3 {
        transition: color 0.3s ease-in-out;
    }

	a.btn-cat{
		z-index: 1;
	}

    .bg-img {
        transition: all 0.3s ease-in-out;
        position: relative;
        overflow: hidden;

        &::after {
			display: none;
            content: '';
            position: absolute;
            inset: 0;
            background-color: rgba(255, 80, 73, 0.15);
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
            border-radius: inherit;
        }
    }

    &:hover {
        h3 {
            /* color: #ff5049 !important; */
        }

        .bg-img::after {
            opacity: 1;
        }
    }

	.item-box{
		padding: 25px 30px 30px;
		border: 1px solid #f8f8f8;
	}
}

.img-zoom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.item h3 {
  transition: color 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.item:hover .img-zoom {
  transform: scale(1.1);
}

.item:hover h3 {
  color: #e52e06;
}


.category-hover .category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.75); /* Blanco con opacidad */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.category-hover:hover .category-overlay {
    opacity: 1;
}

.product-count {
    background-color: #ff5049;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}


.tns-controls {
	left: 0;
	position: absolute;
	top: 30%;
	width: 100%;

	[data-controls="prev"], [data-controls="next"] {
		background-color: transparent;
		background-position: center center;
		background-repeat: no-repeat;
		border: 0;
		height: 24px;
		padding: 0;
		position: absolute;
		width: 24px;
	}

	[data-controls="prev"] {
		background-image: url('https://emidica.com/img/icos/ico-arrow-prev.svg');
	}
	[data-controls="next"] {
		background-image: url('https://emidica.com/img/icos/ico-arrow-next.svg');
		right: 0;
	}
}


.shipping_type, .payment_method {
	&.active::after {
		color: var(--bs-green);
		content: '\F26A';
		display: block;
		font-family: 'bootstrap-icons';
		height: 16px;
		position: absolute;
		right: 5px;
		top: 5px;
		width: 16px;
	}
}

.longDescription, .short_description {
	overflow: hidden;

	figure, p {
		img {
			max-width: 100%;
			height: auto;
		}
	}

	figure {
		display: block;
		margin: 20px auto;
		max-width: 100%;

		img {
			display: block;
			margin: 20px auto;
		}

		&.image-style-side {
			float: right;
			margin: 20px 0 20px 20px;
		}
	}
}

.bg-color-category .menu-categories{
    background-color: #f8f8f8;
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
}

.menu-categories {
		li {

		.imgblack {
			display: block;
		}

		.imgcolor {
			display: none;
		}

		&.active {
			& > div > a {
				color: #CB8161;
			}

			& > div > button .imgblack {
				display: none;
			}

			& > div > button .imgcolor {
				display: block;
			}
		}
	}
}

.menu-categories > ul > li ul {
	list-style: none;
	padding-left: 20px;
}

.menu-categories > ul > li > ul {
	display: block !important;
}

footer {

    background-color: #f8f8f8;
    color: #444444 !important;

	.logo {
		max-height: 45px;
		max-width: 115px;
	}
	a{
		color: #444444;
		transition: all ease-in-out .3s;
		&:hover{
			color: #e52e06;
			transition: all ease-in-out .3s;
			opacity: 0.5;
		}
		i:hover{
			color: #e52e06;
			transition: all ease-in-out .3s;
			opacity: 0.5;
		}
	}
}

#thumbnail-carousel-track {
	height: 516px !important;
}

#icons-items {

	background-color: #f8f8f8;

	.icon-hover-flip .bi, .icon-hover-flip img {
		transition: transform 0.3s ease-in-out;
		transform: scaleX(1);
	    color: #646363;
		font-size: 50px !important;
	}

	p{
		color: #444;
		font-weight: 400;
	}
}

#icons-items .icon-hover-flip:hover .bi, #icons-items .icon-hover-flip:hover img {
	transform: scaleX(-1);
}

.price-offer{
	border-radius: 5px;
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* Transición suave sobre transform */
  transition: transform 0.3s ease-in-out;
  /* will-change: transform; */
  background-color: #fff;

  .menu span{
	background-color: #323232;
  }
}

header.hidden {
  /* transform: translateY(-100%); */
    box-shadow: 0 -6px 10px 5px rgba(0, 0, 0, 0.5);
}

header.visible {
  /* transform: translateY(0); */
}

/* fin header */

.scroll-top-btn{
	bottom: 0;
    right: 30px;
    margin-bottom: 15px;
    z-index: 999;
    border-radius: 50%;
    border: 0;
    color: white;
	transition: all ease-in-out .3s;
	&:hover {
		background-color: #292828!important;
	}
}

.btn-buy-add {
	margin-right: 5px;

	button{
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background-color: #292828;
		color: white;
	}

	.btn-buy{
		background-color: #e52e06;
	}

	.btn-buy:hover{
		background-color: #e2e3e5;
	}

	button:hover{
		box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
		transition: .3s;
		background-color: #e52e06;
		color: white !important;
	}
}

.product-card {
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
	height: 100%;

  .ratio {
    background-size: 100%;
    background-position: center;
    transition: background-size 1.5s cubic-bezier(0, 0, 0.2, 1);
    will-change: background-size;
  }

  &:hover .ratio {
    background-size: 110%;
  }
}

.call-to-action{
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	transition: background-size 1.5s cubic-bezier(0, 0, 0.2, 1);
	will-change: background-size;
	border-radius: 5px;

	&:hover {
		background-size: 110%;
	}

	.btn-orange{
		border-radius: 50px !important;
	}
}

.search{
	form{
		input{
            background-color: #f5f5f5;
            border-radius: 10px !important;
		}
	}
}

.bodyProduct .btn-whatsapp {
    display: none;
}

.bodyProduct{
	padding-right: inherit!important;
}

.img-review .btn{
    height: inherit;
    line-height: 30px;
    position: absolute;
    top: 0;
    right: 0;
    padding-left: 10px;
    padding-right: 10px;
}

.img-review .btn i{
	color: white;
}

.breadcrumb-item.active{
	color: #e52e06!important;
}

.bi-whatsapp{
	/* color: white; */
    /* background-color: #198754; */
    /* border-radius: 50%;
    padding: 10px;
    display: flex; */
}

.breadcrumbs-head{
	background: #f4f4f4;
    padding-top: 50px;
    padding-bottom: 50px;
}

.breadcrumbs-head ol.breadcrumb{
	margin-bottom: 0px;
}

.breadcrumbs-head .d-flex{
	justify-content: start!important;
}

.product-detail .column-right .price-title{
	color: #e4573d;
}

.product-detail .div-sellfast .btn-sellfast{
	width: 100%;
	background-color: #e52e06;
	border-color: #e52e06;
	border-radius: 5px;
}

.btn-sellfast:hover{
	background-color: #292828!important;
	border-color: #292828!important;
}

.product-detail .nav{
	background-color: #f8f8f8;
    padding-top: 20px;
    padding-bottom: 20px;
}

.product-detail .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
	background-color: transparent;
    border-color: #e52e06;
    color: #e52e06;
    border-bottom: 2px solid #e52e06;
    border-radius: 0px;
}

.nav-link:hover, .nav-link:focus{
	color: #e4573d;
}

.watch-model-1 div{
	text-align: left!important;
}
.offer-watch{
	justify-content: start!important;
}
.watch-model-1 .offer-watch .ratio{
	background-color: #f8f8f8!important;
    color: #343434!important;
}

.contact-items .col i::before{
    line-height: normal !important;
    display: block;
}

.form-control{
	border-radius: 26px!important;
	background-color: #f8f8f8;
    border-color: #f8f8f8;
}

.form-control:focus{
	border-color: #e52e06;
}

.confirmed-order .badge{
	background-color: #e4573d;
}

.btn-buy-detail{
	border-radius: 5px;
}

.btn-buy-detail:hover{
	background-color: #343434!important;
}

.btn-add-detail{
	border-radius: 5px;
	margin-left: 10px;
	background-color: #e2e3e5;
}

.btn-add-detail:hover{
	background-color: #e52e06!important;
	color: white!important;
}
.confirmed-order .form-floating .form-control{
    position: relative;
    z-index: 3;
    background: transparent;
}

@media (max-width: 991px) {
	body {
		padding-top: 79px;

		.mobile-nav {
			left: -100%;
			padding-top: 62px;
			transition: all ease-in-out .3s;
			z-index: 3;
			max-width: 425px;

			&.active {
				left: 0;
				background-color: #444;
				color: white;
			}
		}

		&.with-name {
			padding-top: 118px;

			.mobile-nav {
				padding-top: 118px;
			}
		}

		&.with-bar {
			padding-top: 105px;

			.mobile-nav {
				padding-top: 105px;
			}
		}

		&.with-name.with-bar {
			padding-top: 144px;

			.mobile-nav {
				padding-top: 144px;
			}
		}
	}

}

@media (max-width: 767px) {
	.border-start-dotted {
		border-left: 0;
	}
	.border-end-dotted {
		border: none;
	}
	.btn-whatsapp{
		bottom: 14px!important;
	}
	.scroll-top-btn{
		right: 21px;
	}
}

@media screen and (max-width: 576px) {
	.bg-color-category{
		background-color: transparent;
	}
	.confirmed-order .subtotal-price{
		position: absolute;
		top: 0;
		right: 0;
	}
}

@media (max-width: 425px) {
	#thumbnail-carousel-track {
		height: 276px !important;
	}
}

@media (max-width: 375px) {
	#thumbnail-carousel-track {
		height: 240px !important;
	}
}

@media (max-width: 320px) {
	#thumbnail-carousel-track {
		height: 198px !important;
	}
}
