/* ================= FORM FIELD ================= */
.modern-field {
  margin-bottom: 16px;
}
.main-content.transaksi {
    padding-top: 20px !important;
}
.modern-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #bbb;
}

/* ================= INPUT & SELECT ================= */
.modern-input,
.modern-select {
  width: 100%;
  background: linear-gradient(180deg, #141414, #0d0d0d);
  border: 1px solid #2b2b2b;
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 14px;
  color: #fff;
  transition: all .25s ease;
}

.modern-input::placeholder {
  color: #666;
}

.modern-input:focus,
.modern-select:focus {
  outline: none;
  border-color: #f5c16c;
  box-shadow:
    0 0 0 2px rgba(245, 193, 108, .25),
    inset 0 1px 0 rgba(255,255,255,.04);
}

/* ================= SELECT ARROW ================= */
.modern-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #f5c16c 50%),
    linear-gradient(135deg, #f5c16c 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px);
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

/* ================= FILE INPUT ================= */
.modern-file {
  width: 100%;
  background: linear-gradient(180deg, #141414, #0d0d0d);
  border: 1px dashed #333;
  border-radius: 12px;
  padding: 12px;
  color: #aaa;
  cursor: pointer;
}

.modern-file:hover {
  border-color: #f5c16c;
}

/* ================= BANK / QRIS CARD ================= */
.qris-payment .card {
  background: #0f0f0f;
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 1px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.6);
}

.qris-payment .card-header {
  background: #111;
  border-bottom: 1px solid rgba(212,175,55,.25);
}

.qris-payment .card-body {
  color: #ddd !important;
}

/* ================= PREMIUM FORM ================= */
.premium-form {
  background: linear-gradient(180deg, #121212, #0b0b0b);
  border-radius: 5px;
  padding: 18px;
  border: 1px dashed #333;
  color: #fff;
  box-shadow:
    0 20px 50px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.premium-form:hover {
  border-color: #7E5C00;
}

/* ================= TITLE ================= */
.premium-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #f5c16c;
  border-bottom: 1px solid rgba(212,175,55,.25);
}

.premium-title i {
  background: linear-gradient(135deg, #f5c16c, #cfa14a);
  color: #111;
  padding: 8px;
  border-radius: 10px;
  font-size: 13px;
}

/* ================= NOTE ================= */
.note_addbank {
  background: rgba(212,175,55,.08);
  border: 1px dashed rgba(212,175,55,.35);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 11px;
  color: #fff;
}


/* ================= LAYOUT ================= */
#main-route .container {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.transaksi-formulir {
  margin-top: 10px;
}

/* ================= QRIS MAINTENANCE ================= */
.tab-qris.disabled {
  position: relative;
  background: #1a1a1a !important;
  border: 1px dashed #444 !important;
  color: #666 !important;
  pointer-events: none;
  opacity: .6;
}

.tab-qris.disabled::after {
  content: "Maintenance";
  position: absolute;
  top: -8px;
  right: 10px;
  background: #ff4d4d;
  color: #fff;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
}

/* ================= FIX QRIS NEMPEL ================= */

/* JARAK TAB KE KONTEN */
.component-tabs {
    margin-bottom: 16px !important;
}

/* TAB CONTENT */
.tab-pane {
    margin-top: 0 !important;
}

.note-info {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    background: rgba(245, 193, 108, .08);
    border: 1px solid rgba(245, 193, 108, .25);
    color: #f5c16c;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 12px;
    margin-bottom: 12px;
  }
  
.note-info i {
    font-size: 14px;
    margin-top: 2px;
  }

/* ===== Bukti Slide ===== */
.bukti-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1px dashed rgba(255,255,255,.25);
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  color: #f5c16c;
  font-size: 13px;
}

.bukti-toggle small {
  opacity: .7;
  font-size: 11px;
}

.bukti-toggle .arrow {
  margin-left: auto;
  transition: .3s;
}

.bukti-slide {
  display: none;
  margin-top: 10px;
}

.bukti-wrapper.active .arrow {
  transform: rotate(180deg);
}

/* ===== Upload Box ===== */
.upload-box {
  display: block;
  cursor: pointer;
}

.upload-box input {
  display: none;
}

.upload-ui {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  color: #fff;
  transition: .25s;
}

.upload-ui i {
  font-size: 26px;
  margin-bottom: 6px;
  color: #f5c16c;
}

.upload-ui span {
  display: block;
  font-weight: 600;
}

.upload-ui small {
  opacity: .6;
  font-size: 11px;
}

.upload-ui:hover {
  background: rgba(0,0,0,.5);
  border-color: #f5c16c;
}


/* ================= DEPOSIT AMOUNT ================= */
.deposit-amount-box {
  margin-bottom: 18px;
}

.deposit-amount-label {
  font-size: 12px;
  color: #f5c16c;
  margin-bottom: 6px;
  display: block;
}

.deposit-amount-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: 14px;
}

.deposit-amount-input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.deposit-amount-hint {
  font-size: 11px;
  opacity: .6;
  margin-top: 6px;
  display: block;
}

/* ================= FAST PICK ================= */
.deposit-fastpick {
  margin: 18px 0 26px;
}

.deposit-fastpick__title {
  font-size: 12px;
  color: #f5c16c;
  margin-bottom: 10px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.deposit-fastpick__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.deposit-fastpick__item {
  background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(0, 0, 0, .4));
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  padding: 8px 6px;
  text-align: center;
  color: #fff;
  transition: .25s;
}

.deposit-fastpick__item strong {
  display: block;
  font-size: 14px;
  color: #f5c16c;
}

.deposit-fastpick__item span {
  font-size: 11px;
  opacity: .65;
}

.deposit-fastpick__item:hover {
  transform: translateY(-2px);
  border-color: #f5c16c;
}

.deposit-fastpick__item.active {
  background: linear-gradient(145deg, #f5c16c, #c79b3b);
  color: #000;
  border-color: transparent;
}

.deposit-fastpick__item.active strong,
.deposit-fastpick__item.active span {
  color: #000;
}

.deposit-fastpick__item.wide {
  grid-column: span 2;
}


/* ================= QRIS INPUT UI ================= */
.qris-amount-box {
  margin-bottom: 18px;
}

.qris-amount-label {
  font-size: 12px;
  color: #f5c16c;
  margin-bottom: 6px;
  display: block;
}

.qris-amount-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: 14px;
}

.qris-amount-input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.qris-amount-input:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.qris-amount-hint {
  font-size: 11px;
  opacity: .6;
  margin-top: 6px;
  display: block;
}

/* ================= QRIS QUICK PICK ================= */
.qris-fastpick {
  margin: 12px 0 22px;
}

.qris-fastpick__title {
  font-size: 12px;
  color: #f5c16c;
  margin-bottom: 8px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.qris-fastpick__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.qris-fastpick__item {
  padding: 9px 6px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .05), rgba(0, 0, 0, .45));
  border: 1px solid rgba(255, 255, 255, .14);
  text-align: center;
  color: #fff;
  transition: .2s;
}

.qris-fastpick__item strong {
  display: block;
  font-size: 13px;
  color: #f5c16c;
}

.qris-fastpick__item span {
  font-size: 10px;
  opacity: .6;
}

.qris-fastpick__item:hover {
  border-color: #f5c16c;
}

.qris-fastpick__item.active {
  background: linear-gradient(145deg, #f5c16c, #c79b3b);
  border-color: transparent;
}

.qris-fastpick__item.active strong,
.qris-fastpick__item.active span {
  color: #000;
}
  /* ================= SHEET MODAL (BOTTOM SHEET) ================= */

.bank-item {
   display: flex;
  align-items: center;
  padding: 18px 14px;
  gap: 10px;
  border-bottom: 1px solid #222;
  color: #ddd;
}

.bank-item:hover {
  background: linear-gradient(135deg, #f5c16c, #cfa14a);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}