@import url("https://fonts.googleapis.com/css2?family=Baloo+Thambi+2&family=Raleway&family=Rubik&display=swap");
/*              Sass Template           */

html,
body {
  height: 100%; /* Asegura que el body ocupe toda la altura de la ventana */
  display: flex;
  flex-direction: column; /* Coloca los elementos en una columna */
  min-height: 100vh; /* Asegura que el contenedor ocupe al menos la altura de la ventana */
}

main {
  flex: 1; /* Permite que el main ocupe el espacio restante */
}

/*  global classes  */
button,
button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.product .btn:hover {
  background-color: #f41a2c;
  color: #fff;
}

.logo img {
  height: 45px;
}

.container h4 {
  width: fit-content;
  border-bottom: 2px solid #f41a2c;
}

/* typography classes */
.font-baloo {
  font-family: "Baloo Thambi 2", cursive;
}

.font-rale {
  font-family: "Raleway", cursive;
}

.font-rubik {
  font-family: "Rubik", cursive;
}

.font-size-12 {
  font-size: 12px;
}

.font-size-14 {
  font-size: 14px;
}

.font-size-16 {
  font-size: 16px;
}

.font-size-20 {
  font-size: 20px;
}

.font-size-40 {
  font-size: 40px;
}

/* Color Template  */
.color-primary {
  color: #f41a2c;
}

.color-primary-bg {
  background: #f41a2c;
}

.color-second {
  color: #2f3640;
}

.color-second-bg {
  background: #2f3640;
}

.color-yellow {
  color: #ffd289;
}

.color-yellow-bg {
  background: #ffd289;
}

/* whatsapp-button  */

.whatsapp-button {
  position: fixed;
  bottom: 75px;
  right: 15px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 15px;
  z-index: 1000;
  transition: transform 0.3s;
}

.whatsapp-button img {
  width: 40px;
  height: 40px;
}


.scrollToTopBtn {
  position: fixed;
  z-index: 1000;
  bottom: 20px;
  right: 20px;
  display: none; /* Ocultar el botón por defecto */
  background-color: #f41a2c;
  text-decoration: none;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  transition: opacity 0.3s ease; /* Animación de opacidad */
}

.scrollToTopBtn.show {
  display: block; /* Mostrar el botón cuando se añade la clase 'show' */
  opacity: 1; /* Asegurarse de que sea visible */
}

.scrollToTopBtn.hide {
  opacity: 0; /* Hacerlo invisible */
}

/*  top sale template   */
#top-sale .owl-carousel .item .product a {
  overflow: hidden;
}
#top-sale .owl-carousel .item .product img {
  transition: transform 0.5s ease;
}
#top-sale .owl-carousel .item .product img:hover {
  transform: scale(1.1);
}
#top-sale .owl-carousel .owl-nav button {
  position: absolute;
  top: 30%;
  outline: none;
}
#top-sale .owl-carousel .owl-nav button.owl-prev {
  left: 0;
}
#top-sale .owl-carousel .owl-nav button.owl-prev span,
#top-sale .owl-carousel .owl-nav button.owl-next span {
  font-size: 35px;
  color: #003859;
  padding: 0 1rem;
}
#top-sale .owl-carousel .owl-nav button.owl-prev span {
  margin-left: -4rem;
}
#top-sale .owl-carousel .owl-nav button.owl-next {
  right: 0;
}
#top-sale .owl-carousel .owl-nav button.owl-next span {
  margin-right: -4rem;
}

/*   Special Price Section Template */
#special-price .grid .grid-item {
  margin-right: 1.2rem;
  margin-top: 1rem;
}

/*# sourceMappingURL=style.css.map */
