.pqc-payment-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.pqc-payment-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.pqc-qr-card {
    background: #ffffff;
    border: 2px solid #e0b0ff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    min-width: 300px;
    flex: 0 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pqc-account-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.pqc-account-number {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.pqc-qr-code {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.elementor-shortcode {
    margin: auto;
}

.pqc-qr-code img {
    max-width: 400px !important;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.pqc-amount {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-top: 15px;
}

.pqc-payment-info {
    flex: 1;
    min-width: 300px;
}

.pqc-info-section {
    margin-bottom: 30px;
}

.pqc-info-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0b0ff;
}

.pqc-info-item {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.pqc-label {
    font-weight: 600;
    color: #555;
    display: inline-block;
    min-width: 180px;
}

.pqc-value {
    color: #333;
}

.pqc-order-info {
    font-size: 16px;
    color: #333;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #e0b0ff;
}

.pqc-success-button {
    display: inline-block;
    background: #dc3545;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
}

.pqc-success-button:hover {
    background: #c82333;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .pqc-payment-wrapper {
        flex-direction: column;
    }

    .pqc-qr-card {
        width: 100%;
    }

    .pqc-label {
        display: block;
        margin-bottom: 5px;
        min-width: auto;
    }
}