#cart-app{
  background-color: white;
  
}
.cart {
  margin: 0 auto;
  padding: 20px;
  background-color: white;
}
.cart-row {
  margin-top: 60px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-box {
  /*background-color: #f9f9f9;*/
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 70%;
  margin-left: 30px;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
}
.image-and-details {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
}

.item-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.product-image-container {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.product-info {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-name {
  font-weight: bold;
  margin-bottom: 5px;
}

.remove-btn {
  background: none;
  cursor: pointer;
  border: none;
}

.item-price,
.item-quantity,
.item-subtotal {
  display: flex;
  align-items: center;
/*  font-size: 2.2rem;*/
}

.label {
  font-weight: bold;
 /* color: #666; */
}

input[type="number"] {
  width: 60px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.cart-summary {
  margin-top: 20px;
  text-align: right;
}

.final-total {
 /* font-size: 18px;*/
  font-weight: bold;
  margin-bottom: 15px;
}

.buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.btn {
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.btn-continue {
 /* background-color: #f0f0f0;
  color: #333; */
  border: 1px solid #ccc;
}

.btn-checkout {
/*  background-color: transparent;
  color: black; */
  border: 1px solid black;
}
.btn-checkout:hover {
/*  background-color: black;*/
  color: white;
}

.btn-checkout:disabled {
 /*background-color: #cccccc;*/
  cursor: not-allowed;
}
.checkout-form input {
  color: black;
  font-weight: 400;
}
.item-container {
  display: flex;
  flex-direction: column;
}

@media (max-width: 880px) {
  .cart-item {
    font-size: 14px;
  }
 

  .product-image-container {
    width: 80px;
    height: 80px;
  }

  .buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
  .cart-box {
    /*background-color: #ededed;*/
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-left: 0;
  }
  .item-price,
  .item-quantity,
  .item-subtotal {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
  }
  .product-info {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  input[type="number"] {
    width: 40px;
    padding: 2px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1.1rem;
  }
  .value {
    font-size: 1.1rem;
  }
}
