@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

.clear {
  clear: both;
}

.ovh {
  overflow: hidden;
}

.error {
  color: red;
}

.success {
  color: green;
}

a:hover {
  text-decoration: none;
}

.headline {
  text-align: center;
  margin-bottom: 50px;
}

.headline h2 {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 0;
}

.headline h3 {
  font-size: 18px;
  margin-top: 0;
}

.headline-white {
  color: #fff;
}

.bg-gray {
  background: #2F2F2F !important;
}

.bg-white {
  background: #ffffff !important;
}

.top {
  width: 100%;
  height: 40px;
  /* background: #ececec; */
  background: #131921;
}

.top .left {
  float: left;
}

.top .left ul {
  padding-top: 8px;
}

.top .left ul li {
  list-style-type: none;
  float: left;
  margin-right: 14px;
  /* color: #0d1452; */
  color: white;
}

.top .left ul li i {
  /* color: #0d1452; */
  color: white;
}

.top .right {
  float: right;
}

.top .right ul {
  padding-top: 8px;
}

.top .right ul li {
  list-style-type: none;
  float: left;
  margin-left: 5px;
}

.top .right ul li a {
  /* color: #0d1452; */
  color: white;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  display: block;
  transition: all 0.4s ease;
}

.top .right ul li a:hover {
  background: #1c257e;
  color: #fff;
}

.header {
  width: 100%;
  height: auto;
  background: #fff;
}

.header .inner {
  height: auto;
  display: table;
}

.header .logo {
  float: none;
  display: table-cell;
  vertical-align: middle;
}

.header .logo img {
  max-width: 100%;
  height: 80px;
}

.header .navbar-form .form-control {
  width: 300px;
}

.header .search-area {
  float: none;
  display: table-cell;
  vertical-align: middle;
}

.header .search-area .form-group {
  width: calc(100% - 84px);
}

.header .search-area button {
  width: 80px;
}

.header .search-area form {
  width: 100%;
}

.header .right {
  float: none;
  display: table-cell;
  vertical-align: middle;
  padding-right: 0;
}

.header .right ul {
  float: right;
  margin-bottom: 0;
}

.header .right ul li {
  list-style-type: none;
  float: left;
  margin-left: 14px;
  color: #0d1452;
}

.header .right ul li a {
  color: #0d1452;
}

.header .navbar-form .search-top {
  width: 100%;
}


.nav {
  /* background: #0d1452; */
  background: #232f3e;
}

.menu-container {
  width: 100%;
  margin: 0 auto;
  /* background: #0d1452; */
  background: #232f3e;
}


/* MENU PARA CELULARES CON SU ICONO*/

.menu-mobile {
  display: none;
  padding: 15px;
  color: #fff;
  position: relative;
  cursor: pointer; /* Cambia el cursor a una mano cuando pasas sobre el ícono */
}

.menu-mobile:hover {
  color: #fff;
}

/* Efectos elegantes para el ícono */
.menu-mobile:after {
  content: "";
  background-image: url('/assets/img/icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  float: right;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  
  /* Añadiendo efectos iniciales */
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  opacity: 0.9; /* Levemente translúcido */
}

/* Efectos al pasar el cursor */
.menu-mobile:hover:after {
  transform: translateY(-50%) scale(1.2); /* Aumenta el tamaño del ícono */
  box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.4); /* Añade una sombra interior */
  opacity: 1; /* Totalmente opaco */
}

/* Efectos al hacer clic */
.menu-mobile:active:after {
  transform: translateY(-50%) scale(1.1); /* Leve reducción al hacer clic */
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.6); /* Sombra interior más intensa */
  opacity: 0.8; /* Levemente translúcido al hacer clic */
}


.menu-dropdown-icon:before {
  content: "\f067";
  font-family: "FontAwesome";
  display: none;
  cursor: pointer;
  float: right;
  padding: 1.0em 1.0em;
  background: #fff;
  color: #333;

    /* Ajustar la posición del ícono */
    position: relative; /* Establece la posición relativa */
    top: 12px; /* Mueve el ícono 5px hacia abajo */
}

.menu > ul {
  margin: 0 auto;
  width: 100%;
  list-style: none;
  padding: 0;
  position: relative;
  /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
  box-sizing: border-box;
}

.menu > ul:before,
.menu > ul:after {
  content: "";
  display: table;
}

.menu > ul:after {
  clear: both;
}

.menu > ul > li {
  float: left;
  /*background: #76767e;*/
  padding: 0;
  margin: 0;
}

.menu > ul > li a {
  text-decoration: none;
  padding: 1.5em 10px;
  display: block;
  color: #ffffff;
}

.menu > ul > li:hover {
  background: #333;
}

.menu > ul > li > ul {
  display: none;
  width: 100%;
  background: #d6d6d6;
  padding: 15px;
  position: absolute;
  z-index: 999999;
  left: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > ul > li > ul:after {
  clear: both;
}

.menu > ul > li > ul > li {
  margin: 0;
  padding-bottom: 0;
  list-style: none;
  width: 25%;
  background: none;
  float: left;
}

.menu > ul > li > ul > li a {
  color: #777;
  padding: 0.2em 0;
  width: 100%;
  display: block;
  border-bottom: 4px solid #cccccc;
  font-size: 14px;
  color: #1a1a1a;
}

.menu > ul > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  box-sizing: border-box;
}

.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > ul > li > ul > li > ul:after {
  clear: both;
}

.menu > ul > li > ul > li > ul > li {
  float: left;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  font-size: 0.8em;
}

.menu > ul > li > ul > li > ul > li a {
  border: 0;
}

.menu > ul > li > ul.normal-sub {
  width: 220px;
  left: auto;
  padding: 10px 20px;
}

.menu > ul > li > ul.normal-sub > li {
  width: 100%;
}

.menu > ul > li > ul.normal-sub > li a {
  border: 0;
  padding: 1em 0;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media only screen and (max-width: 959px) {
  .menu-container {
    width: 100%;
  }

  .menu-mobile {
    display: block;
    padding: 15px;
    color: #fff;
    cursor: pointer;
    text-align: center;
    background: #232f3e;
    font-size: 1.5rem;
  }

  .menu-dropdown-icon {
    position: relative; /* Añadido para que :after se posicione correctamente */
  }

  .menu-dropdown-icon:before {
    content: "+"; /* Código del icono */
    font-family: Arial, sans-serif; /* Usar una fuente genérica si no se usa Font Awesome */
    font-weight: 950;
    font-size: 1.0em; /* Ajustado para que sea más visible */
    color: #333;
    display: block;
    line-height: 0.5em; /* Ajustado para alinear verticalmente */
    text-align: center;
    border-radius: 20%; /* Redondeo completo */
    background: linear-gradient(145deg, #eeebeb, #aaa9a9c9); /* Gradiente corregido */
    border: 2px solid #cfcece; /* Contorno más grueso */
    margin: 0 auto; /* Centrado horizontalmente */
    cursor: pointer;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.menu-dropdown-icon:active:before,
.menu-dropdown-icon:focus:before {
    background: linear-gradient(145deg, #e0e0e0, #d0d0d0);
    color: #000;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
    transform: rotate(180deg); /* Rotea el ícono cuando se toca */
}

.menu > ul {
  display: none; /* Oculto por defecto */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Sombra por defecto */
  transition: box-shadow 0.3s; /* Transición suave para la sombra */
  overflow: hidden; /* Asegura que el contenido oculto no afecte el diseño */
}

  .menu > ul.show {
    display: block; /* Mostrar el menú cuando tenga la clase 'show' */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3); /* Sombra más intensa cuando está visible */
  }
  
  .menu > ul > li {
    width: 100%;
    float: none;
    display: block;
  }
  .menu > ul > li a {
    padding: 1.5em;
    width: 100%;
    display: block;
    font-weight: normal; /* Peso de fuente por defecto */
    transition: font-weight 0.3s; /* Transición suave para el peso de la fuente */
  }
  .menu > ul > li > ul {
    position: relative;
  }
  .menu > ul > li > ul.normal-sub {
    width: 100%;
  }

 /* Estilos para los títulos de los elementos del menú */
 .menu > ul > li > a {
  padding: 1.5em;
  width: 100%;
  display: block;
}

  /* Estilos para los títulos de los submenús abiertos */
  .menu > ul > li > ul.show > li > a {
    font-weight: bold; /* Peso de fuente más grueso */
  }
  
  .menu > ul > li > ul > li {
    float: none;
    width: 100%;
    margin-top: 20px;
  }
  .menu > ul > li > ul > li:first-child {
    margin: 0;
  }
  .menu > ul > li > ul > li > ul {
    position: relative;
  }
  .menu > ul > li > ul > li > ul > li {
    float: none;
  }
  .menu .show-on-mobile {
    display: block;
  }

  .menu > ul > li > ul > li > a {
    font-family: 'Poppins', sans-serif; /* Fuente personalizada */
    font-weight: 400; /* Peso normal del texto */
    color: #333; /* Color inicial del texto */
    text-decoration: none;
    padding: 1em;
    display: block;
    transition: font-weight 0.3s ease, color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .menu > ul > li > ul > li.open > a {
    font-weight: 600; /* Grosor más alto cuando el submenú está abierto */
    color: #0073e6; /* Cambia el color del texto al abrir */
    background: linear-gradient(145deg, #f0f0f0, #cfcfcf); /* Fondo con gradiente */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave alrededor del texto */
    border-radius: 5px; /* Bordes ligeramente redondeados */
  }
  .menu > ul > li:hover > ul > li > a,
.menu > ul > li:focus > ul > li > a {
    font-weight: bold; /* Aumenta el peso de la fuente cuando el submenú está abierto */
    padding: 12px 15px; /* Ajusta el espaciado si deseas un efecto más evidente */
}

}

.bx-wrapper {
  position: relative;
  box-shadow: none;
  border: 0;
  margin-bottom: 0;
}

.bx-controls {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999;
}

.welcome {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #333;
  text-align: center;
  padding: 70px 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
}

.welcome .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: #333;
}

.welcome h2 {
  color: #fff;
  margin-bottom: 25px;
}

.welcome p {
  color: #fff;
}

.welcome p.button {
  color: #fff;
  margin-top: 35px;
}

.welcome p.button a {
  background: #0d1452;
  color: #fff;
  padding: 10px 14px;
  transition: all 0.4s ease;
  text-decoration: none;
}

.welcome p.button a:hover {
  background: #fff;
  color: #0d1452;
}

.service {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 70px 0;
}

.service .item {
  text-align: center;
}
.service .icon {
  text-align: center;
}

.service .icon i {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: #0d1452;
  color: #fff;
  font-size: 38px;
  border-radius: 50%;
}


/* Carrusel de productos */
.product .product-carousel {
    width: 100%; /* Asegúrate de que el carrusel ocupe el 100% del ancho */
  position: relative;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 10px; /* Espaciado interno */
  scrollbar-width: none; /* Ocultar barra de desplazamiento en Firefox */
  margin: 0 auto; /* Centrar el carrusel horizontalmente */
}

.product .product-carousel::-webkit-scrollbar {
  display: none; /* Ocultar barra de desplazamiento en WebKit */
}

.product .product-carousel .item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  margin-right: 0px; /* Mayor margen derecho entre los elementos del carrusel */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  padding: 8px; /* Espacio interior para los elementos del carrusel */
  border-radius: 10px; /* Bordes redondeados */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra sutil */
}

.product .product-carousel .item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);  /* Sombra más prominente al pasar el mouse */
}

/* Imagen del producto */
.product .product-carousel .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 8px; /* Bordes redondeados */
}

.product .product-carousel .thumb .photo {
  background-size: cover;
  background-position: center;
  width: 100%;
  padding-top: 75%; /* Proporción de aspecto 4:3 */
  border-radius: 8px; /* Bordes redondeados */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}

.product .product-carousel .thumb:hover .photo {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Overlay */
.product .product-carousel .thumb .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px; /* Bordes redondeados */
}

.product .product-carousel .thumb:hover .overlay {
  opacity: 1;
}

/* Texto del producto */
.product .product-carousel .text {
  text-align: center;
  padding: 15px;
  background: #fff; /* Fondo blanco para el texto */
  border-radius: 0 0 8px 8px; /* Bordes redondeados en la parte inferior */
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.product .product-carousel .text h3 {
  font-size: 2px;
  margin: 5x 0;
  font-weight: 600; /* Negrita */
}

.product .product-carousel .text h4 {
  font-size: 24px;
  color: #2e7d32; /* Verde más oscuro */
  margin: 1px 0;
  font-weight: 700; /* Negrita */
}

.product .product-carousel .text h4 del {
  font-size: 20px;
  color: #b60a0a; /* Rojo para el precio antiguo */
  margin-left: 1px;
}

.product .product-carousel .text .rating i {
  color: #FFD700;
  font-size: 16px;
}

.product .product-carousel .text p a {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  background-color: #28a745;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600; /* Negrita */
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.product .product-carousel .text p a:hover {
  background-color: #218838;
  transform: scale(1.05);
}

.product .product-carousel .text p {
  margin: 0;
}

/* Disponibilidad del producto */
.product .product-carousel .text .availability {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px auto 0 auto;
  width: fit-content;
}

.product .product-carousel .text .availability img {
  width: 15px; /* Tamaño más grande para los íconos */
  height: 15px;
  margin-right: 6px;
}

.product .product-carousel .text .availability span {
  font-size: 14px;
}



@media (max-width: 900px) {
  .product .product-carousel .text h3 {
    font-size: 16px;
  }

  .product .product-carousel .text h4 {
    font-size: 20px;
  }

  .product .product-carousel .text p a {
    padding: 6px 12px;
    font-size: 14px;
  }
}





.product .owl-controls {
  position: absolute;
  top: -60px;
  right: 0;
}

.product .owl-controls .owl-prev,
.product .owl-controls .owl-next {
  background: #353535;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding-left: 13px;
  padding-right: 13px;
}

.product .owl-controls .owl-prev i,
.product .owl-controls .owl-next i {
  font-size: 14px;
}

.product .owl-controls .owl-prev:hover,
.product .owl-controls .owl-next:hover {
  background: #0d1452;
}

.product .item {
  border: 2px solid #c5c5c5;

}

.product .text {
  background: #f2f3f3;
  padding: 14px;
  overflow: hidden;
}

.product .text del {
  color: #9d9d9d;
}

.product .text h3 {
  font-weight: 700;
  text-align: center;
  color: #353535;
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 0;
}

.product .text h3 a {
  color: #333;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

.product .text h3 a:hover {
  text-decoration: none;
}

.product .text h4 {
  color: #0d1452;
  text-align: center;
  font-size: 18px;
}

.product .text p {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 14px;
}

.product .text p a {
  /* background: #0d1452; */
  background: #e7a340;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  transition: all 0.4s ease;
}
.product .out-of-stock {
  width: 100%;
  padding: 6px 10px;
  text-align: center;
}

.product .out-of-stock .inner {
  display: inline-block;
  background: #0d1452;
  color: #fff;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.4s ease;
  text-decoration: line-through;
}

.product .text .rating {
  text-align: center;
}

.product .text p a:hover {
  background: #333;
}

.product .item .thumb {
  position: relative;
  overflow: hidden;
}

.product .item .thumb .photo {
  width: 100%;
  height: 280px;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}



.product .item .thumb .overlay {
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(0.2);
  -ms-transform: scale(0.2);
  -o-transform: scale(0.2);
  transform: scale(0.2);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background: rgba(255, 255, 255, 0.6);
}

.product .item:hover .thumb .overlay {
  opacity: 1;
  filter: alpha(opacity=1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.product-cat .item {
  padding: 5px;  /* Agregar espacio interior */
  
  border-radius: 10px;  /* Bordes redondeados */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  /* Sombra sutil */
  transition: transform 0.3s, box-shadow 0.3s;  /* Transiciones suaves */
}

.product-cat .item:hover {
  transform: scale(1.01);  /* Escalar el elemento al pasar el mouse */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);  /* Sombra más prominente al pasar el mouse */
}

.product .item-product-cat .inner {
  border: 2px solid #e5e5e5;  /* Borde inicial */
  border-radius: 8px;  /* Bordes redondeados */
  padding: 8px;  /* Espacio interior */
  background: #fff;  /* Fondo blanco para destacar el contenido */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);  /* Sombra sutil */
  transition: box-shadow 0.3s;  /* Transiciones suaves */
}

.product .item-product-cat:hover .inner {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);  /* Sombra más prominente al pasar el mouse */
}


/* Estilo para tabletas (pantallas entre 768px y 1024px) */
@media (min-width: 767px) and (max-width: 1024px) {
  .product-cat .item {
    width: 48%;
    margin: 1% auto;  /* Ajuste de margen para centrar los elementos */
    display: block;
    padding: 15px;  /* Ajuste de relleno para tabletas */
  }
}

/* Estilo para móviles (pantallas menores a 768px) */
@media (max-width: 767px) {
  .product-cat .item {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;  /* Ajuste de relleno para móviles */
  }
}

/* Estilo general para imágenes en pantallas grandes */
.product-cat .item img {
  /* Sin cambios para pantallas grandes */
}

/* Estilo para tabletas (pantallas entre 768px y 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .product-cat .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Ajusta la imagen para cubrir el contenedor sin distorsión */
    border-radius: 8px;  /* Bordes redondeados */
  }
}

/* Estilo para móviles (pantallas menores a 768px) */
@media (max-width: 767px) {
  .product-cat .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Ajusta la imagen para cubrir el contenedor sin distorsión */
    border-radius: 8px;  /* Bordes redondeados */
  }
}





.product .item-search-result {
  border: 0;
}
.product .item-search-result .inner {
  border: 2px solid #e5e5e5;
}
.product .item-search-result:nth-of-type(4n + 1) {
  clear: both;
}


.testimonial-v1 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.testimonial-v1 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #353535;
  opacity: 0.7;
}

.testimonial-v1 .container {
  position: relative;
  z-index: 9999;
}

.testimonial-v1 .heading {
  margin-bottom: 50px;
}

.testimonial-v1 .heading h2 {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.testimonial-v1 .heading p {
  font-size: 14px;
  text-align: center;
  color: #fff;
}

.testimonial-v1 .testimonial-carousel {
  text-align: center;
  position: relative;
  width: 70%;
  margin: 0 auto;
}

.testimonial-v1 .content .comment {
  color: #fff;
  padding: 14px 50px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  position: relative;
}

.testimonial-v1 .content .comment p {
  margin: 0 auto;
  color: #fff;
  font-size: 14px;
}

.testimonial-v1 .author {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.testimonial-v1 .photo {
  display: inline-block;
  margin-right: -4px;
  vertical-align: top;
}

.testimonial-v1 .photo img {
  width: 80px;
  height: 80px;
  float: right;
  margin-right: 25px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.testimonial-v1 .text {
  display: inline-block;
  vertical-align: top;
}

.testimonial-v1 .text h3 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: left;
  margin-top: 10px;
}

.testimonial-v1 .text h4 {
  font-size: 13px;
  color: #fff;
  text-align: left;
}

.testimonial-v1 .owl-nav {
  margin-top: 20px;
}

.testimonial-v1 .owl-nav i {
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 20px;
  text-align: center;
}

.testimonial-v1 .owl-nav .owl-prev,
.testimonial-v1 .owl-nav .owl-next {
  color: #fff;
  background: none;
  position: absolute;
  top: 14%;
}

.testimonial-v1 .owl-nav .owl-prev i,
.testimonial-v1 .owl-nav .owl-next i {
  font-size: 30px;
  font-weight: bold;
}

.testimonial-v1 .owl-nav .owl-prev {
  left: -80px;
}

.testimonial-v1 .owl-nav .owl-next {
  right: -80px;
}

.testimonial-v1 .owl-nav .owl-prev:hover,
.testimonial-v1 .owl-nav .owl-next:hover {
  background: none;
}

.home-blog {
  width: 100%;
  height: auto;
  padding: 70px 0;
  overflow: hidden;
}

.home-blog .item 
{
}

.home-blog .item .photo {
  width: 100%;
  height: 300px;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.home-blog .text {
  padding: 14px;
  background: #f2f3f3;
}

.home-blog .text h3 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
}

.home-blog .text p.button {
  margin-top: 25px;
}

.home-blog .text p.button a {
  background: #0d1452;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  transition: all 0.4s ease;
}

.home-blog .text p.button a:hover {
  background: #333;
}

.footer-main {
  width: 100%;
  height: auto;
  padding: 50px 0;
  background: #2a2a2a;
}
.footer-main h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 25px;
  border-bottom: 1px solid #525252;
}
.footer-main h3:after {
  content: "";
  position: absolute;
  width: 50px;
  background: #0d1452;
  left: 0;
  bottom: -2px;
  height: 4px;
}
.footer-main .footer-col p {
  color: #a3a3a3;
  font-size: 14px;
  line-height: 22px;
}
.footer-main .footer-col p a {
  color: #a3a3a3;
}
.footer-main .footer-col p span {
  display: block;
  color: #a3a3a3;
}
.footer-main .footer-col ul li {
  color: #a3a3a3;
  font-size: 14px;
  line-height: 22px;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  list-style-type: none;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}
.footer-main .footer-col ul li a {
  color: #a3a3a3;
  font-size: 14px;
  line-height: 22px;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.footer-main .footer-col ul li a:hover {
  color: #fff;
}
.footer-main .footer-col ul li:before {
  color: #a3a3a3;
  content: "\f0a4";
  font-family: "FontAwesome";
  left: 0;
  position: absolute;
  top: 0;
}
.footer-main .footer-col .contact-item {
  color: #a3a3a3;
  font-size: 14px;
  overflow: hidden;
  margin-bottom: 10px;
  display: table;
}
.footer-main .footer-col .contact-item .icon {
  width: 35px;
  display: table-cell;
  vertical-align: top;
  font-size: 14px;
  margin-right: 10px;
}
.footer-main .footer-col .contact-item .icon i {
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: #dedede;
  color: #2a2a2a;
  border-radius: 50%;
}
.footer-main .footer-col .contact-item .text {
  display: table-cell;
  vertical-align: top;
  line-height: 22px;
  display: block;
}
.footer-main .footer-col p.social {
  margin-bottom: 10px;
}

.footer-bottom {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  height: 50px; /* Altura del footer */
  width: 100%;
  position: relative;
  bottom: 0;
  left: 0;
  margin-top: auto; /* Empuja el footer al final del .wrapper */
}

.footer-bottom .copyright {
  font-size: 13px;
  color: #a3a3a3;
  text-align: center;
}

.scrollup {
  position: fixed;
  z-index: 99999;
  bottom: 20px;
  right: 20px;
  display: none;
}
.scrollup i {
  width: 50px;
  height: 50px;
  line-height: 40px;
  border-radius: 50%;
  background: #0d1452;
  color: #fff;
  border: 4px solid #0d1452;
  text-align: center;
  font-size: 26px;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.scrollup i:hover {
  opacity: 1;
  filter: alpha(opacity=1);
}

ul.prod-slider li {
  height: 450px;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: top center;
  position: relative;
}
ul.prod-slider li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 99999999;
}
.bx-controls {
  display: none;
}
.prod-pager-thumb {
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: top center;
}


/* Media query para ocultar .breadcrumb en pantallas pequeñas */
@media (max-width: 767px) {
  .prod-pager-thumb  {
    display: none;
  }
}


#prod-pager {
  margin-top: 20px;
}

#prod-pager a {
  float: left;
  margin-right: 3px;
}

ul.nav-tabs {
  margin-top: 50px;
}
.product .p-title h2 {
  color: #0d1452;
  margin-top: 0;
  font-size: 24px;
  font-weight: 700;
}

.product .p-status {
  margin-bottom: 10px;
}

.product .p-review {
  margin-bottom: 10px;
}

.product .p-price {
  line-height: 30px;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.product .p-price span {
  font-size: 30px;
}

.product .p-price del {
  color: #c7c7c7;
}

.product .p-short-des {
  margin-bottom: 30px;
}

.product .p-quantity {
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 35px;
  font-size: 14px;
}

.product .p-quantity input[type="number"] {
  height: 30px;
  width: 100px;
  border: 2px solid #c7c7c7;
}

.product .btn-cart {
  margin-bottom: 30px;
}

.product .btn-cart a {
  padding: 10px 14px;
  /* background: #0d1452; */
  background: #f19000;
  color: #fff;
}

.product .btn-cart1 input[type="submit"] {
  border: 0;
  padding: 10px 14px;
  /* background: #0d1452; */
  background: #f19000;
  color: #fff;
}

.product .share {
  line-height: 30px;
  font-weight: 700;
}

.product .nav {
  background: transparent;
}

.product .nav-tabs li a {
  font-weight: 700;
  color: #333;
}

.product .tab-content > .tab-pane {
  padding-top: 20px;
}

.review-form h2 {
  font-size: 24px;
  font-weight: 700;
}
.review-form .btn-default {
  background: #0d1452;
  color: #fff;
  border-radius: 0;
  border: 0;
  padding: 10px 14px;
}
.rating-section {
  margin-bottom: 14px;
}

.page-banner {
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
  /* padding-top: 80px;
  padding-bottom: 80px; */
  padding-top: 15px;
  padding-bottom: 15px;
  overflow: hidden;
}

.page-banner .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  /* background: #333; */
  background: #131921;
}

.page-banner h1 {
  color: #fff;
  text-align: center;
  z-index: 999;
  position: relative;
}

.page {
  width: 100%;
  height: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.page h3.special {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 15px;
  border-bottom: 1px solid #b9b9b9;
  position: relative;
}

.page h3.special:after {
  content: "";
  position: absolute;
  width: 100px;
  background: #0d1452;
  left: 0;
  bottom: -2px;
  height: 4px;
}

.cart {
  width: 100%;
  height: auto;
}

.cart table img {
  width: 100px;
}

.cart table tr td {
  vertical-align: middle;
}

.cart input[type="number"] {
  height: 30px;
  width: 70px;
  border: 2px solid #c7c7c7;
  padding-left: 10px;
  padding-right: 10px;
}

.cart table tr td .trash {
  color: #0d1452;
  font-size: 18px;
}

.cart table tr td.total-text,
.cart table tr th.total-text {
  text-align: right;
  font-size: 14px;
}

.cart table tr td.total-amount,
.cart table tr th.total-amount {
  text-align: right;
  font-size: 14px;
}

.cart-buttons {
  width: 100%;
  float: right;
  margin-top: 40px;
}

.cart-buttons ul {
  float: right;
}

.cart-buttons li {
  float: left;
  list-style-type: none;
  margin-left: 14px;
}

.cart-buttons li input[type="submit"],
.cart-buttons li a {
  background: #0d1452;
  border: 0;
  border-radius: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 18px;
  padding: 10px 20px;
  color: #fff;
}

.cart-buttons li input[type="submit"]:hover,
.cart-buttons li a:hover {
  background: #333;
  color: #fff;
}

.cform input[type="submit"] {
  background: #0d1452;
  border: 0;
}

.cform address span,
.cform address a span {
  color: #0d1452;
}

.page iframe {
  width: 100%;
}

.gal-container {
  padding: 12px;
}
.gal-item {
  overflow: hidden;
  padding: 3px;
}
.gal-item .box {
  height: 350px;
  overflow: hidden;
}
.box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.gal-item a:focus {
  outline: none;
}
.gal-item a:after {
  content: "\e003";
  font-family: "Glyphicons Halflings";
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.75);
  position: absolute;
  right: 3px;
  left: 3px;
  top: 3px;
  bottom: 3px;
  text-align: center;
  line-height: 350px;
  font-size: 30px;
  color: #fff;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.gal-item a:hover:after {
  opacity: 1;
}
.modal-open .gal-container .modal {
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-open .gal-item .modal-body {
  padding: 0px;
}
.modal-open .gal-item button.close {
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: #000;
  opacity: 1;
  color: #fff;
  z-index: 999;
  right: -12px;
  top: -12px;
  border-radius: 50%;
  font-size: 14px;
  border: 2px solid #fff;
  line-height: 25px;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.35);
}
.modal-open .gal-item button.close:focus {
  outline: none;
}
.modal-open .gal-item button.close span {
  position: relative;
  top: -3px;
  font-weight: lighter;
  text-shadow: none;
}
.gal-container .modal-dialogue {
  width: 80%;
}
.gal-container .description {
  position: relative;
  height: 40px;
  top: -40px;
  padding: 10px 25px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: left;
}
.gal-container .description h4 {
  margin: 0px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}
.gal-container .modal.fade .modal-dialog {
  -webkit-transform: scale(0.1);
  -moz-transform: scale(0.1);
  -ms-transform: scale(0.1);
  transform: scale(0.1);
  top: 100px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.gal-container .modal.fade.in .modal-dialog {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transform: translate3d(0, -100px, 0);
  transform: translate3d(0, -100px, 0);
  opacity: 1;
}
@media (min-width: 768px) {
  .gal-container .modal-dialog {
    width: 55%;
    margin: 50 auto;
  }
}
@media (max-width: 768px) {
  .product .product-carousel .item {
    flex: 0 0 100%;
    margin-right: 0;
  }
}
/* Footer Style */
i.red {
  color: #bc0213;
}
.gal-container {
  padding-top: 0px;
  padding-bottom: 75px;
}

.videos {
  padding-top: 30px;
  padding-bottom: 10px;
  text-align: center;
}
.videos .adv img {
  width: 100%;
  height: auto;
}
.videos .prop-4-col:nth-of-type(4n + 1) {
  clear: both;
}
.videos .prop-3-col:nth-of-type(3n + 1) {
  clear: both;
}
.videos h2 {
  color: #464646;
  font-family: "Open Sans", serif;
  font-size: 26px;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
}
.videos h3 {
  color: #464646;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 40px;
  margin-top: 20px;
}
.single-room {
  position: relative;
  margin-bottom: 30px;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.75);
}
.single-room .photo-col2 {
  width: 100%;
  height: 360px;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.single-room .photo-col3 {
  width: 100%;
  height: 150px;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.single-room-text {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.single-room-text h2 {
  background: #fff;
  font-size: 13px;
  line-height: 1.4;
  text-transform: none;
  margin-bottom: 0;
}
.single-room-text h2 a {
  color: #333;
  padding: 8px !important;
  font-weight: 600;
  display: block;
}

table.bill-address tr td:nth-of-type(1) {
  font-weight: bold;
  width: 200px;
}

.user-sidebar ul {
  text-align: center;
}

.user-sidebar ul li {
  list-style-type: none;
  border-bottom: 1px solid #fff;
  display: inline-block;
  width: 100%; /* Para mantener el ancho completo en pantallas grandes */
}


.user-sidebar ul li a {
  padding: 7px 20px;
  min-height: 40px;
  line-height: 40px;
  background: #444;
  color: #fff;
  display: block; /* Asegura que el enlace ocupe todo el espacio del li */
  text-align: center; /* Centra el texto en el enlace */
}
.user-content h3 {
  margin-bottom: 20px;
}

.blog {
  background: #fff;
}

.blog .post-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.blog .image-holder {
  width: 285px;
  float: left;
  position: relative;
  margin-right: 15px;
}

.blog .image-holder-single {
  width: 100%;
  float: none;
  position: relative;
}

.blog .image-holder-single img {
  width: 100%;
  height: auto;
}

.blog .image-holder .date {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  z-index: 999;
}

.blog .image-holder .day {
  width: 60px;
  height: 40px;
  line-height: 40px;
  background: #0d1452;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 16px;
}

.blog .image-holder .day:before {
  position: absolute;
  top: 22px;
  left: 24px;
  color: #0d1452;
  font-family: "FontAwesome";
  content: "\f0d7";
  font-size: 24px;
}

.blog .image-holder .month {
  width: 60px;
  height: 40px;
  line-height: 40px;
  background: #333;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
}

.blog .text {
  width: calc(100% - 300px);
  float: left;
}

.blog .text-single {
  width: 100%;
  float: none;
}

.blog .text-single h3 {
  font-family: "Roboto", sans-serif;
  margin-top: 20px;
}

.blog .text .inner {
  padding: 0 20px 20px 20px;
}

.blog h3 {
  font-family: "Roboto", sans-serif;
  text-align: left;
  color: #333;
  font-weight: 700;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.5;
  text-transform: uppercase;
}

.blog h3 a {
  font-family: "Roboto", sans-serif;
  color: #333;
}

.blog h3 a:hover {
  color: #0d1452;
}

.blog .text ul.status {
  overflow: hidden;
  margin-bottom: 15px;
}

.blog .text ul.status li {
  text-align: left;
  margin-bottom: 15px;
  color: #0d1452;
  font-size: 14px;
  float: left;
  list-style-type: none;
  margin-right: 15px;
  line-height: 18px;
  margin-bottom: 5px;
  padding-left: 0;
}

.blog .text ul.status li a {
  color: #0d1452;
}

.blog .text ul.status li i {
  margin-right: 8px;
}

.blog ul.status li:before {
  content: "";
}

.blog ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  list-style-type: none;
}

.blog ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "FontAwesome";
  content: "\f044";
  color: #333;
}

.blog h1 {
  font-size: 24px;
  color: #0d1452;
  font-weight: bold;
}

.blog h2 {
  font-size: 20px;
  color: #0d1452;
  font-weight: bold;
}

.blog h3 {
  font-size: 18px;
  color: #333;
  font-weight: bold;
}

.blog h4 {
  font-size: 16px;
  color: #0d1452;
  font-weight: bold;
}

.blog h5 {
  font-size: 14px;
  color: #0d1452;
  font-weight: bold;
}

.blog h6 {
  font-size: 12px;
  color: #0d1452;
  font-weight: bold;
}

.blog p {
  margin-bottom: 15px;
  font-size: 14px;
}

.blog p.button {
  margin-top: 20px;
}

.blog p.button a {
  font-family: "Roboto", sans-serif;
  background: #0d1452;
  color: #fff;
  padding: 10px 14px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.blog p.button a:hover {
  background: #444;
}

.blog .pagination {
  margin-top: 20px;
}

.blog .pagination ul {
  width: 100%;
  height: auto;
  text-align: center;
}

.blog .pagination ul li {
  display: inline-block;
  color: #333;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-right: 10px;
  padding-left: 0;
}

.blog .pagination ul li:before {
  content: "";
}

.blog .pagination ul li a {
  background: #0d1452;
  color: #fff;
  display: block;
  font-size: 16px;
}

.blog .pagination ul li a i {
  margin-right: 0;
}

.blog .pagination ul li a:hover {
  background: #333;
}

.blog .pagination ul li a.active {
  background: #333;
}

.blog .gallery-carousel {
  position: relative;
  z-index: 999;
}

.blog .owl-controls {
  position: absolute;
  top: 0px;
  right: 0;
  z-index: 999;
}

.blog .owl-controls .owl-prev,
.blog .owl-controls .owl-next {
  background: #333;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding-left: 13px;
  padding-right: 13px;
}

.blog .owl-controls .owl-prev i,
.blog .owl-controls .owl-next i {
  font-size: 16px;
}

.blog .owl-controls .owl-prev:hover,
.blog .owl-controls .owl-next:hover {
  background: #0d1452;
}

.blog .video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.blog .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog .audio {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

/**
 * ---------------------------------------------------
 * Sidebar Style
 * ---------------------------------------------------
 */
.sidebar {
  width: 100%;
}

.widget {
  overflow: hidden;
  margin-bottom: 30px;
}

.widget-search input {
  height: 36px;
  border: 2px solid #afafaf;
  float: left;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.widget-search input:focus {
  border: 2px solid #0d1452;
}

.widget-search button {
  width: 42px;
  height: 36px;
  float: left;
  border: 2px solid #0d1452;
  background: #0d1452;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  margin-left: 5px;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.widget-search button:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

.widget h4 {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 6px;
  margin-bottom: 15px;
  border-bottom: 2px solid #0d1452;
}

.widget ul li {
  display: block;
  float: none;
  color: #333;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.widget ul li:before {
  content: "\f105";
  font-family: "FontAwesome";
  position: absolute;
  color: #333;
  top: 1px;
  left: 3px;
}

.widget ul li a {
  color: #333;
  font-size: 14px;
}

.widget ul li a:hover {
  color: #0d1452;
}

.widget ul.tag-cloud li {
  display: inline-block;
  padding-left: 0;
  padding: 4px 10px;
  border: 2px solid #afafaf;
  font-size: 12px;
  margin-right: 5px;
}

.widget ul.tag-cloud li:before {
  content: "";
}

.widget ul.tag-cloud li:hover {
  background: #0d1452;
  border: 2px solid #0d1452;
}

.widget ul.tag-cloud li:hover a {
  color: #fff;
}

.card .nav-tabs {
  border-bottom: 2px solid #ddd;
  background: #fff;
}
.card .nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
}
.card .nav-tabs > li > a {
  border: none;
  color: #666;
}
.card .nav-tabs > li.active > a,
.card .nav-tabs > li > a:hover {
  border: none;
  color: #0d1452 !important;
  background: transparent;
}
.card .nav-tabs > li > a::after {
  content: "";
  background: #0d1452;
  height: 2px;
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: -1px;
  transition: all 250ms ease 0s;
  transform: scale(0);
}
.card .nav-tabs > li.active > a::after,
.nav-tabs > li:hover > a::after {
  transform: scale(1);
}
.tab-nav > li > a::after {
  background: #21527d none repeat scroll 0% 0%;
  color: #fff;
}
.tab-pane {
  padding: 14px 0;
}
.tab-content {
  padding: 20px;
}

.card {
  background: #fff none repeat scroll 0% 0%;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.vid iframe {
  width: 100%;
  height: 250px;
}

div.pagination {
  padding: 3px;
  margin: 3px;
  z-index: 1000;
  font-size: 14px;
  margin-bottom: 20px;
}

div.pagination a {
  padding: 5px 7px;
  margin: 2px;
  border: 1px solid #cf0d42;
  text-decoration: none; /* no underline */
  background-color: #0d1452;
  color: #fff;
  font-weight: bold;
}

div.pagination a:hover,
div.pagination a:active {
  border: 1px solid #cf0d42;
  color: #fff;
  background-color: #b20b39;
}

div.pagination span.current {
  padding: 5px 7px;
  margin: 2px;
  border: 1px solid #cf0d42;
  font-weight: bold;
  background-color: #b20b39;
  color: #fff;
  font-weight: bold;
}

div.pagination span.disabled {
  padding: 5px 7px;
  margin: 2px;
  border: 1px solid #929693;
  color: #929693;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
}

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: url(../img/1.gif);
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}

.ad-section img {
  width: 100% !important;
  height: auto !important;
}

.breadcrumb {
  background: #fff;
  margin-top: -40px;
}

.breadcrumb ul li {
  float: left;
  list-style-type: none;
  margin-right: 10px;
  color: #0d1452;
}
/* Media query para ocultar .breadcrumb en pantallas pequeñas */
@media (max-width: 767px) 
{
  .breadcrumb {
    display: none;
  }
}

.breadcrumb ul li:last-child {
  color: #333;
}

.breadcrumb ul li a {
  color: #0d1452;
}

.bs-slider .item {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 500px;
}

.home-newsletter {
  padding: 80px 0;
  /* background: #0d1452; */
  background: #232f3e;
}

.home-newsletter .single {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.home-newsletter .single h2 {
  font-size: 22px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-top: 0;
}
.home-newsletter .single .form-control {
  height: 50px;
  border-color: #333;
  outline: none;
}
.home-newsletter .single .btn {
  min-height: 30px;
  background: #333;
  color: #fff;
  padding-left: 15px;
  padding-right: 15px;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #f4f4f4;
}

.order-confirmation {
  padding: 20px;
  max-width: 600px;
  margin: auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.confirmation-message {
  text-align: center;
  padding: 10px;
  background: #dff0d8;
  color: #3c763d;
  border-radius: 5px;
  margin-bottom: 20px;
  animation: fadeIn 1s ease-in-out;
}

.order-details {
  text-align: left;
}

.order-details h2 {
  margin: 0 0 10px;
  color: #333;
}

.order-details p {
  margin: 5px 0;
  color: #666;
}

.order-timeline {
  margin-top: 20px;
  position: relative;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
}

.timeline-item .icon {
  font-size: 24px;
  margin-right: 10px;
}

.timeline-item .text {
  flex-grow: 1;
}

.timeline-item .title {
  margin: 0;
  font-weight: normal;
}

.timeline-item.bold .title {
  font-weight: bold;
}

.timeline-item .date {
  margin: 0;
  color: #999;
}

.line {
  width: 2px;
  height: 30px;
  background: #ccc;
  position: absolute;
  left: 11px; /* Align with icon center */
  top: 30px; /* Position below the icon */
  animation: growLine 0.5s ease-in-out;
}

.completed .line {
  background: #28a745;
}

.completed .icon {
  color: #28a745;
}

.pending .icon {
  color: #ffc107;
}

.track-button {
  text-align: center;
  margin-top: 20px;
}

.track-button button {
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.track-button button:hover {
  background: #0056b3;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes growLine {
  from {
      height: 0;
  }
  to {
      height: 30px;
  }
}

.product-details {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  margin-top: 20px;
}
product-details h4 {
  margin-top: 0;
  font-size: 1.5em;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
}

.product-details ul {
  list-style-type: none;
  padding: 0;
}

.product-details li {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.product-details li:last-child {
  border-bottom: none;
}

#productos-destacados {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.producto {
  width: 30%;
  text-align: center;
  margin: 10px;
}

.producto img {
  width: 100%;
  height: auto;
}

.discount-badge {
  background-color: rgba(241, 14, 14, 0.795); /* Fondo verde */
  color: white;            /* Texto blanco */
  padding: 2px 5px;        /* Espaciado interno para el cuadro */
  border-radius: 5px;      /* Bordes redondeados */
  font-size: 12px;         /* Tamaño del texto más pequeño */
  font-weight: bold;       /* Texto en negrita */
  margin-left: 10px;       /* Espacio entre el precio y el porcentaje */
  display: inline-block;   /* Asegura que el estilo de cuadro se aplique correctamente */
  vertical-align: middle;  /* Alineación vertical al centro */
}

.input-group {
  display: flex;
  align-items: center;
}

.selected-date-text {
  margin-left: 15px;
  font-size: 1em;
  color: #333;
  white-space: nowrap;
}

.special {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.input-group {
  display: flex;
  align-items: center;
}

.input-group input {
  flex: 1;
}

.input-group .input-group-btn {
  margin-left: 10px;
}

.input-group-text {
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
}

#selected-date-text {
  margin-left: 15px;
  font-size: 14px;
  color: #007bff;
  font-weight: bold;
  white-space: nowrap;
}

/* Estilos para el segundo botón en pantallas grandes */
.btn-secondary {
  background-color: #ff6347; /* Un color diferente */
  color: #fff;
  border: 2px solid #000000;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #ff6347;
}

/* Estilos para pantallas pequeñas */
@media (max-width: 768px) {
  .input-group {
      display: flex;
      flex-direction: column;
      align-items: stretch;
  }

  .input-group input {
      margin-bottom: 10px;
      width: 100%;
  }

  .input-group .input-group-btn {
      margin-left: 0;
      width: 100%;
      margin-bottom: 10px; /* Agrega un margen inferior para separar los botones */
  }

  .input-group .input-group-btn button {
      width: 100%;
  }

  /* Estilos específicos para el segundo botón en móvil */
  .btn-secondary {
      background-color: #4caf50; /* Otro color para móvil */
      border: none;
      font-size: 18px;
      padding: 12px 24px;
  }

  .btn-secondary:hover {
      background-color: #45a049;
  }
}

/* Estilos específicos para pantallas pequeñas */
@media (max-width: 900px) {
  .user-sidebar ul {
      display: flex;
      flex-wrap: wrap; /* Permite que los elementos se ajusten en varias líneas */
      gap: 10px; /* Espacio entre los botones */
      padding: 0;
      justify-content: center; /* Centra los botones horizontalmente */
  }

  .user-sidebar ul li {
      flex: 1 1 48%; /* Cada botón ocupará el 48% del ancho disponible */
      border-bottom: none; /* Elimina el borde inferior en móviles */
      margin-bottom: 10px;
  }

  .user-sidebar ul li a {
      padding: 12px;
      font-size: 18px; /* Aumenta el tamaño de la fuente para pantallas pequeñas */
  }
}


html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(60vh - 50px); /* Altura total menos la altura del footer */
  position: relative;
}

.content {
  flex: 1; /* Se expande para ocupar el espacio disponible */
  padding-bottom: 50px; /* Espacio para el footer */
}

img.btn-whatsapp {
  display: block !important;
  position: fixed;
  z-index: 9999999;
  bottom: 20px;
  left: 20px; /* Ajusta este valor para mover el botón más a la izquierda */
  right: auto; /* Asegúrate de que right esté en auto */
  cursor: pointer;
  border-radius: 100px !important;
  opacity: 100%;
}
  img.btn-whatsapp:hover{
  border-radius:100px !important;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(7,94,84,1); 
  -moz-box-shadow: 0px 0px 15px 0px rgba(7,94,84,1);
  box-shadow: 0px 0px 15px 0px rgba(7,94,84,1);
  transition-duration: 1s;
  } 

  @media (max-width: 900px) { /* Puedes ajustar el ancho máximo según tus necesidades */
    .hide-on-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
  .product-carousel1 .item {
      flex: 0 0 100%; /* Hacer que cada ítem ocupe todo el ancho del carrusel */
      max-width: 100%;
      margin: 0 auto;
  }

  .product-carousel1 .thumb {
      height: 200px; /* Ajusta la altura de la imagen */
  }

  .product-carousel1 .text h3 {
      font-size: 18px; /* Ajusta el tamaño de los títulos */
  }

  .product-carousel1 .text h4 {
      font-size: 16px; /* Ajusta el tamaño del precio */
  }

  .product-carousel1 .text .rating {
      font-size: 14px; /* Ajusta el tamaño de las estrellas de calificación */
  }
  
  .product-carousel1 .text p a {
      padding: 10px 15px; /* Aumenta el área clicable del botón */
      display: block; /* Hace que el botón ocupe todo el ancho disponible */
      text-align: center;
  }
}

@media (max-width: 768px) {
  .btn-cart input[type="submit"],
  .btn-cart a {
      display: block; /* Hace que los botones se muestren en bloque */
      width: 100%; /* Asegura que los botones ocupen todo el ancho disponible */
      margin: 10px 0; /* Añade un margen entre los botones */
  }

  .btn-cart {
      text-align: center; /* Centra los botones en la pantalla */
  }
}

/* Color amarillo para estrellas llenas */
.rating .fa-star,
.rating .fa-star-half-o {
    color: #FFD700; /* Código de color amarillo dorado */
}

/* Color amarillo claro para estrellas vacías */
.rating .fa-star-o {
    color: #dfd9d9; /* También puedes ajustar a un color diferente si prefieres */
}

.hidden {
  display: none;
}

/* Estilo para el mensaje de notificación */
.notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #4CAF50; /* Verde esmeralda */
  color: #fff;
  padding: 20px 40px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3), 0 0 25px rgba(0, 255, 0, 0.5);
  font-size: 18px;
  text-align: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  border: 2px solid #2C6B2F; /* Marco verde oscuro para contraste */
  backdrop-filter: blur(10px); /* Efecto de desenfoque de fondo */
}

.notification.show {
  opacity: 0.9; /* Opacidad del 90% */
  transform: translate(-50%, -50%) scale(1.05);
}

.notification.hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.95);
}

/* Fondo oscuro */
#dark-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75); /* Color oscuro con opacidad */
  display: none; /* Oculto por defecto */
  z-index: 999; /* Asegúrate de que esté por encima de otros elementos */
}


@media (max-width: 768px) {
  .carousel-item .col-3 {
    flex: 0 0 50%; /* Muestra 2 productos a la vez en pantallas pequeñas */
    max-width: 51%;
  }
}



@media only screen and (max-width: 768px) {
  .carousel .item {
    height: 200px; /* Reduce la altura para pantallas móviles */
    max-height: 200px; /* Establece una altura máxima en móviles */
}

.slide-text {
  padding: 10px; /* Reduce el padding para evitar que el contenido esté demasiado apretado */
  text-align: center;
}
  .slide-text h1 {
      font-size: 1.5em; /* Ajusta el tamaño del texto */
      line-height: 1.2em;
  }

  .slide-text p {
      font-size: 1em; /* Ajusta el tamaño del párrafo */
      line-height: 1.5em;
  }
  .carousel .slide-text .btn {
    display: none;
}
  .btn-primary {
      font-size: 0.9em; /* Ajusta el tamaño del botón */
      padding: 10px 20px;
  }

  .carousel-control {
      display: true; /* Opcional: Oculta los controles de izquierda y derecha si prefieres que el usuario deslice con el dedo */
  }

  .carousel-indicators {
      bottom: 10px; /* Ajusta la posición de los indicadores */
  }

  .carousel-indicators li {
      width: 10px;
      height: 10px;
  }
}


/* Modernización de estilos para el carrito de compras */
.modern-cart {
  margin-top: 20px;
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.modern-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

.modern-table thead th {
  background-color: #333;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  padding: 15px;
  border-bottom: 3px solid #ddd;
}

.modern-table tbody tr {
  transition: background-color 0.3s ease;
}

.modern-table tbody tr:hover {
  background-color: #f1f1f1;
}

.modern-table th,
.modern-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.modern-table .product-img {
  max-width: 50px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.total-text {
  font-weight: bold;
  color: #555;
}

.total-amount {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  text-align: right;
}
.sidebar-toggle img {
  width: 24px; /* Ajusta el tamaño del ícono */
  height: 24px;
  /* Puedes agregar más estilos aquí si es necesario */
}
	/* Asegúrate de que no haya otras reglas sobrescribiendo esta */
  @media (max-width: 900px) {
    .right.hidden-on-mobile {
        display: none !important;
    }
}


	/* Media Query for Mobile Devices */
  @media (max-width: 768px) {
    .header .inner {
      flex-direction: column;
    align-items: center; /* Centro el contenido horizontalmente */
    }
  
    .header .logo {
      margin-bottom: 10px;
    }
  
    .header .search-area {
      margin-bottom: -20px;
      width: 100%;
    }
  
    .header .search-area .form-group {
      width: 70%;
    }
  
  .header .right {
      display: block;
      text-align: center;
  
    }
  
    .header .right ul {
      justify-content: center;
      padding: 0;
      margin: 0;
    }
  
    .header .right ul li {
      margin: 0 10px;
    }
  
  /* Animación de aparición */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }  
}

        /* Estilo de botones mejorado */
  .header .search-area button {
    background-color: #c40404;	 /* Color de fondo */
     color: #fff; /* Color del texto */
     border: none;
     border-radius: 15px;
     padding: 8px 20px;
     transition: background-color 0.3s ease, transform 0.3s ease;
   }
   
   .header .search-area button:hover {
     background-color: #e20707; /* Color de fondo en hover */
     transform: translateY(-2px); /* Efecto de elevación */
   }

  /* Efectos de sombra y bordes */
  .header .search-area input[type="text"] {
    border: 1px solid #0d1452; /* Borde sutil */
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra */
    transition: box-shadow 0.3s ease;
  }
  
  .header .search-area input[type="text"]:focus {
    box-shadow: 0 10px 5px rgba(0, 0, 0, 0.2); /* Sombra más prominente al enfocar */
  }

  


  .carousel-inner .item {
    height: 500px; /* Altura máxima o fija del carrusel */
    overflow: hidden; /* Para evitar que la imagen se salga del contenedor */
}

.carousel-inner .item img {
    width: 100%; /* Asegura que la imagen ocupe todo el ancho */
    height: auto; /* Mantener la relación de aspecto */
}




.limited-offer {
  text-align: center;
  background-color: #3B3B3B; /* Color de fondo suave */
  padding: 40px 0;
  border-radius: 12px; /* Bordes redondeados */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Sombra sutil */
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 40px; /* Espaciado mayor entre elementos */
  margin-bottom: 20px;
  margin-top: 20px;
}

.countdown div {
  background: linear-gradient(135deg, #011933, #002e69); /* Gradiente de fondo */
  border-radius: 10px; /* Bordes redondeados */
  padding: 10px 10px; /* Espaciado interno */
  color: white; /* Texto blanco */
  text-align: center; /* Centrar texto */
  transition: transform 0.2s; /* Efecto de transición */
}

.countdown div:hover {
  transform: scale(1.05); /* Efecto de aumento al pasar el ratón */
}

.countdown span {
  display: block;
  font-size: 48px; /* Aumentar tamaño de fuente */
  font-weight: bold; /* Negrita para mayor énfasis */
  margin-bottom: -17px;
  margin-top: -10px;
}


.countdown p {
  font-size: 16px; /* Aumentar tamaño de fuente */
  color: #fff; /* Texto blanco */
  margin-top: 1px; /* Espaciado superior */
  margin-bottom: 0px; /* Espaciado superior */
}


.limited-offer .countdown div {
  display: inline-block; /* Permitir que los elementos se alineen horizontalmente */
  margin: 0 5px; /* Espaciado entre los elementos */
  text-align: center; /* Alinear el texto al centro */
  opacity: 1; /* Opacidad inicial */
  animation: fadeInOut 1.5s infinite; /* Aplicar la animación */
}

/* Animación de aparición y desaparición */
@keyframes fadeInOut {
  0%, 100% {
      opacity: 1; /* Totalmente visible */
  }
  50% {
      opacity: 0.7; /* Totalmente invisible */
  }
}

/* Ajusta el color y el tamaño de los iconos */
.limited-offer .icon {
  font-size: 40px; /* Tamaño del icono */
  color: #0671e4; /* Color del icono */
  margin-bottom: 0px; /* Espaciado entre el icono y el texto */
}

.offer-wrapper {

  border-radius: 12px; /* Bordes redondeados */
  padding: 10px; /* Espaciado interno */
  background: linear-gradient(to right, #c5c5c5, #cdcece); /* Gradiente suave */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada */
  transition: transform 0.3s ease; /* Efecto de transformación al pasar el ratón */
}


.add-to-cart-button {
  display: inline-block;
  padding: 10px 10px; /* Espaciado interno */
  background-color: #007bff; /* Color de fondo */
  color: #ffffff; /* Texto blanco */
  border: none; /* Sin borde */
  border-radius: 5px; /* Bordes redondeados */
  transition: background-color 0.3s; /* Efecto de transición */
}

.add-to-cart-button:hover {
  background-color: #0056b3; /* Color más oscuro al pasar el ratón */
}

.product-carousel .item {
  transition: transform 0.3s ease; /* Suave transición */
}

.product-carousel .item:hover {
  transform: scale(1.00); /* Ampliar el producto al pasar el ratón */
}

.offer-badge {
  position: absolute; /* Para que se superponga sobre la imagen */
  background-color: #ff4757; /* Color de fondo rojo */
  color: white; /* Texto blanco */
  padding: 5px 10px; /* Espaciado interno */
  border-radius: 5px; /* Bordes redondeados */
  font-weight: bold; /* Negrita */
  font-size: 16px; /* Tamaño de fuente */
  top: 10px; /* Ajusta la posición vertical */
  left: 10px; /* Ajusta la posición horizontal */
  z-index: 10; /* Asegúrate de que esté por encima de otros elementos */
}

.offer-header {
  margin-top: -40px;
  background-color: #011933; /* Azul marino oscuro */
  color: white; /* Texto blanco */
  padding: 20px; /* Espaciado alrededor */
  border-radius: 12px 12px 0 0; /* Bordes redondeados en la parte superior */
  text-align: center; /* Centrar texto */
}

.offer-header h2 {
  margin: 0; /* Eliminar márgenes */
  font-size: 32px; /* Tamaño de fuente más grande */
}

.offer-header h3 {
  margin: 5px 0 0; /* Espaciado del subtítulo */
  font-size: 20px; /* Tamaño de fuente para el subtítulo */
  color: #f0f0f0; /* Color ligeramente más claro para el subtítulo */
}





@media (max-width: 768px) {
  .limited-offer {
      padding: -100px; /* Reducir el padding */
  }

  .countdown {
    display: flex;
    justify-content: center;
    align-items: center; /* Centrar verticalmente */
    gap: 0px; /* Espacio entre los elementos */
    margin-bottom: 5px;
    font-size: 14px; /* Tamaño de fuente más pequeño */
    color: #fff; /* Color del texto */
}
  .countdown div {
      width: 100%; /* Hacer que los elementos del contador ocupen el 100% del ancho */
      padding: 1px; /* Espaciado interno más amplio */
  }

  .countdown span {
    font-size: 14px; /* Tamaño de fuente para los números */
    font-weight: bold; /* Negrita para mayor énfasis */
    margin: 0 5px; /* Espaciado horizontal entre los números */
}
.countdown span:first-child {
  font-size: 16px; /* Tamaño más pequeño para los días */
}

  .countdown p {
      font-size: 14px; /* Reducir tamaño de fuente */
  }

  .offer-header h2 {
      font-size: 18px; /* Reducir tamaño de fuente para el título */
  }

  .offer-header h3 {
      font-size: 14px; /* Reducir tamaño de fuente para el subtítulo */
  }

  .offer-badge {
      font-size: 14px; /* Reducir tamaño de fuente para la etiqueta de oferta */
      padding: 4px 8px; /* Ajustar padding */
  }

  .add-to-cart-button {
      width: 100%; /* Hacer que el botón ocupe todo el ancho */
      padding: 12px; /* Aumentar el padding para que sea más fácil de tocar */
      font-size: 16px; /* Aumentar tamaño de fuente */
  }

  .product-carousel .item {
      /* Ajustes para el carrusel si es necesario */
      margin: 0px 0; /* Espaciado vertical entre elementos */
  }
}


.disabled {
  pointer-events: none; /* Desactiva los clics en el botón */
  opacity: 0.5; /* Reduce la opacidad para que se vea deshabilitado */
  cursor: not-allowed; /* Cambia el cursor para indicar que no se puede hacer clic */
}



/* Estilo del contenedor principal */
#YapeForm-container {
  background: linear-gradient(135deg, #ffffff 0%, #d6d6d6 100%);
  padding: 20px;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); /* Sombra agrandada */
  color: black; /* Cambia el color a negro para mayor contraste */
  margin-top: 20px;
  max-width: 600px;
  margin: 0 auto;
}

/* Estilos para la vista previa del voucher */
.voucher-preview {
  border: 2px solid #ccc; /* Borde gris */
  border-radius: 10px; /* Bordes redondeados */
  padding: 10px; /* Espacio interno */
  background-color: rgba(255, 255, 255, 0.9); /* Fondo semitransparente */
  margin-top: 20px; /* Espacio superior */
}
/* Imagen QR centrada y con sombra */
#YapeForm-image {
  max-width: 200px;
  display: block;
  margin: 0 auto 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Contenedor para subir archivo y botón enviar */
.YapeForm-group {
  text-align: center;
  margin: 10px 0; /* Añadir márgenes para separación */
}

/* Botón para seleccionar archivo */
#YapeForm-receipt {
  border: 2px solid white;
  border-radius: 5px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.2);
  color: rgb(0, 0, 0);
  width: 100%;
  margin-bottom: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease; /* Transiciones suaves */

}

/* Efecto al hacer hover */
#YapeForm-receipt:hover {
  background-color: rgba(255, 255, 255, 0.3); /* Fondo más opaco al pasar el ratón */
  border-color: #ddd; /* Cambia el color del borde al hacer hover */
}

/* Botón enviar estilizado */
#YapeForm-submit {
  background-color: #4CAF50; /* Verde elegante */
  border: none;
  padding: 12px 20px;
  text-align: center;
  color: white;
  font-weight: bold;
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Hover en el botón de enviar */
#YapeForm-submit:hover {
  background-color: #45a049;
}

/* Texto debajo del botón de archivo */
.YapeForm-label {
  margin-bottom: 10px;
  font-size: 1.1em;
  font-weight: 500;
}

/* Redondear los bordes del input de archivo */
#YapeForm-receipt[type="file"] {
  border-radius: 10px;
  background: rgba(43, 42, 42, 0.2);
  border: none;
  color: rgb(247, 10, 10);
  cursor: pointer;
}

/* Alinear el contenido de forma vertical centrada */
.YapeForm-row {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Redondear los bordes del input de número de transacción */
#transaction-number {
  border-radius: 10px; /* Bordes redondeados */
  background: rgba(43, 42, 42, 0.2); /* Fondo semi-transparente */
  border: none; /* Sin borde */
  color: rgb(0, 0, 0); /* Color del texto */
  padding: 10px; /* Espaciado interno */
  width: 100%; /* Ancho completo */
  transition: background-color 0.3s ease; /* Transición suave para el fondo */
}

/* Cambiar el color del fondo al enfocar el input */
#transaction-number:focus {
  background: rgba(247, 246, 246, 0.2); /* Fondo más claro al enfocar */
  outline: none; /* Sin contorno */
}










/* Mejora de estilo para el input del selector de fecha */
#delivery-date {
  border-radius: 15px;
  padding: 10px;
  border: 2px solid #ced4da;
  font-size: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none; /* Eliminar el borde de enfoque por defecto */
}



.input-group-text {
  background-color: #007bff; /* Color primario */
  color: white;
  border-radius: 0 5px 5px 0;
  padding: 10px;
  font-weight: bold;
  transition: background-color 0.3s; /* Transición suave */
}

.input-group-text:hover {
  background-color: #0056b3; /* Color más oscuro al pasar el mouse */
}

input:focus {
  border-color: #80bdff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
}

.flatpickr-calendar {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada */
  background: white;
  padding: 10px; /* Espaciado interior */
}

/* Estilo de los días del calendario */
.flatpickr-day {
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s; /* Transiciones suaves */
}

.flatpickr-day:hover {
  background-color: rgba(0, 123, 255, 0.1); /* Fondo al pasar el mouse */
}

.flatpickr-day.today {
  background-color: #007bff; /* Color para hoy */
  color: white;
  font-weight: bold;
}

.flatpickr-day.selected {
  background-color: #28a745; /* Color para el día seleccionado */
  color: white;
}

/* Cambiar el color de la semana y el mes */
.flatpickr-weekday {
  font-weight: bold;
  color: #343a40; /* Color para los nombres de los días de la semana */
}

.flatpickr-month {
  font-weight: bold;
  font-size: 1.2rem; /* Aumentar tamaño del mes */
  color: #007bff; /* Color primario para el mes */
}

/* Estilos adicionales para mejorar la presentación */
.flatpickr-day.disabled {
  color: #ced4da; /* Color para los días deshabilitados */
}

.flatpickr-prev-month, .flatpickr-next-month {
  color: #007bff; /* Color para los botones de navegación */
  cursor: pointer; /* Cambiar cursor */
}

/* Estilos de transición para los botones de navegación */
.flatpickr-prev-month:hover, .flatpickr-next-month:hover {
  color: #0056b3; /* Color más oscuro al pasar el mouse */
}










/* Estilo del contenedor principal del formulario */
#ContraEntregaForm-container {
  background: linear-gradient(135deg, #ffffff 0%, #d6d6d6 100%);
  padding: 20px;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); /* Sombra agrandada */
  color: black;
  margin-top: 20px;
  max-width: 600px;
  margin: 0 auto;
}

/* Cambia el color de la sombra al hacer hover */
#ContraEntregaForm-container:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25); /* Aumentar sombra al hacer hover */
}

/* Estilo de los checkboxes dentro del contenedor */
#ContraEntregaForm-container .form-check-input {
  margin-right: 10px;
  transform: scale(1.2); /* Agrandar los checkboxes */
}

#ContraEntregaForm-container .form-check-label {
  font-size: 1.1em;
  font-weight: bold;
  color: #333;
}

/* Estilo del contenedor del monto en efectivo */
#ContraEntregaForm-container #cash-amount-container {
  margin-top: 15px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.8); /* Fondo semitransparente */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

/* Estilo del input group de efectivo */
#ContraEntregaForm-container .input-group-text {
  background-color: #ddd;
  border-radius: 5px 0 0 5px;
  border: none;
  font-weight: bold;
}

#ContraEntregaForm-container #cash-amount {
  border: 2px solid #ddd;
  border-radius: 0 5px 5px 0;
  padding: 10px;
  background-color: #fff;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Cambios de estado al hacer foco en el input de efectivo */
#ContraEntregaForm-container #cash-amount:focus {
  border-color: #4CAF50;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
  outline: none;
}

/* Botón de finalizar pedido */
#ContraEntregaForm-container #finalize-order {
  background-color: #007BFF; /* Color azul primario */
  border: none;
  padding: 12px 20px;
  text-align: center;
  color: white;
  font-weight: bold;
  border-radius: 10px;
  width: 100%;
  cursor: not-allowed; /* Mostrar que está deshabilitado inicialmente */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Botón habilitado */
#ContraEntregaForm-container #finalize-order.enabled {
  background-color: #28a745; /* Verde al estar habilitado */
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Sombra para el botón habilitado */
}

/* Efecto hover en el botón habilitado */
#ContraEntregaForm-container #finalize-order.enabled:hover {
  background-color: #218838; /* Color más oscuro al hacer hover en el botón habilitado */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada */
}

/* Efecto hover en los inputs */
#ContraEntregaForm-container input.form-check-input:hover + label {
  color: #007BFF; /* Cambiar el color del texto al hacer hover en el checkbox */
}



.expand-icon {
  position: absolute;
  bottom: -120px; /* Ajusta la distancia desde la parte inferior */
  right: 10px; /* Ajusta la distancia desde la parte derecha */
  color: #031442;
  padding: 5px; /* Reduce el padding para que el fondo sea más pequeño */
  border-radius: 50%; /* Hace el fondo circular alrededor de la lupa */
  font-size: 24px; /* Tamaño de la lupa */
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10; /* Asegura que esté por encima de la imagen */
}
.photo {
  position: relative;
  width: 100%;
  height: 200px; /* Ajusta la altura según tus necesidades */
  background-size: cover;
  background-position: center;
  border-radius: 10px; /* Bordes redondeados para una apariencia más suave */
  overflow: hidden; /* Para que los bordes redondeados no se vean afectados */
}

