/* views/riwayat/riwayat.css */

.riwayat-wrap {
  padding: 20px 16px 100px;
  max-width: 480px;
  margin: 0 auto;
}

.riwayat-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.riwayat-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(43, 27, 16, 0.08);
}
.riwayat-bell-dot {
  position: absolute;
  top: 8px;
  right: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.riwayat-headings { margin-bottom: 18px; }
.riwayat-headings h1 {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  margin: 0 0 4px;
}
.riwayat-headings p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
}

.riwayat-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 18px;
  padding-bottom: 2px;
}
.riwayat-tab {
  flex: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.riwayat-tab.active {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  color: #fff;
}

.riwayat-loading {
  text-align: center;
  color: var(--ink-soft);
  font-size: 13.5px;
  padding: 40px 0;
}

.riwayat-error {
  background: #f8e2e2;
  color: var(--red);
  font-size: 13px;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
}

.riwayat-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
}
.riwayat-empty-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 12px;
}
.riwayat-empty p { font-size: 13.5px; margin: 0; }

.riwayat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 14px;
  box-shadow: 0 16px 32px -24px rgba(43, 27, 16, 0.3);
}

.riwayat-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.riwayat-order-id {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}

.riwayat-badge {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.riwayat-date {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.riwayat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.riwayat-row + .riwayat-row {
  border-top: 1px solid var(--line);
}
.riwayat-row-label {
  font-size: 13px;
  color: var(--ink-soft);
}
.riwayat-row-value {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.riwayat-detail {
  margin-top: 4px;
}
.riwayat-detail-line {
  border-top: 1px dashed var(--line);
  margin: 8px 0 12px;
}
.riwayat-detail-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 4px;
}
.riwayat-detail-text {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
  margin: 0 0 12px;
}

.riwayat-detail-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 10px;
  color: var(--orange-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
}
.riwayat-detail-btn i {
  font-size: 12px;
  transition: transform 0.2s ease;
}