.digiflash-pro-nav-item {
    position: relative;
    overflow: hidden;
    min-height: 40px;
    margin-top: 8px;
    padding: 0 0 0 16px;
}

.digiflash-pro-btn {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: calc(8px);
    justify-content: flex-start;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 6px;
    width: 100%;
    color: white;
    padding: 8px 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.digiflash-pro-btn:hover {
        color: white;
        text-decoration: none;
    }

.digiflash-pro-btn:hover::before {
            transform: translateX(100%);
        }

.digiflash-pro-btn:focus {
        color: #fff;
        box-shadow: none;
        outline: none;
    }

.digiflash-pro-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
            45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%
        );
        transform: translateX(-100%);
        transition: transform 0.6s;
    }

.digiflash-pro-btn svg {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 16px;
    }

.digiflash-pro-btn .digiflash-pro-text {
        flex: 1;
    }

.digiflash-pro-btn .digiflash-pro-badge {
        background: rgba(255, 255, 255, 0.2);
        padding: 2px 8px;
        border-radius: 12px;
        font-size: 10px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
