* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff7f2;
  color: #2b1111;
  font-family: Arial, sans-serif;
}

.booking-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.ticket-card {
  width: 100%;
  max-width: 430px;
  padding: 34px 26px;
  border: 1px solid rgba(180, 0, 0, 0.14);
  border-radius: 24px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 18px 45px rgba(120, 0, 0, 0.12);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  color: #FF0000;
  margin-bottom: 8px;
  font-weight: 700;
}

h1 {
  font-size: 54px;
  letter-spacing: 4px;
  color: #FF0000;
  margin-bottom: 8px;
}

.subtitle{
  margin-top:6px;
  margin-bottom:18px;
  font-size:17px;
  color:#5f3b3b;
}

.event-details {
  padding: 18px 0;
  border-top: 1px solid rgba(179, 0, 0, 0.14);
  border-bottom: 1px solid rgba(179, 0, 0, 0.14);
  margin-bottom: 20px;
}

.event-details{
  margin-top:18px;
  margin-bottom:18px;
  padding:16px 0;
}

.form-box {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.form-box input,
.admin-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(179, 0, 0, 0.2);
  background: #fff7f2;
  color: #2b1111;
  font-size: 15px;
}

.form-box input::placeholder,
.admin-input::placeholder {
  color: #9b7777;
}

.price-box,
.quantity-box,
.total-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 18px 0;
  gap: 16px;
}

.price-box span,
.quantity-box span,
.total-box span {
  color: #684747;
}

.price-box strong,
.total-box strong {
  font-size: 20px;
  color: #FF0000;
  text-align: right;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quantity-controls button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  font-size: 22px;
  cursor: pointer;
  background: #FF0000;
  color: #ffffff;
}

.quantity-controls strong {
  font-size: 22px;
  min-width: 20px;
  color: #FF0000;
}

.pay-btn {
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  border: none;
  border-radius: 999px;
  background: #FF0000;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.pay-btn:hover {
  background: #8f0000;
}

.note {
  margin-top: 16px;
  font-size: 13px;
  color: #7a5a5a;
  line-height: 1.5;
}

.qr-box {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.qr-box img {
  width: 190px;
  height: 190px;
  background: white;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(179, 0, 0, 0.18);
}
.siddhi-logo{
  width:220px;
  max-width:90%;
  display:block;
  margin:12px auto 10px;
  user-select:none;
  pointer-events:none;
}

.ticket-card .siddhi-logo{
  filter: drop-shadow(0 8px 18px rgba(179,0,0,.18));
}
.form-box select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(179, 0, 0, 0.2);
  background: #fff7f2;
  color: #2b1111;
  font-size: 15px;
}
