.order-complete {
    text-align: center;
    background: #fff;
    padding: 36px 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: anywhere;
}

.order-complete__icon {
    font-size: 2.75rem;
    color: #2e7d32;
    margin-bottom: 16px;
}

.order-complete__icon i {
    display: inline-block;
}

.order-complete__title {
    margin: 0 0 14px 0;
    font-size: 1.35rem;
    line-height: 1.3;
    color: #1a1a1a;
    font-weight: 700;
}

.order-complete__text {
    margin: 0 auto 24px auto;
    max-width: 440px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555;
    overflow-wrap: anywhere;
}

.order-complete__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 360px);
    min-height: 52px;
    border-radius: 50px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    box-sizing: border-box;
}

.order-complete--success .order-complete__icon {
    animation: orderSuccessPop 0.5s ease-out;
}

@keyframes orderSuccessPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 360px) {
    .order-complete {
        padding: 30px 14px;
    }

    .order-complete__title {
        font-size: 1.2rem;
    }
}
