/* NeoBiz Success Notice - 1440px Width */
.woocommerce-notices-wrapper{
    display: flex;
    justify-content: center;
    gap:50px;
}
.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;
    }
}