* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: Arial, sans-serif;
  }
  body {
    background: url("../images/fondo.png") no-repeat center center fixed;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    height: auto;
    width: 100vw;
    overflow-x: hidden;
    padding: 10px;
  }
  .order-container {
    margin-top: 100px;
    width: 90%;
    max-width: 400px;
    background-color: rgba(44, 44, 44, 0.9);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: auto;
    position: relative;
  }
  footer {
    background-color: #3e2723;
    color: #f3e5ab;
    padding: 20px 0;
  }
  /* Encabezado y botones (puedes agregar si se desea) */
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header h2 {
    font-size: 18px;
    font-weight: bold;
  }
  .back-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
  }
  /* Lista de productos */
  .cart-list {
    height: 40vh;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .cart-item {
    background: #f0ddca;
    color: black;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .cart-item img {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    object-fit: cover;
  }
  .cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .cart-item-info .product-name {
    font-weight: bold;
    font-size: 14px;
  }
  .cart-item-info .product-price {
    font-size: 12px;
  }
  .quantity-controls {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .quantity-btn {
    cursor: pointer;
    padding: 5px 10px;
    border: none;
    background: #444;
    color: white;
    border-radius: 3px;
    font-size: 16px;
  }
  /* Total */
  .total-container {
    display: flex;
    justify-content: flex-end;
    font-size: 16px;
    font-weight: bold;
    gap: 5px;
    margin-top: 5px;
  }
  /* Campo de horario */
  .time-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
  }
  .time-container input {
    padding: 8px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
  }
  /* Notas */
  #notes {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: none;
    resize: none;
    font-size: 14px;
    min-height: 40px;
  }
  /* Botones finales */
  .buttons-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
  }
  .continue-btn, .submit-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
  }
  .continue-btn {
    background: #555;
    color: white;
  }
  .submit-btn {
    background: #503b37;
    color: white;
  }
  /* Media queries para mayor responsividad */
  @media (max-width: 600px) {
    .order-container {
      padding: 15px;
    }
    .cart-item {
      flex-direction: column;
      align-items: flex-start;
    }
    .cart-item img {
      width: 40px;
      height: 40px;
    }
    .quantity-btn {
      padding: 5px;
      font-size: 14px;
    }
    .total-container {
      font-size: 14px;
    }
    .time-container input, #notes {
      font-size: 12px;
      padding: 6px;
    }
    .continue-btn, .submit-btn {
      font-size: 12px;
      padding: 8px;
    }
  }
  /* Estilos del navbar (Appbar) */
.navbar {
  background-color: #3e2723;
  padding: 15px 20px;
}

.navbar-brand img {
  width: 100px;
}

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-link {
  color: #365a54 !important;
  font-weight: bold;
  padding: 10px 15px;
  transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: #ffe0b2 !important;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border-radius: 8px;
  border: none;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.2s ease;
  z-index: 1000;
  width: 200px;
}

.dropdown-item {
  padding: 12px 15px;
  font-size: 16px;
  color: #333;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background-color: #ffe0b2;
  color: #3e2723;
}

.nav-item:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Íconos */
.icon {
  width: 25px;
  height: auto;
}

.icon {
  text-decoration: none;
  border: none;
  background-color: transparent;
}

/* Para evitar que el navbar fijo tape el contenido */
body {
  padding-top: 70px;
}

@media (min-width: 992px) {
  .navbar-collapse {
    justify-content: space-around;
  }
  .navbar-nav {
    width: 80%;
    display: flex;
    justify-content: space-around;
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: white;
  color: #FFF;
  border-radius: 50%;
  padding: 10px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}