/* Minimal modern styling for tickets subdomain pages */
:root{
  --bg:#FFF9F2;
  --card:#ffffff;
  --line:#F2E6DA;
  --ink:#3b2b27;
  --muted:#6b7280;
  --accent:#E34D2E;
  --sun:#F8C045;
}

html,body{height:100%}
body{
  background:var(--bg);
  color:var(--ink);
  font-size:17px;
  line-height:1.5;
}

.ose-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:0 10px 28px rgba(0,0,0,.06);
}
.ose-chip{
  display:inline-flex; align-items:center; gap:.4rem;
  border:1px solid var(--line);
  border-radius:999px;
  padding:.1rem .55rem;
  font-size:14px;
  background:#fff;
}
.ose-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  border-radius:14px;
  padding:.7rem 1rem;
  font-size:16px;
  font-weight:700;
  border:1px solid var(--line);
  background:#fff;
}
.ose-btn-primary{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
}
.ose-btn:disabled{
  opacity:.55;
  cursor:not-allowed;
}
.ose-input{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  padding:.7rem .85rem;
  font-size:17px;
  background:#fff;
}
.ose-muted{color:var(--muted)}
.ose-link{color:var(--accent); text-decoration:underline; text-underline-offset:2px}

.ose-ticket-grid{
  display:grid;
  gap:12px;
}
@media (min-width:640px){
  .ose-ticket-grid{ grid-template-columns:repeat(3, minmax(0, 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:17px;
  margin-top:6px;
}
.ose-ticket-price{
  font-size:26px;
  font-weight:800;
  color:var(--accent);
  margin:4px 0 6px;
}
.ose-ticket-desc{
  font-size:14px;
  line-height:1.35;
  color:var(--muted);
  min-height:2.7em;
  margin:0 4px 12px;
}
.ose-ticket-qty{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.ose-qty-btn{
  width:36px;
  height:36px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-size:22px;
  font-weight:700;
  line-height:1;
  cursor:pointer;
  color:var(--accent);
}
.ose-qty-btn:disabled{
  opacity:.35;
  cursor:not-allowed;
}
.ose-qty-num{
  min-width:24px;
  font-weight:800;
  font-size:20px;
}
.ose-label{
  display:block;
  font-size:15px;
  font-weight:600;
  margin-bottom:6px;
}
.ose-label .req{ color:var(--accent); }
.ose-field{ margin-bottom:14px; }
.ose-select{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  padding:.7rem .85rem;
  font-size:17px;
  background:#fff;
}
.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-pay-stack{ display:grid; gap:10px; }
.ose-paypal-buttons{
  display:grid;
  gap:10px;
}
.ose-paypal-funding{
  min-height:45px;
}

.ose-step-hidden{
  display:none;
}
.ose-step-fade-in{
  animation:oseStepIn .5s ease both;
}
@keyframes oseStepIn{
  from{ opacity:0; transform:translateY(14px); }
  to{ opacity:1; transform:translateY(0); }
}

.ose-support{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid var(--line);
}
.ose-support-text{
  font-size:15px;
  color:var(--muted);
  margin-bottom:10px;
  line-height:1.45;
}
.ose-support-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.ose-support-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:.55rem .9rem;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  border:1px solid var(--line);
  background:#fff;
  text-decoration:none;
  color:var(--ink);
  transition:transform .15s ease, box-shadow .15s ease;
}
.ose-support-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(0,0,0,.08);
}
.ose-support-btn svg{
  width:18px;
  height:18px;
  flex-shrink:0;
}
.ose-support-btn--wa{
  background:#25D366;
  border-color:#25D366;
  color:#fff;
}
.ose-support-btn--email{
  background:#fff5f2;
  border-color:#f0b9a8;
  color:var(--accent);
}
.ose-support-btn--phone{
  background:#fff;
}

.ose-lang-bar{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  justify-content:flex-end;
}
.ose-lang-btn{
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:.35rem .65rem;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-size:14px;
  font-weight:600;
  color:var(--ink);
  cursor:pointer;
  transition:background .15s ease, border-color .15s ease;
}
.ose-lang-btn:hover{
  border-color:#f0b9a8;
  background:#fffaf5;
}
.ose-lang-btn.is-active{
  border-color:var(--accent);
  background:#fff5f2;
  color:var(--accent);
}

