.cvc-direct-payment-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.cvc-direct-payment-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 450px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.cvc-direct-payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.cvc-dp-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #eee;
    text-align: center;
}

.cvc-dp-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #333;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cvc-dp-header h3 i, .cvc-dp-header h3 svg {
    font-size: inherit;
    width: 1.1em;
    height: 1.1em;
    fill: currentColor;
}

.cvc-dp-body {
    padding: 30px;
}

.cvc-dp-greeting {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 12px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    border: 1px solid #eee;
}

.cvc-dp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px dashed #eee;
    font-size: 0.95rem;
}

.cvc-dp-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cvc-dp-label {
    color: #666;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cvc-dp-label i {
    color: #aaa;
    font-size: 1.1em;
}

.cvc-dp-value {
    color: #333;
    font-weight: 600;
    text-align: left;
}

.cvc-dp-amount {
    background: #f0f7ff;
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 10px;
    border: 1px solid #e1effe;
}

.cvc-dp-amount .cvc-dp-label {
    color: #0066cc;
}

.cvc-dp-amount .cvc-dp-value {
    color: #0066cc;
    font-size: 1.2rem;
    font-weight: 800;
}

.cvc-dp-footer {
    padding: 0 30px 30px;
}

.cvc-dp-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px 20px;
    background: #2196F3;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    gap: 10px;
}

.cvc-dp-btn:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
    color: #fff;
}

.cvc-dp-btn:active {
    transform: translateY(0);
}

.cvc-dp-message {
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    margin: 20px 0;
    border: 1px solid transparent;
}

.cvc-dp-error {
    background-color: #fff5f5;
    color: #c53030;
    border-color: #feb2b2;
}

.cvc-dp-success {
    background-color: #f0fff4;
    color: #2f855a;
    border-color: #9ae6b4;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .cvc-direct-payment-card {
        border-radius: 0;
        box-shadow: none;
        border: none;
    }
    
    .cvc-dp-header, .cvc-dp-body, .cvc-dp-footer {
        padding: 20px;
    }
}
