/* QRIS Gateway Styles */
.qris-amount-selector {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--electric-blue);
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.amount-btn {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    background: rgba(0, 123, 255, 0.2);
    border-color: var(--electric-blue);
}

.amount-btn.active {
    background: var(--electric-blue);
    color: black;
    font-weight: bold;
}

.custom-amount {
    display: flex;
    gap: 10px;
}

.custom-amount input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-color);
}

.custom-amount input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.transaction-info {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row span:first-child {
    color: rgba(255, 255, 255, 0.6);
}

.info-row span:last-child {
    font-family: 'Share Tech Mono', monospace;
    font-weight: bold;
}

.status-pending {
    color: #ffa500;
}

.status-success {
    color: #00ff00;
}

.status-expired {
    color: #ff4444;
}

.status-cancel {
    color: #888;
}

.qris-image-wrapper {
    position: relative;
    margin: 20px 0;
}

.countdown-timer {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 5px 10px;
    border-radius: 20px;
    border: 2px solid var(--electric-blue);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.countdown-timer i {
    color: var(--electric-blue);
}

.countdown-timer.expired {
    border-color: #ff4444;
    color: #ff4444;
}

.countdown-timer.paid {
    border-color: #00ff00;
    color: #00ff00;
}

.payment-instructions {
    background: rgba(0, 123, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.payment-instructions p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-instructions p:last-child {
    margin-bottom: 0;
}

.payment-instructions i {
    color: var(--electric-blue);
}

.btn-green {
    background: linear-gradient(135deg, #00b894, #00a085);
}

.btn-red {
    background: linear-gradient(135deg, #ff7675, #d63031);
}

.btn-green:hover {
    background: linear-gradient(135deg, #00d8a7, #00b894);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.4);
}

.btn-red:hover {
    background: linear-gradient(135deg, #ff8a8a, #ff7675);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 118, 117, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .custom-amount {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .amount-grid {
        grid-template-columns: 1fr;
    }
}