@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
body {
  font-family: 'Roboto', sans-serif;
  background-color: #000000;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  gap:5px;
  background: black;
  background-size: cover;
  }
  
  .logo{
      width:200px;
}

.category-section {
  margin-bottom: 4px;
  width: 100%;
  padding: 10px;
}

.category-title {
  font-size: 34px;
  font-family:Times New Roman Italic;
  
  font-style: italic;
  margin-bottom: 0px;
  color:red;
  text-align: center;
}

.products-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background-color: black;
  border-radius: 10px;
  padding: 10px;
}

.product-container {
  display: flex;
  gap: 15px;
  border-bottom: 0px solid #ccc;
  padding-bottom: 10px;
  width: 100%;
}

.product-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.product-info {
  flex: 1;
}

.product-title-line {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
}

.product-description {
  font-size: 12px;
  color: #7e7e7e;
  margin-top: 0px;
  font-style: italic;
}

.price-promo {
  color: rgb(228, 46, 5);
}

.price-normal {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  margin-top: 2px;
}

/* Responsive */
@media screen and (max-width: 992px) {
body{
  background-position: top center; /* Cambia el enfoque */
  background-size: cover; /* o 'contain' si quieres que siempre se vea completa */
  background-repeat: no-repeat;
   background-attachment: fixed;
  background-position: center center;
  min-height: 100vh; /* Asegura altura minima de pantalla */
  margin: 0;

}

  .product-card {
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 600px) {
  .product-card {
    width: 100%;
  }

  .logo{
      width:250px;
      height:150px;
}

 /* Boton flotante de inicio */
 
    #btnInicio {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #ff0400;
      color: white;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      font-size: 24px;
      cursor: pointer;
      box-shadow: 0 4px 6px rgba(0,0,0,0.3);
      transition: background-color 0.3s ease;
    }

    #btnInicio:hover {
      background-color: #0056b3;
    }
}
