.woo-sales-popup {
    position: fixed !important;
    display: flex !important;
    align-items: center !important;
    padding: 15px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.2) !important;
    z-index: 999999 !important;
    max-width: 350px !important;
    animation: salesPopupSlideIn 0.5s ease-out !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
}

@keyframes salesPopupSlideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes salesPopupSlideOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(20px);
        opacity: 0;
    }
}

.woo-sales-popup.hiding {
    animation: salesPopupSlideOut 0.5s ease-in forwards !important;
}

.woo-sales-popup .popup-icon {
    margin-right: 15px !important;
    width: 35px !important;
    height: 35px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 35px !important;
}

.woo-sales-popup .default-icon {
    background-color: rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
}

.woo-sales-popup .popup-icon img {
    max-width: 100% !important;
    max-height: 100% !important;
}

.woo-sales-popup .popup-content {
    flex: 1 !important;
}

.woo-sales-popup .popup-content p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
}

.woo-sales-popup .popup-content a {
    text-decoration: underline !important;
    color: inherit !important;
}

.woo-sales-popup .time-ago {
    font-size: 0.8em !important;
    opacity: 0.8 !important;
}

.woo-sales-popup.top-left {
    top: 20px !important;
    left: 20px !important;
}

.woo-sales-popup.top-right {
    top: 20px !important;
    right: 20px !important;
}

.woo-sales-popup.bottom-left {
    bottom: 20px !important;
    left: 20px !important;
}

.woo-sales-popup.bottom-right {
    bottom: 20px !important;
    right: 20px !important;
}

.woo-sales-popup strong {
    font-weight: bold !important;
}

/* Adiciona efeito de pulse ao popup */
.woo-sales-popup {
    animation: salesPopupSlideIn 0.5s ease-out, pulse 2s infinite ease-in-out !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

/* Estilos responsivos */
@media (max-width: 767px) {
    .woo-sales-popup {
        max-width: calc(100% - 40px) !important;
        padding: 10px !important;
    }
    
    .woo-sales-popup .popup-icon {
        width: 28px !important;
        height: 28px !important;
        margin-right: 10px !important;
        min-width: 28px !important;
    }
}