body {
  background-image: url("img/fondo.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #ff2a2a;
  text-align: center;
}

/* capa oscura */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

h1 {
  text-align: center;
  padding: 15px;
  background-color: #000;
  margin: 0;

}

.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item {
  width: 90%;
  max-width: 500px;

  display: flex;
  align-items: center;
  gap: 15px;

  text-align: left;

  /* 🎯 MOSTAZA */
  background: #f4c430;

  border: 2px solid #c49a00;
  border-radius: 10px;

  padding: 12px;
  margin: 10px 0;

  box-shadow: 0 4px 0 #a88200;
  background: linear-gradient(145deg, #f4c430, #e0b020);
}

.item:hover {
  background-color: #1a1a1a;
}

.item img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.item h3 {
  color: #c40000;
  font-family: 'Anton', sans-serif;
}

.item p {
  color: #c40000;
  font-weight: bold;
  font-size: 16px;
}

.item-texto {
  font-size: 16px;
  font-weight: bold;
  color: white;
}
.item-carrito {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 6px 0;
  border-bottom: 1px solid #c49a00;

  font-weight: bold;
}

.carrito-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: yellow;
  color: black;
  text-align: center;
  padding: 15px;
  font-weight: bold;
  cursor: pointer;
}

.carrito-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 300px;
  max-height: 60vh;
  overflow-y: auto;

  background: #f4c430; /* 🟡 mostaza */
  color: #c40000; /* 🔴 rojo */

  border: 2px solid #c49a00;
  border-radius: 12px;
  padding: 15px;

  box-shadow: 0 4px 0 #a88200;
}

.carrito-panel h2 {
  color: #c40000;
  text-align: center;
  font-family: 'Anton', sans-serif;
}

.carrito-panel button {
  width: auto;
  padding: 12px;
  background: yellow;
  border: none;
  font-weight: bold;
  margin-top: 10px;
}

.btn-eliminar {
  width: 20px;
  height: 20px;
  background: #333;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.btn-eliminar {
  width: 24px;
  height: 24px;

  background: #c40000;
  color: white;

  border: none;
  border-radius: 4px;

  font-size: 12px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-finalizar {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  color: white;
  text-align: center;

  background: #c40000;
  padding: 10px 20px;
  margin-top: 15px;

  border: none;
  border-radius: 6px;

  position: relative;
  display: inline-block;

  box-shadow: 0 4px 0 #7a0000;
  cursor: pointer;
}

.btn-finalizar::before {
  left: -10px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.menu-titulo {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  color:#f4c430;
  text-align: center;
  background: #c40000;
  padding: 10px;
  margin: 10px auto;
  width: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 0 #800000;
}
#total-panel {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #c40000;
  text-align: right;
}
/*BOTON FINALIZAR*/
button.btn-finalizar {
  background: #c40000 !important;
  color: #f4c430 !important;
  border: none;
    text-shadow: 
    -1px -1px 0 black,
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
}

/* BOTON ELIMINAR */
button.btn-eliminar {
  background: #c40000 !important;
  color: #f4c430 !important;

  border: none;
  border-radius: 4px;

  width: 24px;
  height: 24px;

  font-weight: bold;

  display: flex;
  align-items: center;}