

    body {
  background-color: #ffffff; /* tono marrón oscuro de respaldo */
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}
    

    .navbar {
      background-color: #ffffff;
    }


.banner-container {
  background-color: #000; /* Asegúrate que el contenedor del banner sea negro también */
  padding: 0;
  margin: 0;
}

.banner-container img {
  display: block;
  width: 100%;
  height: auto;
}
    



.category {
  position: relative;
  height: 150px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.category span {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 8px 16px;
  border-radius: 8px;
}

.category:hover {
  transform: scale(1.05);
}






    .carousel-item img {
      height: 400px;
      object-fit: cover;
      width: 100%;
      border-radius: 10px;
    }

    .section-title {
      color: darkslategray;
      margin: 40px 0 20px;
      text-align: center;
      font-family:cursive;
    }

    .product-card {
      background-color: #1f1f1f;
      border-radius: 10px;
      padding: 10px;
      text-align: center;
      color: #ffd166;
      box-shadow: 0 0 10px rgba(255, 204, 0, 0.1);
      transition: transform 0.3s;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .product-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .product-card h5 {
      margin: 10px 0 5px;
    }

    .product-card p {
      margin: 5px 0;
      color: #fff;
    }

    .product-card .price {
      font-size: 1.2rem;
      color: #ffcc00;
      margin: 10px 0;
    }

    .btn-order {
      background-color: #d62828;
      border: none;
    }

    .btn-order:hover {
      background-color: #a61c1c;
    }

    .search-bar input {
      border-radius: 30px;
    }




    /* Estilo del input blanco */
.form-control {
  background-color: #ffffff; /* blanco */
  color: #000000; /* texto negro */
  border: none;
  border-radius: 0.375rem 0 0 0.375rem; /* redondeo izquierdo si va con botón al costado */
  padding: 0.5rem 1rem;
}
.form-control {
  background-color: #ffffff;
  color: #000000;
  border: none;
  border-radius: 0.375rem 0 0 0.375rem;
}

.form-control::placeholder {
  color: #666666;
  opacity: 1;
}

.btn-search {
  background-color: #ffc107;
  color: #000;
  border-radius: 0 0.375rem 0.375rem 0;
  border: none;
}

.btn-search:hover {
  background-color: #e0a800;
}

.btn-cart {
  background-color: transparent;
  border: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.btn-cart:hover {
  color: #ffc107;
}

.cart-count {
  font-size: 0.7rem;
  padding: 4px 6px;
}



.card {
  border-radius: 0.375rem;
}

.card-img {
  object-fit: cover;
  height: 200px;
}

  @media (max-width: 576px) {
    .navbar .input-group input {
      font-size: 0.9rem;
    }
    .navbar .btn {
      padding: 0.2rem 0.6rem;
    }
  }

  <style>
  @media (max-width: 576px) {
    .navbar .form-control::placeholder {
      color: white;
      opacity: 0.8;
    }
  }




  #carouselPortada {
  background-color: #000 !important; /* Fondo negro forzado */
  margin: 0;
  padding: 0;
}

#carouselPortada .carousel-inner {
  background-color: #000 !important; /* Fondo negro dentro también */
}

#carouselPortada .carousel-item img {
  display: block;
  width: 100%;
  height: auto;
}