/* Ticket card styles for booking form embed (matches tickets.openskyevents.org) */
:root{
  --line:#F2E6DA;
  --accent:#E34D2E;
  --sun:#F8C045;
  --muted:#6b7280;
}
.tickets-section{margin-top:1rem;margin-bottom:.75rem;padding-top:1rem;border-top:1px solid var(--line)}
.tickets-section h3{font-size:1.05rem;font-weight:800;margin:0 0 .25rem}
.tickets-section .tickets-hint{font-size:.85rem;color:var(--muted);margin:0 0 .85rem;line-height:1.4}
.ose-ticket-grid{display:grid;gap:12px;margin-bottom:.5rem}
@media(min-width:520px){.ose-ticket-grid{grid-template-columns:repeat(auto-fit,minmax(140px,1fr))}}
.ose-ticket-card{
  position:relative;background:linear-gradient(180deg,#fff 0%,#fffaf5 100%);
  border:1px solid var(--line);border-radius:16px;padding:14px 12px 12px;
  text-align:center;box-shadow:0 4px 14px rgba(0,0,0,.04);overflow:hidden;
}
.ose-ticket-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:4px;
  background:linear-gradient(90deg,var(--accent),var(--sun));
}
.ose-ticket-card.is-active{border-color:#f0b9a8;box-shadow:0 8px 22px rgba(227,77,46,.12)}
.ose-ticket-name{font-weight:800;font-size:1rem;margin-top:6px}
.ose-ticket-price{font-size:1.5rem;font-weight:800;color:var(--accent);margin:4px 0 6px}
.ose-ticket-desc{font-size:.85rem;line-height:1.35;color:var(--muted);min-height:2.4em;margin:0 4px 12px}
.ose-ticket-qty{display:inline-flex;align-items:center;justify-content:center;gap:10px}
.ose-qty-btn{
  width:44px;height:44px;border-radius:999px;border:1px solid var(--line);
  background:#fff;font-size:22px;font-weight:700;line-height:1;cursor:pointer;color:var(--accent);
  touch-action:manipulation;-webkit-tap-highlight-color:transparent;
}
.ose-qty-btn:disabled{opacity:.35;cursor:not-allowed}
.ose-qty-num{min-width:24px;font-weight:800;font-size:1.15rem}
.ose-total-bar{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;border-top:1px solid var(--line);margin-top:8px;
}
.ose-total-bar .total-amount{font-size:1.35rem;font-weight:800;color:var(--accent)}
