.cart-container {
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 4px;
}

#cart-items-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-item {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  justify-content: space-between;
  /* background-color: cadetblue; */
  gap: 4px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 16px;
  background: #ffffff;
}

.cart-description {
  height: full;
  flex: 1;
}


/* Images */
.cart-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
}

.cart-item-1 {
  display: flex;
  flex-direction: row;
  gap: 4px;
  flex: 1;
}

.cart-item-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.cart-counter {
  display: flex;
  flex-direction: row;
  gap: 4px;

  input {
    width: 30px;
  }
}

a {
  all: unset;
}

#checkout-form-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.checkout-form {
  font-family: Arial, sans-serif;
  padding: 0;
}

.checkout-form h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-align: center;
  color: #333;
}

.checkout-form label {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
  color: #555;
}

.checkout-form input[type="text"],
.checkout-form input[type="tel"],
.checkout-form input[type="radio"] {
  width: 100%;
  padding: 10px;
  margin: 6px 0 14px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}

.checkout-form input[type="radio"] {
  width: auto;
  margin-right: 8px;
}

.checkout-form input[type="text"]:focus,
.checkout-form input[type="tel"]:focus {
  border-color: #4caf50;
  outline: none;
}

/* .checkout-form button {
  width: 100%;
  padding: 12px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 15px;
}

.checkout-form button:hover {
  background-color: #45a049;
} */

.checkout-form .radio-group {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

@media (max-width: 480px) {
  #checkout-form-container {
    padding: 15px;
  }

  .checkout-form h3 {
    font-size: 1.2rem;
  }

  .checkout-form input[type="text"],
  .checkout-form input[type="tel"],
  .checkout-form button {
    padding: 8px;
  }

  .checkout-form .radio-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkout-form input[type="radio"] {
    margin-right: 5px;
  }
}