@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

html,
body{
  margin: 0 !important;
  padding: 0 !important;
  font-family: Montserrat !important;
  overflow-x: hidden;
  background-color: #fff;
  scroll-behavior: smooth; 
    transition-duration: 0.8s;
}


.MontBold{
  font-family: Montserrat;
    font-weight: 600;
}
.MontMedium{
  font-family: Montserrat;
    font-weight: 500;
}

/* Estilos predefinidos */

.row{
    margin: 0;
}
a{
  color: #fff;
  text-decoration: none;
}
p,
ul{
  margin-bottom: 0;
}
.w-15{
  width: 15% !important;
}
.tc-1{
  color: rgb(12, 6, 75);
}
.tc-2{
  color: #d4006d;
}
.bg-1{
  background-color: rgb(12, 6, 75) !important;
}
.bg-2{
  background-color: #d4006d !important;
}
.ff-bold{
  font-weight: 500;
}
.divider{
  width: 100%;
  background-color: #ebebeb;
  height: 1px;
}
.btn-theme{
  padding: .7rem 2rem;
  border-radius: 30px;
  background-color: #d4006d;
    color: rgb(255 255 255);
  border: none ;
  font-weight: bold;
  letter-spacing: .2px;
  margin: 0 auto;
  text-align: center;
 
}
.btn-outline-theme{
  padding: .57rem 2rem;
  border-radius: 30px;
  border:1px solid #d4006d;
    color: #d4006d;
  font-weight: bold;
  letter-spacing: .2px;
  margin: 0 auto;
  text-align: center;
  background: transparent;
}
.btn-theme:disabled{
  background-color: #e76aab;
}
.st-title{
  font-size: 2rem;
  font-weight: 700;
}
.badge-cart{
  background-color: #d4006d;
  color: #fff;
  width: 16px;
  height: 16px;
  position: absolute;
  right: -.6rem;
  top: -.3rem;
  border-radius: 50%;
  font-size: .6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-loader{
  display: none;
}
.box-loader.active{
  display: block;
}
/* Card product */
.card-product{
  background-color: #fff;
  border-radius: 20px;
  padding: 1.2rem;
  text-align: start;
  position: relative;
}
.card-product .card-content {
  margin-top: 12px;
}
.card-product .discount{
  position: absolute;
  background-color: #3bb939;
  color: #fff;
  font-weight: bold;
  padding: .2rem .7rem;
  font-size: .9rem;
  border-radius: 6px;
}
.card-product .box-fav{
  position: absolute;
  border: 1px solid #d3d3d3;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 1.2rem;
  cursor: pointer;
}
.card-product .box-fav i{
  font-size: .8rem;
}
.card-product .card-img{
  height: 220px;
}
.card-product .card-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-product .card-content .product-category a{
  font-size: .75rem;
  text-transform: capitalize;
  color: #7a7a7a;
  font-weight: 500;
  letter-spacing: .2px;
}
.card-product .card-content .card-title {
  display: -webkit-box;      /* Establece el tipo de visualización como box para el clamping */
  -webkit-line-clamp: 2;     /* Limita el texto a dos líneas */
  -webkit-box-orient: vertical; /* Orienta el contenido del box verticalmente */
  overflow: hidden;          /* Oculta el contenido que excede el contenedor */
  height: 43px;              /* Altura basada en el tamaño de fuente y la cantidad de líneas */
  line-height: 24px;         /* Altura de línea para que el texto encaje bien en el contenedor */
  text-overflow: ellipsis;   /* Añade puntos suspensivos al final del texto (solo funciona con single line, pero necesario aquí por consistencia) */
}
.card-product .card-content .card-title h2{
  font-size: 16px;
  margin-bottom: 0;
}
.card-product .card-content .card-title a{
  font-weight: 600;
  line-height: 1.1;
  text-transform: capitalize;
  font-size: 16px;
  color: #000;
}
.card-product .card-bottom .product-price .title-price{
  color: #7a7a7a;
  font-size: .7rem;
  letter-spacing: .2px;
  font-weight: 600;
}
.card-product .card-bottom .product-price .price{
  font-weight: bold;
  line-height: 1.1;
}
.price-org{
  color: #888383;
  font-size: .9rem;
}
.price-new{
  font-size: 1.2rem;
  color: #3bb939;
}
.card-product .card-bottom .add-to-cart{
  margin-left: auto;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  background-color: #d4006d;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.card-product .card-bottom .add-to-cart a{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-product .card-bottom .add-to-cart i{
  font-size: .9rem;
}

/* Card notice */
.card-notice{
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: #fff;
  border-radius: 10px;
  padding: 1.2rem;
  text-align: start;
}
.card-notice .card-img{
  height: 180px;
}
.card-notice .card-img img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.card-notice .card-content .notice-date{
  color: #7a7a7a;
  font-size: .7rem;
  font-weight: 600;
}
.card-notice .card-content .notice-title a{
  color: #000;
  font-weight: bold;
  text-transform: capitalize;
}
.card-notice .card-content .notice-desc{
  font-size: .9rem;
  margin-bottom: .4rem;
}


/* 
    Header  
*/
header{
  transition: all .7s linear;
}

.navbar{
  background-color: rgb(12, 6, 75);
  width: 100%;
  z-index: 5;
  transition: all .7s linear;
}
.navbar-nav{
  margin-left: 15rem;
}

.navbar-toggler{
  color: #fff;
  border: none;
	position:relative;
z-index:10;
}
.navbar-toggler i{
  font-size: 2rem;
}

#navbarMobile{
  transition: all .6s ease-in;
  transition-timing-function: ease;
  position: relative;
}
#navbarMobile .divider{
  height: 3px;
}
.navbar-toggler:focus{
  box-shadow: unset !important;
}

.bg-filter{
  transition: all .6s ease-in;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  position: absolute;
  height: 100vh;
  top: 80px;
  backdrop-filter: blur(20px);
  display: none;
  z-index: 99;
}

.opacity-1{
  opacity: 1;
  display: block;
}

.navbar .nav-item .nav-link{
  color: #fff;
}
.navbar.absolute{
  width: 100%;
  height: 90px;
  color: #fff;
  position: absolute;
  z-index: 2;
}

.navbar .nav-item.actions{
  position: absolute;
  right: 0;
}
.icon-carrito, .icon-usuario{
  color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
}
.navbar.absolute .nav-link{
  color: #fff;
}
.navbar-brand{
  position: absolute;
  z-index: 2;
}

.nav-item .nav-link{
  font-size: 1rem;
  color: rgb(12, 6, 75);
}
.nav-item .nav-link.active{
  font-weight: bold;
}
.nav-item .nav-link:hover{
  font-weight: bold;
}

/* Search Input */
.box-search{
  position: absolute;

}
.box-search.box-active input{
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.input-box{
  position:relative;
    top: 50px;
width:100vw;

z-index:10;
padding:16px;
background-color: rgb(12, 6, 75);
display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;

}



.input-box input {
  border: none;
  width: 300px;
  padding: .55rem 1rem !important;
  font-size: .9rem;
  font-weight: 500;
  color: #000 !important;
}
.input-box .search i{
  color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
}
.input-box:hover .list-items{
  /* display: block !important; */
}
.input-box .list-items.visible{
  display: block;
}


@media (min-width:1350px){
	.box-search{
  position: absolute;
	right:5px;
}

.input-box{
  position:relative;
    top: -15px;
width:350px;
right:20vw;
z-index:10;
padding:16px;
background-color: rgb(12, 6, 75);
display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;

}
}



.shop-area{
margin-top:45px;
}


.list-items::-webkit-scrollbar-track {
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
    border-radius: 10px;
    background-color: #e4e4e4;
}
.list-items::-webkit-scrollbar {
    width: 8px;
    background-color: #b1b1b1;
}
.list-items::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #a9a9a9;
}

.input-box .list-items{
  display: none;
  width: 400px;
  position: absolute;
  background-color: #fff;
  margin: 0;
  padding: 0;
  top: 2.4rem;
  min-height: 90px;
  max-height: 300px;
  overflow-y: auto;
  box-sizing: border-box;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;  
}
.input-box .list-items>p{
  font-size: .85rem;
  font-weight: 530;
  padding: .3rem 0;
  border-top: 1px solid #dddddd;
  color: #000;
  border-bottom: 1px solid #dddddd;
}
.input-box .list-items .search-results a{
  display: flex;
  padding: .8rem 1rem;
  transition: all .2s ease-in-out;
  /* background-color: red; */
}
.input-box .list-items .search-results a:hover{
  background-color: #d4006d17;

}
.input-box .list-items .search-results a .search-bar__image-container{
  width: 75px;
  height: 75px;
}
.input-box .list-items .search-results a .search-bar__image-container img{
  width: 75px;
  height: 100%;
  object-fit: contain;
}
.input-box .list-items .search-results a .search-bar__item-info{
  color: #000;
  font-size: .95rem;
  font-weight: 450;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: .2rem 1rem;
}
.input-box .list-items .search-results a .search-bar__item-info .woocommerce-Price-amount{
  font-weight: 1rem !important;
}
#search-results {
  /* overflow: hidden; */
  transition: all 0.3s ease;  /* Suaviza la transición de todos los cambios, incluyendo la altura */
  /* position: absolute; */
  background: white;
  width: 100%;
  z-index: 1000;
  /* max-height: 500px; Establece una altura máxima si es necesario */
}
.more-results{
  position: relative;
  z-index: 1111;
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
.more-results a{
  color: #d4006d;
  font-weight: 500;
}
.more-results a:hover {
   color: #bb0161;
  background: none !important;
}
.loading {
  padding: 10px;
  text-align: center;
  padding: 2rem;
  font-weight: 600;
  color: #000;
}
.icon--search-loader{
  /* width: 1em; */
  fill: #fff;
  background: none;
  pointer-events: none;
  overflow: visible;
  display: none;
  width: 24px;
  height: 24px;
  animation: loading-spinner 1s infinite linear;
  -webkit-animation: loading-spinner 1s infinite linear;
}

.loading::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-color: #ccc transparent #ccc transparent;
  animation: loading-spinner 1.2s linear infinite;
}

@keyframes loading-spinner {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

.search-item{
  text-align: center;
  padding: 2rem;
  color: #000;
  font-weight: 600;
}


/* Seccion banner */

.elementor-shape{
  overflow: hidden;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr; 
    bottom: 0;
}
.elementor-shape[data-negative=false].elementor-shape-bottom, .elementor-shape[data-negative=true].elementor-shape-top {
  transform: rotate(180deg) translate(0, -0.8px);
  position: relative;
  z-index: 1;
}
.elementor-shape .elementor-shape-fill {
  fill: #fff;
  transform-origin: center;
  transform: rotateY(0deg);
 
}

.st-banner{
  background-image: linear-gradient(180deg, rgb(12, 6, 75) 0%, #0E0D0D 200%);
  position: relative;

}
.st-banner .container{
  padding-top: calc(90px + 3rem) !important;
}

.st-banner .title-banner{
  color: #fff;
  font-family: 'Urbanist';
  font-size: 3rem;
  font-weight: 600;
margin-top:30px;
}

.st-banner .desc-banner{
  font-size: 1.13rem;
  color: #fff;
  font-family: "Montserrat";
}

.st-banner .shape-image-banner{
  position: relative;
  width: 100%;
  height: 100%;
}
.st-banner .shape-image-banner img{
  position: absolute;
  bottom: -9rem;
  right: 3rem;
  width: 496px;
}
/* Seccion cards about */


.st-about .owl-carousel .owl-stage {
  display:flex !important 
/*!important not required but maybe need if there some others css rules for .owl-stage display */
}

.st-about .card-service{
  border-radius: 15px;
  padding: 1.3rem;
  height: 100%;
}

.st-about .card-content p{
  margin-bottom: 0;
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 14px;
  padding: 0 1rem;
}

.st-about .card-title{
  color: rgb(12, 6, 75);
  padding: .7rem 0;
  font-size: 1.1rem;
}

.st-about .card-img i{
  color: rgb(12, 6, 75);
  font-size: 3rem;
  text-align: center;
  margin: 0 auto;
}

/* Seccion productos destacados */

.st-products-dest{
  background-image: linear-gradient(180deg, rgb(12, 6, 75) 0%, rgb(12, 8, 56) 200%, #fff 100%);
  position: relative;

}

.row-productos-destacados .owl-nav{
  position: absolute;
  border: none;
  transition: all .3s ease;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  justify-content: space-between;
  margin-top: 0;
  left: 0;
}
.row-productos-destacados .owl-nav button.owl-prev,
.row-productos-destacados .owl-nav button.owl-next{
  border-radius: 50%;
  background-color: #d4006d;
  color: #fff;
  width: 30px;
  height: 30px;
  border: none;
  position: absolute;
}
.row-productos-destacados .owl-nav .owl-prev{
  left: -2rem;
  transition: all .3s ease;
}

.row-productos-destacados .owl-nav .owl-next{
  right: -2rem;
  transition: all .3s ease;
}



/* Seccion categorias */
.st-categories{
  scroll-behavior: smooth;
}
.st-categories .row .card-category{
  border-radius: 10px;
  height: 140px;
  padding: 1.1rem 1.5rem;
  display: flex;
  overflow: hidden;
  transition: all .4s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  cursor: pointer;
}
.st-categories .row .card-category:hover{
  background-color: rgb(12, 6, 75);
  transform: scale(1.05);

}
.st-categories .row .card-category:hover .card-left{
  color: #fff;
}
.st-categories .row .card-category:hover .desc-category{
  color: #d3d3d3;
}
.st-categories .row .card-category:hover .go-category{
  border: none;
}
.st-categories .row .card-category .card-left{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 90%;
}
.st-categories .row .card-category .card-right{
  width: 20%;
}
.st-categories .row .card-category .card-right img{
  width: 150%;
  transform: rotate(13deg) scale(1.1) translateY(10px);
  margin-left: -1.5rem;

}
.st-categories .row .card-category .title-category{
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.1rem;
  margin-bottom: 1px;
}
.st-categories .row .card-category .desc-category{
  color: #1f1f1f;
  font-size: .8rem;
  font-weight: 500;
}

.st-categories .row .card-category .go-category{
  border: 1px solid #ebebeb;
  width: 33px;
  height: 33px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Seccion ultimas noticias */
.st-last-articles{

}


/* Seccion Call to Action */
.st-cta{
  background: url('assets/images/bg-cta.webp');
  background-size: cover;
}
.st-cta .cta{
  border-radius: 40px;
  height: 420px;
  background: url('assets/images/close-up-sex-toys-scaled.webp');
  background-size: cover;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
}

.st-cta .cta .title-cta{
  font-weight: bold;
  font-size: 2.5rem;
}
.st-cta .cta .terminos-cta{
  font-size: .8rem;
}

.st-cta .cta .btn-theme{
  background-color: rgb(12, 6, 75);
  letter-spacing: .3px;
}


/* PAGE SINGLE CATEGORY */

/* Banner categoria */
.st-banner-categoria{
  background-image: linear-gradient(180deg, rgb(12, 6, 75) 0%, #0E0D0D 200%);
  position: relative;

}
.st-banner-categoria .container{
  padding: 2rem 0 !important;
}

.st-banner-categoria .title-banner{
  color: #fff;
  font-family: 'Urbanist';
  font-size: 3.7rem;
  font-weight: 600;
}

.st-banner-categoria .breadcrumb-item{
  list-style: none;
}
.st-banner-categoria .woocommerce-breadcrumb{
  display: flex;
  justify-content: center;
  align-items: center;
}
.st-banner-categoria .breadcrumb-item.category a,
.st-banner-categoria .breadcrumb-item.category i
{
  color: #7a7a7a;
}
.st-banner-categoria .breadcrumb-item.category{
  color: #fff;
  font-weight: 500;
}

/*--------------------------------------------------------------
 PAGE CONTACT
 ----------------------------------------------------------------*/
 .st-contact-form .wrap-title-contact h2{
  font-size: 2rem;
  font-weight: 800;
}
.st-contact-form .contact-box{
display: flex;
   align-items: center;
   border-bottom: 1px solid #E7E6EB;
   height: 80px;
}
 .st-contact-form .contact-box i{
   background-color: #d4006d;
   border-radius: 50%;
   height: 50px;
   width: 50px;
   font-size: 1.5rem;
   text-align: center;
   display: flex;
   justify-content: center;
   align-items: center;
   color: #fff;
 }
   .st-contact-form .contact-box .contact-text-info{
   margin: 0px;
   color: #161616;
   margin-inline-start: 30px;
       font-size: 1.1rem;
       font-weight: 500;
 }
 .st-contact-form .contact-box .contact-text-info a{
     color: #161616;
   font-size: 1.1rem;
   font-weight: 500;
 }
.st-contact-form .contact-form .input-box{
      position: relative;
   display: block;
   margin-bottom: 20px;
}


.st-contact-form .contact-form .input-box input:focus,
.st-contact-form .contact-form .input-box textarea:focus,
.st-contact-form .contact-form .input-box input:focus-visible,
.st-contact-form .contact-form .input-box textarea:focus-visible{
 color: #222222;
   border: 1px solid rgb(12, 6, 75);
 outline: none;
}

::placeholder {
 color: #757979;
 opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
 color: #757979;
}

.st-contact-form .contact-form .input-box select{
  border: 1px solid #e7e7e7 !important;
}

.st-contact-form .contact-form .input-box input,
.st-contact-form .contact-form .input-box textarea
{
 position: relative;
   display: block;
   background: #fff;
   border: 1px solid #e7e7e7;
   width: 100%;
   height: 60px;
   color: #000000;
   font-size: 1rem;
   font-weight: 500;
   font-style: normal;
   padding-left: 29px;
   padding-right: 20px;
   border-radius: 7px;
   transition: all 500ms ease;
}
.st-contact-form .contact-form .input-box select:checked{
 color: #000 !important;
}

.st-contact-form .contact-form .input-box select{
 position: relative;
   display: block;
   background-color: #fff;
   border: 1px solid #f4f5f7;
   width: 100%;
   height: 60px;
   color: #757979;
   font-size: 1rem;
   font-weight: 500;
   font-style: normal;
   padding-left: 29px;
   padding-right: 20px;
   border-radius: 7px;
   transition: all 500ms ease;
}
.st-contact-form .contact-form .input-box textarea
{
 padding-top: 20px;
 height: 150px;
 
}
.st-contact-form .contact-form label.error{
  color:	#ff3333;
  font-weight: 500;
  font-size: .9rem;
}



/*------------------------------
        SINGLE NOTICE 
 ------------------------------*/

 .blog-details-page {

 }

.blog-details-content .notice-image img{
    height: 450px;
    object-fit: cover;
    margin: 0;
}

.blog-details-content img{
    width: 100%;
    margin: 20px 0;
}

 .blog-details-content .details-content h2,
 .blog-details-content .details-content h3
 {
     font-weight: 700;
     color: rgb(12, 6, 75);
     margin: 15px 0;
     
 }
 .blog-details-content .details-content .title{
    font-weight: 700;
    font-size: 42px;
    color: rgb(12, 6, 75);
    margin-top: 20px;
 }

 .blog-details-content .details-content p{
   font-weight: 500;
   font-size: 16px;
   line-height: 30px;
   text-align: start;
   color: #000;
  }
   .blog-details-content .details-content  strong{
       font-weight: 600;
   }
  .blog-details-content .details-content a{
      font-weight: 600;
    color: #d4006d;
  }
  
  .blog-sidebar .post-items{
    list-style: none;
    padding-left : 0;
  }
  .blog-sidebar .post-items li{
          padding: 20px 0;
    border-bottom: 1px solid #DBDBDB;
    font-weight: 500;
    font-size: 14px;
  }
  .blog-sidebar-post .post-items li .single-post .post-thumb img{
      border-radius: 10px;
      object-fit: cover;
  }
  .blog-sidebar-post .post-items li .single-post .post-content{
      padding-left: 20px;
  }
   .blog-sidebar .single-post .post-title {
       line-height: 20px;
   }
   .blog-sidebar .single-post .post-title a{
       color: rgb(12, 6, 75);
           font-weight: 700;
    font-size: 17px;
  }
  
  
  
  
  
  
/* Footer */
footer .links h2{
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
footer .lorem-footer p{
  font-size: .85rem;
  color: #f3f3f3d7;
}

footer .links .list-links{
  list-style: none;
  padding: 0;
  padding-left: .2rem;
  display: inline-block;
  margin-bottom: 0;
}
footer .links .list-links li{
  margin-bottom: .5rem;
  font-size: .9rem;
  
}
footer .links .list-links li a{
  color: #f3f3f3d7;
}
footer .links .list-links li:hover a
{
  color: #d4006d;
}
footer .list-contact {
  list-style: none;
  padding: 0;
  padding-left: .2rem;
}
footer .list-contact li{
  font-size: .9rem;
  display: inline-block;

}
footer .list-contact li a{
  color: #f3f3f3d7;
}
footer .list-contact i{
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  background-color: #7c7b7b2a;
  backdrop-filter: blur(10px);
  width: 30px;
  height: 30px;
}

footer .footer-wrap{
  border-top: 1px solid #7c7b7b57;
}
footer .footer-bottom{
  font-size: .9rem;
  text-align: center;
  margin: 0 auto;
  color: #f3f3f3d7;
}
.logo-footer{
    height: 80px;
}
.sc-bdfBwQ{
    display: flex;
}
.sc-bdfBwQ .flex{
    width: 30px;
    margin: 0 .6rem;
    color: #fff;
}
.sc-bdfBwQ .flex:first-child{
    margin-left: 0 !important;
}
.sc-bdfBwQ .flex svg path{
    color: #fff;
}
/* Queries responsive */

@media  (min-width: 1280px) and (max-width: 1439px){
  .st-about .card-content p{
    padding: 0;
  }
  .st-banner .shape-image-banner img{
    bottom: -8rem;
    right: 1rem;
    width: 514px;
  }
  .shop-sidebar{
    padding: 1rem !important;
  }
  .st-cta .cta{
    height: 400px;
  }
  .navbar-nav {
      margin-left: 11rem;
  }
  .input-box input{
    width: 320px;
  }
  .input-box .list-items{
    width: 320px;
  }
  .input-box .list-items .search-results a .search-bar__item-info{
    font-size: .85rem;
  }
  .input-box .list-items .search-results a .search-bar__image-container img{
    width: 75px;
  }


}
@media screen and (max-width: 998px){
  .navbar.absolute{
    height: 80px;
  }
  .menu-links{
    flex-direction: column;
    padding-left: 0;
  }
  #navbarMobile.active {
      margin-left: 0;
      transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    }
  
    #navbarMobile {
      position: fixed;
      min-height: 100vh;
      width: 280px;
      display: block;
      margin-left: -300px;
      left: 0;
      top: 0;
      background-color: rgb(12, 6, 75);
      box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
      color: #fff;
  z-index: 100;

    }
  
    #navbarMobile .navbar-nav .nav-item .nav-link {
      color: #fff;
      padding: 0 5px !important;
    }
  
    #navbarMobile .navbar-nav {
      align-items: start !important;
      margin-top: 20px;
      margin-left: 0;
    }
    #navbarMobile .input-box input{
      width: 200px;
    }
    #navbarMobile .input-box .list-items{
      width: 240px;
    }
    
    #navbarMobile .navbar-nav .box-search{
      position: relative;
      left: 0;
    }
    .input-box .list-items .search-results a{
      padding: .7rem;
    }
    .input-box .list-items .search-results a .search-bar__item-info{
      padding: .2rem .5rem;
      font-size: .8rem;
    }
    .search-item{
      padding: 1rem;
    }
    .loading{
      padding: 1rem;
    }
    .input-box .list-items{
      min-height: 80px;
    }
    #navbarMobile .navbar-nav .nav-item {
      margin: 11px;
      border-radius: 10px;
    }
  
    #navbarMobile label {
      padding-top: 10px;
      margin: 5px 10px;
      font-weight: 600;
    }
}

@media screen and (max-width: 568px){
  
  .card-product .card-content .card-title {
    height: auto;
  }
  .card-product .card-content .card-title h2{
    line-height: 1;
  }
    .not-found img{
        width: 100%;   
    }
  .st-title{

  }
  .btn-theme{
    font-size: .9rem;
  }
  .navbar-brand{
    position: relative;
  }
  .st-banner .container {
    padding-top: calc(80px) !important;
    padding-bottom: 1rem;
  }
  .st-banner .title-banner{
    font-size: 2.2rem;
  }
  .st-banner .desc-banner{
    font-size: 1rem;
  }
  .st-banner .shape-image-banner img{
    position: relative;
    width: 100%;
    bottom: 0;
    right: 0;
    top: 3rem;
  }
  .owl-theme .owl-nav.disabled+.owl-dots{
    margin-top: 20px;
  }
  /* Seccion productos destacados */
  .card-product {
    padding: 1.2rem 1.2rem;
  }
 
  .card-product .card-content .card-title a{
    font-size: 1.2rem;
  }
  .st-categories .row .card-category .title-category{
    font-size: 1.2rem;
  }
  .st-categories .row .card-category .desc-category{
    font-size: .9rem;
  }
  .st-cta .cta{
    height: auto;
    border-radius: 0;
  }
  .st-cta .cta .title-cta{
    font-size: 1.7rem;
  }
  .st-cta .cta .terminos-cta{
    font-size: .7rem;
  }
  /* Carrito */
  .cart_totals h2{
    font-weight: bold;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }


  /* PAGE SINGLE CATEGORY */
  .st-banner-categoria .container{
    padding-top: 1.2rem !important;
    padding-bottom: 2rem !important;
  }
  .st-banner-categoria .title-banner{
    font-size: 3rem;
  }

  /* PAGE CONTACT */
  .st-contact-form .contact-box .contact-text-info a{
    font-size: 1rem;
  }
  .st-contact-form .contact-box{
    height: 80px;
  }
  .st-contact-form .wrap-title-contact h2{
    font-size: 1.5rem;
  }
  .st-contact-form .contact-box i{
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
  }
  .st-contact-form .contact-box .contact-text-info{
    margin-inline-start: 20px;
  }
  .st-contact-form .contact-form .input-box input{
    height: 45px;
    padding-left: 20px;
    font-size: .9rem;
  }
  .st-contact-form .contact-form .input-box select{
    height: 45px;
    padding-left: 20px;
    font-size: .9rem;
  }
  .st-contact-form .contact-form .input-box textarea{
    padding-left: 20px;
    font-size: .9rem;
  }
  .st-contact-form .contact-form .input-box{
    margin-bottom: 15px;
  }
  
  /* SINGLE NOTICE */
  .blog-details-content .notice-image img{
        height: auto;
        object-fit: cover;
    }
    .blog-details-content .details-content .title{
        font-size: 25px;
    }
    .blog-details-content .details-content p{
        font-size: 15px;
        font-weight: 400;
        line-height: 25px;
    }
  

}