/* ẨN COUPON HẾT HẠN */

/* Ẩn hoàn toàn coupon expired */
.coupon-expired {
    display: none !important;
}

/* Hoặc nếu muốn hiển thị nhưng disable */
/*
.coupon-expired {
    opacity: 0.4;
    pointer-events: none;
    filter: grayscale(100%);
}

.coupon-expired::after {
    content: 'ĐÃ HẾT HẠN';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    z-index: 100;
}
*/
