/* Notificação padrão - base */

.custom-notification {
    position: fixed;
    min-height: 52px;
    min-width: 250px;
    color: #444;
    border-radius: 8px;
    /* Arredondamento igual ao do carrinho */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Sombra mais suave igual ao carrinho */
    right: 20px;
    top: 20px;
    /* Posição superior igual ao carrinho */
    z-index: 999999;
    /* Z-index alto igual ao carrinho */
    padding: 12px;
    /* Padding igual ao carrinho */
    /* Animação do carrinho */
    background: #fff;
    /* Fundo branco igual ao carrinho */
    padding: 12px;
    animation: slideIn 0.3s ease;
}
.custom-notification-carrinho {
    position: fixed;
    border-left: 6px solid #28a745;
    background: #fff;
    /* Borda lateral verde */
    width: 320px;
    right: 20px;
    top: 20px;
    /* Largura específica */
    animation: slideIn 0.3s ease;
}
@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/* Notificação específica para carrinho - herda do base mas com customizações */




/* Estrutura do conteúdo - compatível com ambos */

.produto-notify {
    display: flex;
    gap: 10px;
    align-items: center;
}

.produto-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.produto-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #28a745;
    /* Verde do carrinho */
}


/* Classes de tipo mantidas do segundo CSS mas atualizadas */

.custom-notification.success {
    border-left: 6px solid #33b86c;
    color: #434343;
}

.custom-notification.error {
    border-left: 6px solid #cb2a2a;
    color: #434343;
}

.custom-notification.warning {
    background-color: rgba(235, 193, 66, 0.9);
    border-left: 6px solid #ebc142;
    color: #434343;
}

.custom-notification.info {
    background-color: rgba(28, 168, 221, 0.9);
    border-left: 6px solid #1ca8dd;
    color: #434343;
}


/* Estrutura de texto compatível */

.custom-notification .text-wrapper {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    margin: 0;
    /* Reset do margin */
}

.custom-notification .title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 5px;
    font-weight: 500;
}

.custom-notification .text {
    font-size: 12px;
    font-weight: normal;
    max-width: 360px;
}


/*  */

.order-status ul li.step {
    border-width: 0 0 0 8px;
    border-style: solid;
    margin-left: 10px;
    padding-left: 40px;
    min-height: 100px;
}

.order-status ul li.step {
    border-color: grey;
}

.order-status ul li.step.in-progress {
    border-color: orange;
}

.order-status ul li.step.active {
    border-color: green;
}

.order-status ul li.step:last-child {
    border-color: white;
}

.order-status ul li .icon {
    margin-left: -63px;
    margin-right: 30px;
    background-color: grey;
    padding: 12px;
    border-radius: 50%;
    color: white;
    font-size: 11px;
    min-width: 37px;
}

.order-status ul li.active .icon {
    background-color: green;
}

.order-status ul li.in-progress .icon {
    background-color: orange;
}

.order-status ul li strong {
    font-family: Ubuntu, "Ubuntu Mono", sans-serif;
    font-size: 16px;
}