.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.payment-icons img {
    height: 60px;
    margin: 0 5px;
}

.legal-info {
    font-size: 0.85rem;
    color: #666;
    margin-top: 10px;
}

.company-info {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.order-summary {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.card-brand-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.card-brand-icons img {
    height: 25px;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.security-badges img {
    height: 40px;
}

.terms-container {
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    margin-bottom: 15px;
    background-color: #f8f9fa;
}

.transaction-details {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
    background-color: #f8f9fa;
}

.transaction-row {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
}

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

.transaction-label {
    font-weight: bold;
    width: 40%;
}

.transaction-value {
    width: 60%;
}

.payment-method-details {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 15px;
    margin: 20px 0;
}

/* Company info in footer */
.footer-company-info {
    font-size: 0.8rem;
    margin-top: 15px;
}

/* Success status styles */
.status-success {
    color: #28a745;
    font-weight: bold;
}

.status-error {
    color: #dc3545;
    font-weight: bold;
}