body {
  background-color: #000000 !important;

  font-family: Arial, sans-serif;

 
   user-select: none; 
}



/*********TEXTO HEADER*********/
.header-content {
  margin-top: 400px !important;
 

  
  text-align: center;
}


.title {
  font-family: "Arial", sans-serif;
  font-size: 2rem;
  color: white;
  font-weight: bold;
  margin-top: 20px;
}

.lead {
  font-size: 1.25rem;
  color: #fff;
  margin-top: 10px;
  font-style: italic;
}

/**************************/
/*************busqueda producto*************/
/**************************/
#searchInput {
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 25px;
  border: 1px solid #ddd;
  background-color: #f8f9fa;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

#searchInput:focus {
  outline: none;
  border-color: #ffa500;
  box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.input-group {
  display: flex;
  justify-content: center;
}


@media (max-width: 768px) {
  #searchInput {
    max-width: 90%;
    font-size: 1rem;
    padding: 10px 15px;
  }

  .container {
    margin-top: 20px;
  }
}

/**************************/
/*************filter navegacion*************/
/**************************/

.menu-filter button:hover {
  background-color: white;
}

.menu-filter {
  margin-bottom: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.menu-filter button {
  margin: 5px;
  padding: 10px 20px; 
  background-color: orange;
  color: black;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s; 
}

/* Estilo para el botón activo (de color rojo) */
.menu-filter button.active {
  background-color: red;
  color: white;
}

/***** Desplazamiento con el dedo en móvil ***/
@media only screen and (max-width: 768px) {
  .scrolling-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
  }

  .menu-filter {
    white-space: nowrap;
    display: flex;
  }

  .menu-filter button {
    flex: 0 0 auto; /* Se adapta al contenido de los botones */
    margin: 5px;
    scroll-snap-align: center;
  }
}

/*******************************************/
/*****************card-product**************/
/*******************************************/

.product-card {
 
  background-color: #ffebcd;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-left: 30px;
  margin-right: 30px;
}


.product-offer {
  background-color: red;
  color: black;
  padding: 5px 15px;
  border-radius: 25px;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

/****imagen producto zoom abre*******/

.product-image-container {
  position: relative;
  overflow: hidden;
}

.zoom-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  background: brown;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s, transform 0.3s;
}

.zoom-icon:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}



.product-card img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

.product-name {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 10px;
}

.offer-badge {
  background-color: #28a745;
  color: white;
  padding: 5px;
  font-size: 0.9rem;
  border-radius: 3px;
  margin-top: 10px;
}

/*************************/
/********modal******/
/*********************/

.product-info {
    text-align: center; /* Centra el texto dentro del contenedor de información del producto */
    margin-top: 10px; /* Espacio entre la imagen y el texto */
}

@media (max-width: 768px) {
  .product-card {
    padding: 10px;
  }

 
  .category-filter button {
    font-size: 0.9rem;
    min-width: 120px;
  }

  .filter-buttons {
    flex-direction: column;
    align-items: center;
  }

  .filter-buttons button {
    width: 100%;
    font-size: 14px;
  }
}
/****no se envuentran productos*******/

#noResultsMessage {
  background-color: #ffffff;
  color: #000000;
  padding: 5px;

  border-radius: 5px;
  border: 2px solid #ffa500;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 50%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  #noResultsMessage {
    max-width: 90%;
    font-size: 12px;
  }
}




/********************************/
/********************************/
/*******boton arriba*/
/********************************/
/********************************/
.btn-primary.back-to-top {
  position: fixed;
  bottom: 120px;
  left: 20px;
  background-color: #ffa500;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary.back-to-top:hover {
  background-color: #007bff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary.back-to-top i {
  color: black;
  font-size: 20px;
}






/*******************footer**************/
/***************************************/
/* Footer */
#footer {
  background-color: black;
  color: white;
  border: 2px solid white;
  /* Borde blanco alrededor */
  padding: 40px 0;
}

/* Sección Contacta con Nosotros */
#footer .footer-about {
  margin-bottom: 30px;
}

#footer .footer-about h4 {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

#footer .footer-contact a {
  color: white;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}

#footer .footer-contact a:hover {
  color: #f39c12;
  /* Color al hacer hover en los enlaces */
}

#footer .footer-contact i {
  color: white;
}

/* Sección Horarios */
#footer .footer-hours h4 {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

#footer .footer-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-hours li {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

#footer .footer-hours i {
  color: white;
}

/* Copyright */
#footer .copyright {
  margin-top: 40px;
}

#footer .copyright p {
  color: white;
  font-size: 0.9rem;
}

#footer .credits {
  color: white;
  font-size: 0.8rem;
  margin-top: 10px;
}

/* Footer Links */
#footer .footer-links {
  margin-top: 20px;
}

#footer .footer-link {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  margin: 0 10px;
  transition: color 0.3s;
}

#footer .footer-link:hover {
  color: #f39c12;
  /* Color al hacer hover en los enlaces */
}

/* Separadores */
#footer hr {
  border-color: white;
  margin-top: 20px;
}

/* Estilos para iconos */
#footer .footer-contact i,
#footer .footer-hours i {
  font-size: 18px;
}

/* Responsividad */
@media (max-width: 768px) {
  #footer .footer-top .row {
    flex-direction: column;
  }

  #footer .footer-contact,
  #footer .footer-hours {
    margin-bottom: 20px;
  }
}