/* NeoBiz Success Notice - 1440px Width */
.woocommerce-notices-wrapper{
    display: flex;
    justify-content: center;
    gap:50px;
}
/* سبز کردن پیام دریافت سفارش *//* پیام موفقیت دریافت سفارش */
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    background-color: #28a745 !important;
    color: #ffffff !important;
    padding: 24px 26px;
    border-radius: 20px;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* حذف آیکن پیش‌فرض ووکامرس */
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received::before {
    display: none !important;
}


.enlight-payment-box {
    background: #F7F7F7;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.enlight-payment-box .card-number {
    font-weight: 700;
    letter-spacing: 1px;
    margin: 10px 0;
}

.enlight-payment-box .whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
}

.neobiz-notices-wrapper {

    width: 100%;
    max-width: 1440px;
    z-index: 2;
    font-family: 'Vazir', 'Segoe UI', system-ui, sans-serif;
    padding: 0 20px;
    box-sizing: border-box;
}

.neobiz-success-notice {
    position: relative;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95) 0%, rgba(52, 211, 153, 0.95) 100%);
    color: #fff;
    height: 50px;
    padding: 0 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.3);
    display: flex;
    align-items: center;
    overflow: hidden;
    border-left: 4px solid #059669;
    animation: neobizNoticeSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 10px;
}

.neobiz-notice-content {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    gap:20px;
}

.neobiz-notice-content svg{
    width: 20px !important;
    height: 20px !important;
}

.neobiz-notice-icon {
    width: 20px !important;
    height: 20px !important;
    margin-left: 15px;
    flex-shrink: 0;
}

.neobiz-notice-text {
    display: flex;
    gap:20px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    align-items: center;
}

.neobiz-notice-text a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
    margin: 0 5px;
}

.neobiz-notice-text a:hover {
    text-decoration: none;
}

.neobiz-notice-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    animation: neobizProgressBar 5s linear forwards;
}

/* Animations */
@keyframes neobizNoticeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes neobizProgressBar {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* Responsive */
@media (max-width: 1480px) {
    .neobiz-success-notice {
        border-radius: 0;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .neobiz-notices-wrapper {
        padding: 0 15px;
    }

    .neobiz-success-notice {
        height: 60px;
        padding: 0 15px;
    }

    .neobiz-notice-text {
        white-space: normal;
        font-size: 13px;
    }
}