
/* Sidebar carrello */
#sidebarCarrello {
  position: fixed;
  right: 0;
  top: 0;
  width: 320px;
  height: 100%;
  background: #ffffff;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
  overflow-y: auto;
}

#sidebarCarrello.active {
  transform: translateX(0);
}

#sidebarCarrello h3 {
  margin-top: 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.riga-carrello {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.riga-carrello img {
  width: 50px;
  height: auto;
  margin-right: 10px;
  border-radius: 6px;
}

.riga-carrello .info {
  flex: 1;
}

.riga-carrello button {
  margin: 0 3px;
  background: #eee;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

.riga-carrello button:hover {
  background: #ccc;
}

#totale-carrello,
#peso-totale,
#totale-spedizione,
#totale-finale {
  margin-top: 10px;
  font-weight: bold;
  font-size: 15px;
  color: #333;
}
