/* Card utility */
.card-modern {
  border: none;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

/* Status label */
.badge-sukses  { background-color: var(--color-success); color: #fff; }
.badge-pending { background-color: var(--color-warning); color: #fff; }
.badge-gagal   { background-color: var(--color-danger);  color: #fff; }
.badge-refund  { background-color: var(--color-info);    color: #fff; }

/* Body spacing untuk mobile bottom nav */
@media (max-width: 767.98px) {
  body {
    padding-bottom: var(--bottom-nav-height);
  }
}

/* Print: sembunyikan bottom nav */
@media print {
  .bottom-nav, .top-bar-mobile { display: none !important; }
  body { padding-bottom: 0 !important; }
}

/* Back to top button */
#back-to-top {
  position: fixed;
  bottom: calc(var(--bottom-nav-height) + 16px);
  right: 16px;
  display: none;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  z-index: 1020;
  text-decoration: none;
}
@media (min-width: 768px) {
  #back-to-top { bottom: 24px; }
}
