.cart__item-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin: auto;
  width: 40rem;
  max-width: 95%;
}

.cart__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: white;
}

.cart__item-img img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  margin-right: 1rem;
  border-radius: 5px;
}

.cart__item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart__item-details h1 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
  color: #333;
}

.cart__item-details h2 {
  font-size: 1rem;
  margin: 0;
  color: #555;
}

.cart__item-actions {
  margin-left: 1rem;
}

.centered {
  text-align: center;
  margin-top: 2rem;
}

.btn.danger {
  color: #da2929;
  background: transparent;
  border: 1px solid #da2929;
}

.btn.danger:hover,
.btn.danger:active {
  background: #da2929;
  color: white;
}

/* 📱 Responsive for Mobile */
@media (max-width: 768px) {
  .cart-card {
    width: 95%;
  }

  .cart__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cart__item-img img {
    width: 8rem;
    height: 8rem;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .cart__item-details {
    margin-bottom: 1rem;
  }

  .cart__item-actions {
    margin-left: 0;
  }
}
.cart-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 5px 0;
}

.btn {
  background-color: #ff5757;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  cursor: pointer;
  margin-bottom: 15px;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: #e04c4c;
}

/* 📱 Responsive for Mobile */
@media (max-width: 768px) {
  .cart-card {
    width: 90%;
  }
}
