/* =======================================================
   /ticket-event.css
   Public ticketed event page styling (simple + clean)
   ======================================================= */

.tix-wrap{
  max-width: 980px;
  margin: 40px auto;
  padding: 0 18px;
}

.tix-card{
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.tix-hero{
  height: 260px;
  background-size: cover;
  background-position: center;
}

.tix-body{
  padding: 22px 22px 26px;
}

.tix-title h1{
  margin: 0 0 6px;
  font-size: 2rem;
  line-height: 1.1;
}

.tix-sub{
  margin: 0;
  color: #555;
  font-size: 1.05rem;
}

.tix-meta{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 14px;
  padding: 14px 0 6px;
}

.tix-label{
  display: inline-block;
  min-width: 90px;
  color: #666;
  font-size: .9rem;
}

.tix-val{
  font-weight: 600;
}

.tix-desc{
  margin: 12px 0 10px;
  color: #222;
}

.tix-note{
  padding: 12px 14px;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  background: #fafafa;
  font-size: .95rem;
  color: #333;
}

.tix-cta{
  margin-top: 14px;
}

.tix-hr{
  border: none;
  border-top: 1px solid #eee;
  margin: 18px 0;
}

.tix-alert{
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #eee;
  margin: 10px 0 14px;
}

.tix-alert-ok{
  background: #f5fff7;
  border-color: #d6f3dd;
}

.tix-alert-warn{
  background: #fffaf0;
  border-color: #f2e2bf;
}

.tix-purchase h2{
  margin: 0 0 8px;
}

.tix-price{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  background: #fbfbfb;
  margin: 10px 0 14px;
}

.tix-price-amt{
  font-size: 1.6rem;
  font-weight: 800;
}

.tix-price-sub{
  color: #666;
  font-size: .9rem;
}

.tix-price-right{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tix-pill{
  border: 1px solid #eee;
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .85rem;
  color: #333;
}

.tix-form{
  display: grid;
  gap: 12px;
}

.tix-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.tix-grid label{
  display: grid;
  gap: 6px;
  font-size: .92rem;
  color: #333;
}

.tix-grid input,
.tix-grid select{
  width: 100%;
  padding: 10px 10px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  outline: none;
}

.tix-grid input:focus,
.tix-grid select:focus{
  border-color: #999;
}

.tix-small{
  margin: 6px 0 0;
  color: #666;
  font-size: .9rem;
}

.tix-statusbox{
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fbfbfb;
  margin: 10px 0 14px;
}

.tix-status-row{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  padding: 6px 0;
}

.tix-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}

.tix-help{
  margin-top: 18px;
  text-align: center;
  color: #555;
  font-size: .95rem;
}

@media (max-width: 720px){
  .tix-meta{ grid-template-columns: 1fr; }
  .tix-grid{ grid-template-columns: 1fr; }
  .tix-hero{ height: 200px; }
}
