.flash-sale {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: rgb(226, 21, 21);
    font-weight: bold;
    font-size: 16px;
    width: 90px;
    height: 50px;
    border-radius: 12px;
    background-color: #d4f807;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 1;
}

.flash-sale::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background-color: rgba(226, 21, 21, 0.5); /* Màu sắc của sóng */
    transform: translate(-50%, -50%) scale(1); /* Vị trí ban đầu và kích thước */
    z-index: -1;
    animation: waveEffect 2s infinite ease-out; /* Áp dụng hiệu ứng */
}

@keyframes waveEffect {
    0% {
        transform: translate(-50%, -50%) scale(1); /* Kích thước ban đầu */
        opacity: 0.7; /* Độ mờ ban đầu */
    }
    70% {
        opacity: 0; /* Mờ dần khi lan tỏa */
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5); /* Kích thước lan tỏa lớn dần */
        opacity: 0; /* Hoàn toàn mờ đi */
    }
}
