body {
  background-color: #f8f9fa;
}

.checkout-container {
  max-width: 600px;
  margin: 4rem auto;
  padding: 2.5rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

h1 {
  text-align: center;
  color: #1a2b4a;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.order-summary {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.order-summary h2 {
  font-family: 'Playfair Display', serif;
  color: #1a2b4a;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.order-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.discount-section {
  display: flex;
  margin-bottom: 1rem;
}

.discount-section input {
  flex-grow: 1;
  padding: .75rem;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
}

.discount-section button {
  padding: .75rem 1rem;
  border: 1px solid #d4a574;
  background-color: #d4a574;
  color: white;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.total-price {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 1.25rem;
  color: #1a2b4a;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600;
  color: #1a2b4a;
  font-family: 'Poppins', sans-serif;
}

/* Specific styles for text-based inputs */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: .9rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: border-color .2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #d4a574;
}

/* Styles for checkbox groups */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group label {
  font-weight: normal;
  margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px; /* Aligns checkbox with the first line of text */
}

#paypal-button-container {
  margin-top: 2.5rem;
}

p {
  text-align: center;
  color: #6c757d;
  font-size: 0.9rem;
  margin-top: 1rem;
}
