/* WooCommerce TWINT Payment Gateway - Frontend Styles */

/* Checkout payment method icon */
.payment_method_twint img {
    max-height: 32px !important;
    width: auto !important;
    vertical-align: middle;
    margin-left: 8px;
}

.payment_method_twint label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* Thank you page & order view instructions */
.twint-payment-instructions {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 32px;
    margin: 24px 0;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.twint-header {
    text-align: center;
    margin-bottom: 24px;
}

.twint-header .twint-logo {
    max-width: 140px;
    height: auto;
    margin-bottom: 12px;
}

.twint-header h2 {
    color: #1a1a2e;
    font-size: 24px;
    margin: 0;
    font-weight: 700;
}

.twint-details {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.twint-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.twint-detail-row:last-child {
    border-bottom: none;
}

.twint-label {
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

.twint-value {
    color: #1a1a2e;
    font-size: 16px;
    font-weight: 700;
}

.twint-amount .twint-value {
    font-size: 22px;
    color: #000000;
}

.twint-phone {
    font-size: 20px !important;
    color: #000000 !important;
    letter-spacing: 0.5px;
}

.twint-steps {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.twint-steps h3 {
    color: #1a1a2e;
    font-size: 18px;
    margin: 0 0 14px;
    font-weight: 600;
}

.twint-steps ol {
    margin: 0;
    padding-left: 20px;
    color: #495057;
}

.twint-steps ol li {
    padding: 6px 0;
    line-height: 1.6;
}

.twint-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 14px 20px;
    text-align: center;
}

.twint-notice p {
    margin: 0;
    color: #856404;
    font-size: 14px;
    font-weight: 500;
}

.twint-custom-instructions {
    background: #e8f4fd;
    border-radius: 10px;
    padding: 14px 20px;
    margin-top: 16px;
}

.twint-custom-instructions p {
    margin: 0;
    color: #0c5460;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 600px) {
    .twint-payment-instructions {
        padding: 20px 16px;
    }
    .twint-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .twint-amount .twint-value {
        font-size: 20px;
    }
}
