/**
 * B2B Order Success Page Stylesheet
 */

.b2b-success-wrapper {
    max-width: 800px;
    margin: 80px auto;
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.b2b-success-icon {
    margin-bottom: 30px;
    animation: checkmarkScale 0.6s ease-in-out;
}

@keyframes checkmarkScale {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.b2b-success-icon svg {
    display: inline-block;
}

.b2b-success-title {
    font-size: 42px;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease-in-out 0.2s both;
}

.b2b-order-number {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 5px;
    display: inline-block;
    animation: fadeInUp 0.6s ease-in-out 0.3s both;
}

.b2b-success-message {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-in-out 0.4s both;
}

.b2b-success-actions {
    animation: fadeInUp 0.6s ease-in-out 0.5s both;
}

.b2b-back-button {
    display: inline-block;
    padding: 18px 45px;
    background: #333;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.b2b-back-button:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .b2b-success-wrapper {
        margin: 40px 20px;
        padding: 40px 25px;
    }
    
    .b2b-success-title {
        font-size: 32px;
    }
    
    .b2b-success-icon svg {
        width: 100px;
        height: 100px;
    }
    
    .b2b-back-button {
        padding: 15px 35px;
        font-size: 16px;
    }
}






