#cart {
  background: #f4f6f9;
  padding: 2rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

#cart h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

#cart-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
}

.cart-item {
  flex: 0 1 300px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.cart-item p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #333;
  text-align: center;
}

#cart-total {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 1rem;
}

.checkout {
  margin-top: 1.5rem;
}

#checkoutBtn {
  background: #1a1a2e;
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1rem;
  transition: background 0.3s ease;
  display: block;       /* make it a block element */
  margin: 20px auto;    /* auto left/right margins center it */
}

#checkoutBtn:hover {
  background: #0077cc;
}
/* Customer Info Form */
#customer-info {
  margin-top: 20px;
  padding: 20px;
  background: #f4f6f9;
  border: 1px solid #ddd;
  border-radius: 8px;
}

#customer-info h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
}

#customer-info input,
#customer-info textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#customer-info input:focus,
#customer-info textarea:focus {
  border-color: #3399cc;
  box-shadow: 0 0 5px rgba(51, 153, 204, 0.4);
  outline: none;
}

#customer-info textarea {
  min-height: 80px;
  resize: vertical;
}

#checkoutBtn {
  display: inline-block;
  width: 100%;
  padding: 14px;
  background: #3399cc;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#checkoutBtn:hover {
  background: #267aa3;
}

