:root {
    --page-bg: #e9f5e9;
    /* hijau muda background halaman */
    --accent: #f59e0b;
    /* tombol orange */
    --teal: #4fb7c3;
    /* section testimoni */
    --muted: #6c757d;
}

body {
    background: var(--page-bg);
}

img {
    max-width: 100%;
}

.wrap {
    max-width: 980px;
}

.hero-title {
    color: #000;
    color: #252525;
    font-size: 2.2em;
    font-weight: 700;
}

.app-header__description {
    margin-bottom: 2rem;
    color: #949494;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.2;
}

.checkout-body__sidebar {
    background-color: #f9f9f9;
    font-size: 14px;
}

.card-soft {
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 10px;
}

.poster {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 8px;
    background: #ddd;
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    font-weight: 600;
    padding: .9rem 1.2rem;
}

.btn-accent:hover {
    filter: brightness(.95);
    color: #fff;
}

.testi {
    background: var(--teal);
    border-radius: 10px;
}

.testi .testi-card {
    background: transparent;
    border: 0;
    color: #083b40;
}

.avatar {
    width: 90px;
    height: 80px;
    background: rgba(255, 255, 255, .6);
    border: 2px solid hsla(0,0%,100%,.6);
    border-radius: 3px;
    margin-bottom: 5px;
    overflow: hidden;
    flex: 0 0 auto;
}

.small-footer {
    color: var(--muted);
    font-size: .85rem;
}

.form-hint {
    font-size: .85rem;
    color: var(--muted);
}

.divider-title {
    font-size: 20px;
    font-weight: 700;
    margin-top: .25rem;
}

.pesanan {
    background-color: #fcfcfe;
    border: 2px solid #41c4cf;
}

.form-control {
    border: 2px solid #ebebeb;
    background-color: #fcfcfc;
    font-size: 15px;
    padding: .6em 1em;
}

#event_price {
    min-width: 100px;
    text-align: right;
}

.btn-accent:hover {
    background: var(--accent);
}

.ticket-radio-row{
  display: flex;
  flex-wrap: nowrap;        /* kunci: satu baris */
  gap: 12px;
  overflow-x: auto;         /* kalau kepanjangan, scroll ke samping */
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  -webkit-overflow-scrolling: touch;
}

.ticket-radio{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ticket-card{
  flex: 0 0 180px;          /* lebar “kotak” (ubah sesuai kebutuhan) */
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  user-select: none;
}

.ticket-card .dot{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #cfd4da;
  background: #e9ecef;
  box-sizing: border-box;
}

.ticket-radio:checked + .ticket-card{
  border-color: #0d6efd;
}

.ticket-radio:checked + .ticket-card .dot{
  border-color: #0d6efd;
  background: #0d6efd;
  box-shadow: inset 0 0 0 5px #fff;  /* efek radio seperti contoh */
}