/* ============================================================
   PAYMENT ONLY
   ============================================================ */
   
/* ===== FIX: SELECT DI PAYMENT ===== */
.payment-section select,
.pay95-methods select,
form select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: 14px;
    font-size: 15px;
    background: #fff;
    outline: none;
    font-family: inherit;
    appearance: auto;
    -webkit-appearance: auto;
    margin-bottom: 10px;
}

.payment-section select:focus,
.pay95-methods select:focus,
form select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(7, 91, 199, 0.1);
}   

.payment-methods-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.payment-methods-wrapper.open {
    max-height: 800px;
}

.divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 12px 0;
}

.divider hr {
    flex: 1;
    border: 0;
    border-top: 1.5px dashed var(--border);
}

.divider span {
    font-size: 11px;
    color: var(--muted);
    font-weight: 700;
}

.manual-detail {
    text-align: center;
    padding: 10px 0;
}

.manual-detail img {
    max-width: 180px;
    border-radius: 12px;
}

.manual-detail .no-rek {
    font-size: 22px;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: 3px;
    font-family: monospace;
}

.info-box {
    background: #fef3c7;
    border-radius: 10px;
    padding: 10px;
    margin-top: 12px;
    font-size: 11px;
    color: #92400e;
    font-weight: 600;
}
/* ===== PAY BUTTON WRAPPER ===== */
.pay-btn-wrapper {
    text-align: center;
    padding: 8px 0;
}

.pay-btn-wrapper .btn-pay {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #16a34a;
    font-size: 16px;
    padding: 14px;
    border: none;
    border-radius: 40px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s;
}

.pay-btn-wrapper .btn-pay:hover {
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
    transform: translateY(-2px);
}

.pay95-section-title{font-size:13px;font-weight:900;color:#075bc7;margin-bottom:12px;display:flex;align-items:center;justify-content:space-between;}

/* ===== PAYMENT GROUP DROPDOWN ===== */
.payment-group-toggle:hover {
    background: #f0f4ff !important;
}
.payment-group-toggle.open .payment-group-chevron {
    transform: rotate(180deg);
}
.payment-group-body {
    transition: all 0.3s ease;
}

/* ===== PAYMENT METHODS WRAPPER ===== */
.payment-methods-wrapper {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}
.payment-methods-wrapper.open {
    max-height: 800px;
    opacity: 1;
}