.discount-item {
    border: 2px solid #03bfd7 !important;
    border-radius: 12px;
    box-shadow: 0 0 0 rgba(3, 191, 215, 0);
    transition: all 0.3s ease;
    position: relative;
    padding: 0 !important;
}

.discount-item:hover {
    transform: scale(0.96);
    box-shadow:
        0 0 0 3px rgba(3, 191, 215, 0.4),
        0 0 12px 6px rgba(3, 191, 215, 0.5),
        0 0 24px 12px rgba(3, 191, 215, 0.4);
}

.discount-item-label {
    background-color: #03bfd7;
    color: #fff !important;
    font-size: 12px;
    font-weight: 500;
    padding: 10px 14px;
    width: 100%;
    display: block;
    text-align: left;
    line-height: 1.5;
    margin: 0;
}

.discount-item-label b {
    color: #fff !important;
    font-weight: 700;
}