/* Global Styles */
body {
  font-family: "Roboto", sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-weight: 700;
  color: #111;
}



/* Main Content */
main {
  background-color: #fff;
  padding: 50px 0;
}

.grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bg-white {
  background-color: #fff;
  padding: 9px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: -4vh;
}

h2 {
  font-size: 24px;
  color: #111;
  margin-bottom: 20px;
}

h3 {
  font-size: 18px;
  color: #444;
}

label {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: #ff9900;
  box-shadow: 0 0 5px rgba(255, 153, 0, 0.5);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input[type="radio"] {
  margin-right: 10px;
}

button {
  background-color: #ff9900;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  font-weight: 700;
}

button:hover {
  background-color: #ff6600;
}

/* Order Summary */
#order-items {
  margin-bottom: 30px;
}

#order-items .item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

#order-items .item .item-name {
  font-size: 16px;
}

#order-items .item .item-price {
  font-weight: 700;
  font-size: 16px;
}

#order-total {
  font-size: 20px;
  font-weight: 700;
  color: #ff6600;
}

/* Payment Section */
#upi-section {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: center;
}

#upi-section img {
  max-width: 150px;
  margin-bottom: 15px;
}

#upi-id-display {
  font-weight: bold;
  color: #333;
}

/* Footer */
footer {
  background-color: #232f3e;
  color: white;
  padding: 40px 0;
  text-align: center;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

footer .footer-links a {
  color: white;
  font-size: 16px;
  text-decoration: none;
}

footer .footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  footer .footer-links {
    flex-direction: column;
  }
}
