.wc-sale-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    width: 300px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    padding: 15px 20px 15px 15px;
    transform: translateY(150%);
    transition: transform 0.4s ease;
    max-width: 100%;
}

.wc-sale-notification.show {
    transform: translateY(0);
}

.wc-sale-inner {
    display: flex;
    align-items: center;
    position: relative;
}

.wc-sale-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.wc-sale-content {
    flex-grow: 1;
}

.wc-sale-message {
    margin: 0 0 5px;
    font-size: 14px;
    line-height: 1.4;
}

.wc-sale-time {
    margin: 0;
    font-size: 12px;
    color: #777;
}

.wc-sale-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #777;
    padding: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.wc-sale-close:hover {
    color: #333;
}
.wc-sale-notification.show .wc-sale-image {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.25);
    }
    5% {
        transform: scale(1.01);
    }
    15% {
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}
@media (max-width: 767px) {
    .wc-sale-notification {
        width: calc(100% - 40px);
        bottom: 20px;
        left: 20px;
    }
}