@font-face {
  font-family: 'Kola';
  src: url('../Fonts/Kola_Complete/Kola_Complete/Fonts/WEB/fonts/Kola-Regular.ttf') format('truetype'); /* Ajusta la ruta si es diferente */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Khand';
  src: url('../Fonts/Khand_Complete/Khand_Complete/Fonts/WEB/fonts/Khand-Bold.ttf') format('truetype'); /* Ajusta la ruta si es diferente */
  font-weight: normal;
  font-style: normal;
}

body {
  background-color: #121212;
  color: #ffffff;
  font-family: 'Khand';
}

.cart-container {
  max-width: 900px;
  width: 70%;
  margin: 60px auto;
  padding: 40px;
  background-color: #1a1a1a;
  border-radius: 20px;
  box-shadow: 0 0 10px #B026FF;
}

.cart-title {
  font-size: 2em;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #0ff;
  font-family: 'Kola';
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  background-color: #222;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 10px #0ff4;
}

.cart-item h3 {
  margin: 0;
  color: #39FF14;
}

.cart-item button {
  background-color: #ff0033;
  border: none;
  padding: 10px 10px;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cart-items button:hover{
    background-color: #a30021;
}

.cart-summary {
  margin-top: 30px;
  text-align: right;
  font-size: 1.3em;
}

.checkout-button {
  background-color: #B026FF;
  padding: 12px 25px;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.checkout-button:hover {
  background-color: #39FF14;
}